-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
132 lines (121 loc) · 3.7 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
const fs = require('fs');
const puppeteer = require('puppeteer');
const axios = require('axios');
const json = require('./endpoints.json');
const exec = async () => {
let timer = 0;
console.log(`[ ] 0%`);
const browser = await puppeteer.launch();
const page = await browser.newPage();
const listOfEvents = [];
for (let item of json) {
timer += 2;
let group = item.group;
let subgroups = [];
for (let endpoint of item.subgroup) {
await page.goto(endpoint);
const moreEvents = await page.evaluate(() => {
return document.querySelector(
'.js-modulehelper--eventListPaging-trigger'
)
? true
: false;
});
//Lazy loaded events
if (moreEvents) {
await page.waitForTimeout(1000);
await page.click('a.a-pagination_loadMoreTrigger');
await page.waitForFunction(
() => document.querySelectorAll('.o-eventList').length > 1
);
await autoScroll(page);
}
const subgroupedEvents = await page.evaluate(async () => {
//get a name of a group
const group = document.querySelector('.m-pageHeader h1').innerText;
const items = document.querySelectorAll('.m-eventListItem');
let groupEvents = [];
//Gets time, date and location from events
for (let item of items) {
const divs = Array.from(
item.querySelectorAll('.m-eventListItem__block')
);
divs.pop();
let mdiv = divs[0].querySelector('.a-badgeDate');
let twoDates = mdiv.querySelectorAll('.a-badgeDate__date');
//Gets only date if is longer than 1day
if (twoDates.length === 2) {
groupEvents.push({
day1: twoDates[0].innerText,
day2: twoDates[1].innerText,
});
} else {
//Gets day, month and time of event
let oneDate = mdiv.querySelectorAll('span');
groupEvents.push({
day: oneDate[1].innerText,
month: oneDate[2].innerText,
time: oneDate[3].innerText,
});
}
let indx = groupEvents.length - 1;
//Gets location of a event
let title = divs[1].querySelector(
'.m-eventListItem__title'
).innerText;
let address = divs[1].querySelector(
'.m-eventListItem__venue'
).innerText;
let city = divs[1].querySelector(
'.m-eventListItem__address'
).innerText;
groupEvents[indx] = {
...groupEvents[indx],
title,
address,
city,
};
}
return {
group,
events: groupEvents,
};
});
subgroups.push(subgroupedEvents);
}
let status = new Array(timer*2 +1).join('#') + new Array((20-timer*2)+1).join(' ');
console.clear();
console.log(`[${status}] ${timer}0%`);
listOfEvents.push({
group,
subGroups: subgroups,
});
}
//Exit
await browser.close();
fs.writeFile('eventlist.json', JSON.stringify(listOfEvents), (err) => {
if (err) {
console.error(err);
return;
}
console.log('File successfully written!');
});
};
exec();
async function autoScroll(page) {
await page.evaluate(async () => {
await new Promise((resolve, reject) => {
var totalHeight = 0;
var distance = 100;
var timer = setInterval(() => {
var scrollHeight = document.body.scrollHeight;
window.scrollBy(0, distance);
totalHeight += distance;
if (totalHeight >= scrollHeight) {
clearInterval(timer);
resolve();
}
}, 100);
});
});
}