-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscrapeData.js
275 lines (203 loc) · 8.8 KB
/
scrapeData.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
const puppeteer = require('puppeteer');
const fs = require('fs');
const path = require('path');
const cheerio = require('cheerio');
const https = require('https');
async function fetchHTML(url, filePath) {
const browser = await puppeteer.launch({ headless: false });
const page = await browser.newPage();
await page.goto(url);
const currentURL = page.url();
if (currentURL.startsWith("https://www.anime-planet.com/search.php?")) {
await browser.close();
throw new Error(`Unknown username. ${username}`);
}
const totalPages = await page.$$eval('ul.nav li:not(.prev):not(.next)', elements => elements.length);
let currentPage = 1;
let combinedHTML = '';
// userStats is used for getting joining date.
const userStatsHTML = await page.$eval('ul.userStats li', element => element.outerHTML);
combinedHTML += userStatsHTML;
// Downloading the image
const imageSrc = await page.$eval('img#user-avatar', element => element.src);
const imageNameWithQuery = path.basename(imageSrc);
const imageName = imageNameWithQuery.split('?')[0];
userAvatarImage = imageName;
const imagesFolderPath = path.join(__dirname, 'createStats', 'create', 'charts');
if (!fs.existsSync(imagesFolderPath)) {
fs.mkdirSync(imagesFolderPath, { recursive: true });
}
const imagePath = path.join(imagesFolderPath, imageName);
const imageWriter = fs.createWriteStream(imagePath);
const request = https.get(imageSrc, response => {
response.pipe(imageWriter);
response.on('end', () => {
console.log('Image downloaded successfully');
});
});
while (true) {
try {
await page.waitForSelector(`ul.nav li.selected`, { timeout: 1000 });
const selectedPage = await page.$eval('ul.nav li.selected', element => element.textContent.trim());
if (parseInt(selectedPage) === currentPage) {
const childrenHTML = await page.$eval('ul.cardDeck.cardGrid', element => {
return Array.from(element.children).map(child => child.outerHTML).join('');
});
combinedHTML += childrenHTML;
if (currentPage === totalPages) break;
}
await page.waitForSelector('ul.nav li.next');
const nextButton = await page.$('ul.nav li.next a');
if (!nextButton) break;
await page.click('ul.nav li.next a');
currentPage++;
} catch (error) {
// Just an quick fix for now when the list dosent have an next page.
const childrenHTML = await page.$eval('ul.cardDeck.cardGrid', element => {
return Array.from(element.children).map(child => child.outerHTML).join('');
});
combinedHTML += childrenHTML;
break;
}
}
await browser.close();
fs.writeFileSync(filePath, combinedHTML);
return filePath;
}
async function extractDataFromFile(filePath) {
const fileContents = fs.readFileSync(filePath, 'utf8');
const $ = cheerio.load(fileContents);
const tooltipElements = $('li.card');
const jsonData = [];
let joinedDate = '';
const joinedElement = $('li:contains("Joined")');
if (joinedElement.length > 0) {
joinedDate = joinedElement.text().trim().replace('Joined ', '');
}
tooltipElements.each((index, element) => {
const title = $(element).find('a.tooltip').attr('title');
const doc = cheerio.load(title);
const yearElement = doc('.iconYear');
const tagsElements = doc('.tags li');
let chaptersElement;
if (dataType == "anime") {
chaptersElement = doc('.type');
} else {
chaptersElement = doc('.iconVol');
}
const serializerElement = chaptersElement.next().attr('class') ? null : chaptersElement.next().text().trim();
const rating = doc('.entryBar .ttRating').text().trim();
const userRating = doc('.myListBar .ttRating').text().trim();
const status1Element = doc('.myListBar .status1');
let installment;
let type;
// if its read state we can get the chapters straight from the total chapters.
if (status1Element.length > 0) {
if (dataType == "anime") {
const typeAndEp = chaptersElement.text();
const regex = /(\d+)\s*(?:eps|ep|episodes?)/i;
const match = regex.exec(typeAndEp);
installment = parseInt(match[1], 10);
type = typeAndEp.split('(')[0].trim();
} else {
installment = chaptersElement.text().trim();
}
} else {
const statusElements = ['status2', 'status5', 'status3'];
for (const status of statusElements) {
const statusElement = doc(`.myListBar .${status}`);
if (statusElement.length > 0) {
// had to filter out everything expect text nodes since it was retrieving the rating also.
installment = statusElement.parent().contents().filter(function() {
return this.nodeType === 3;
}).text().trim().split(' - ')[1];
if (dataType == "anime" && installment != undefined) {
installment = installment.split("/")[0];
}
break;
}
}
}
// Well for now atleast we dont need any that dosent have chapters.
if (installment == null || installment == undefined) {
return;
}
// If its one shot.
if (dataType == "manga" && installment.toLowerCase().includes('one')) {
installment = "1 chs";
}
let isChapter = false;
if (installment && dataType == "manga") {
const numbers = installment.match(/\d+/g);
let chapters = 0;
if (installment.includes('Vol:') && installment.includes('Ch:')) {
chapters = parseInt(numbers[1]);
isChapter = true;
} else if (installment.includes('chs')) {
chapters = parseInt(numbers[0]);
isChapter = true;
} else if (installment.includes('vols')) {
chapters = parseInt(numbers[0]);
isChapter = false;
} else if (installment.includes('Vol:')) {
chapters = parseInt(numbers[0]);
isChapter = false;
} else if (installment.includes('Ch:')) {
chapters = parseInt(numbers[0]);
isChapter = true;
}
installment = chapters.toString();
} else if (dataType == "anime") {
// just for now. gonna change it later on.
isChapter = true;
}
const year = yearElement.text().trim().split(' - ')[0];
const tags = tagsElements.toArray().map(tag => $(tag).text().trim());
let statusElement = doc('.myListBar').find('[class*=status]');
let status;
if (statusElement.length > 0) {
status = statusElement.attr('class').split(' ').find(className => className.includes('status'));
}
const jsonObject = {
year: year !== '' ? year : undefined,
tags: tags.length > 0 ? tags : undefined,
serializer: serializerElement !== null ? serializerElement : undefined,
rating: rating !== '' ? rating : undefined,
userRating: userRating !== '' ? userRating : undefined,
status: status,
installment: installment !== '' ? installment : undefined,
isChapter: isChapter,
type: type !== '' ? type : undefined,
};
jsonData.push(jsonObject);
});
jsonData.unshift({ joinedDate, username, userAvatarImage, dataType });
return jsonData;
}
let userAvatarImage = '';
let username;
let url;
let dataType;
const filePath = 'output.html';
async function extractData(user, type, skipScraping = false) {
username = user;
dataType = type;
url = `https://www.anime-planet.com/users/${username}/${dataType}?per_page=560`;
if (username.length < 1) {
throw Error('Invalid username.');
}
try {
let savedFilePath = "output.html"
if (skipScraping == false) {
savedFilePath = await fetchHTML(url, filePath);
console.log('HTML data saved to:', savedFilePath);
}
const extractedData = await extractDataFromFile(savedFilePath);
const jsonData = JSON.stringify(extractedData, null, 2);
fs.writeFileSync('dataJson.json', jsonData);
console.log('JSON data saved to dataJson.json');
} catch (error) {
throw Error(error);
}
};
module.exports = extractData;