-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.js
425 lines (373 loc) · 10.7 KB
/
app.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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
/*
* I'm Nedal Abo Almaali from upwork
*/
require('dotenv').config();
const puppeteer = require("puppeteer");
const fs = require("fs");
const CONFIG = require('./CONFIG');
const json2csvParser = require('json2csv').parse;
//const chalk = require("chalk");
/*
*
*/
var browser;
/*
*
*/
var page;
/*
*
*/
var scrapedData = [];
/*
* first, we are gathering the ids of the items
* @param {Array[Objects]} - scrapedItemsIdentifiers: array of objects like
* {
* id: {string},
* is_sold: {bool}
* }
*/
var scrapedItemsIdentifiers = [];
/*
* open browser
*/
async function openBrowser(argument) {
console.log('>>> openBrowser ');
// open the headless browser
browser = await puppeteer.launch({ headless: false });
//await browser.userAgent();
const context = browser.defaultBrowserContext();
await context.overridePermissions('https://www.facebook.com', ['notifications']);
}
/*
* open page
* @param {string} - pageUrl
*/
async function openPage(pageUrl) {
// open a new page
page = await browser.newPage();
// listen to responses
await listenToResponses();
await page.setViewport({
width: 999,
height: 650,
});
//await page.setUserAgent('Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36');
console.log('>>> openPage of ', pageUrl);
await page.goto(pageUrl);
}
/*
* login
* @param {Object} - credentials
*/
async function login(data) {
console.log('>>> log in ');
await page.evaluate((email, password) => {
document.querySelector('#email').value = email;
document.querySelector('#pass').value = password;
document.querySelector('#loginbutton').click();
}, data.email, data.password);
await page.waitForSelector('title');
}
/*
* open page
* @param {string} - pageUrl
*/
async function navigateTo(pageUrl) {
console.log('>>> navigate to ', pageUrl);
await page.goto(pageUrl);
await page.waitFor(200);
}
/*
* listen to response, and filter the incoming data.
*/
async function listenToResponses(){
console.log('>>> listening to responses ');
page.on('response', async (response) => {
let resUrl = response.url();
// check if the response is of fb graphql API
if(!!resUrl.match('graphql')){
console.log(resUrl);
try{
// parse data into json
let data = await response.json();
let page;
// check if the graphql response is a selling-items page
if(!!(page = isSellingFeedPage(data))){
// store items ids
addNewItemsIds(page.edges);
// scroll down if there is more data
//if(page.has_next_page && scrapedItemsIdentifiers.length < 50){
if(page.has_next_page && ( (CONFIG.maxItems == 0)? true: scrapedItemsIdentifiers.length < CONFIG.maxItems) ){
await scrollDownOnePage();
// in case of; no more data
}else{
// remove listeners
await removeListeners();
//console.log(scrapedItemsIdentifiers, scrapedItemsIdentifiers.length);
await navigateThroughScrapedIds();
await closeBrowser();
await saveDataIntoFiles();
}
}
}catch(e){
console.log('[MISBEHAVIOR] -> json parsing');
}
}
});
}
/*
*
*/
async function removeListeners(){
page.removeAllListeners();
}
/*
*
*/
async function closeBrowser(){
console.log('>>> closeBrowser ');
await browser.close();
}
/*
*
*/
async function convertToCSV(data) {
console.log('>>> convertToCSV ');
if(CONFIG.removeBr){
// map through items to removes \n
scrapedData = scrapedData.map((item)=>{
return {
title: item.title.replace(/\n/g, ''),
price: item.price,
description: item.description.replace(/\n/g, ''),
}
});
}
return json2csvParser(scrapedData);
}
/*
*
*/
async function saveIntoFile(path, data){
console.log('>>> saveIntoFile ');
fs.writeFileSync(path, data, {
encoding: 'utf8'
});
}
/*
*
*/
async function saveDataIntoFiles(){
// save all items
if(scrapedData.length > 0){
let csvData = await convertToCSV(scrapedData);
await saveIntoFile('./' + CONFIG.allItemsFileName, csvData);
}
// save not sold items
let notSoldItems = scrapedData.filter( i => !i.is_sold );
if(notSoldItems.length > 0){
let csvData = await convertToCSV(notSoldItems);
await saveIntoFile('./' + CONFIG.notSoldItemsFileName, csvData);
}
// save not sold items
let soldItems = scrapedData.filter( i => i.is_sold );
if(soldItems.length > 0){
let csvData = await convertToCSV(soldItems);
await saveIntoFile('./' + CONFIG.soldItemsFileName, csvData);
}
}
/*
*
*/
async function scrollDownOnePage(){
console.log('>>> Loading more ... ');
await page.evaluate(() => {
window.scrollTo(0, document.body.scrollHeight);
});
await page.waitFor(200);
}
/*
*
*/
async function navigateThroughScrapedIds(){
console.log('>>> navigateThroughScrapedIds ', scrapedItemsIdentifiers.length, ' ids');
for(let itemIdentifier of scrapedItemsIdentifiers){
let url = 'https://www.facebook.com/marketplace/item/'+ itemIdentifier.id;
await page.goto(url);
itemIdentifier.url = url;
await scrapeItem(itemIdentifier);
}
}
/*
* Name, Price, Views, Description, and date Posted
*/
async function scrapeItem(itemIdentifier) {
try{
let titleElementHandler = await page.waitForSelector('span[data-testid="marketplace_pdp_title"]');
let priceElementHandler = await page.waitForSelector('div._2iel');
let viewsElementHandler = await page.waitForSelector('._43kf._50f8');
let descriptionElementHandler = await page.waitForSelector('._4etw span');
let dateElementHandler = await page.waitForSelector('._r3j');
const title = await (await titleElementHandler.getProperty('textContent')).jsonValue();
const price = await (await priceElementHandler.getProperty('textContent')).jsonValue();
const views = await (await viewsElementHandler.getProperty('textContent')).jsonValue();
const description = await (await descriptionElementHandler.getProperty('textContent')).jsonValue();
const date = await (await dateElementHandler.getProperty('title')).jsonValue();
// push collected data into scrapedData array
scrapedData.push({
title, price, views, description, date, ...itemIdentifier
});
}catch(e){
console.log('[MISBEHAVIOR] -> scrapeItem');
}
}
/*
* helper function
*/
function isSellingFeedPage(jsonObj){
// marketplacr
// data.viewer.marketplace_feed_stories
/*if(!!jsonObj.data){
let data = jsonObj.data;
//console.log('data');
if(!!data.viewer){
let viewer = data.viewer;
//console.log('viewer');
if(!!viewer.marketplace_feed_stories){
let marketplace = viewer.marketplace_feed_stories;
//console.log('marketplace');
//console.log(Object.keys(marketplace));
return {
edges: marketplace.edges,
page_info: marketplace.page_info,
has_next_page: marketplace.page_info.has_next_page,
}
}
}
}*/
// selling
// data.viewer.marketplace_feed_stories
if(!!jsonObj.data){
let data = jsonObj.data;
//console.log('data');
if(!!data.viewer){
let viewer = data.viewer;
//console.log('viewer');
if(!!viewer.selling_feed_one_page){
let marketplace = viewer.selling_feed_one_page;
//console.log('marketplace');
//console.log(Object.keys(marketplace));
return {
edges: marketplace.edges,
page_info: marketplace.page_info,
has_next_page: marketplace.page_info.has_next_page,
}
}
}
}
return false;
}
/*
* helper function
*/
function addNewItemsIds(items){
for(let item of items){
if( (scrapedItemsIdentifiers.length < CONFIG.maxItems) || (CONFIG.maxItems === 0) ){
// marketplacr
//scrapedItemsIdentifiers.push(item.node.listing.id);
// selling
scrapedItemsIdentifiers.push({
id: item.node.id,
is_sold: item.node.is_sold
});
}
}
}
/************************/
(async function play(){
try{
await openBrowser();
await openPage(CONFIG.facebookUrl);
//await openPage(CONFIG.marketPlaceUrl);
await login({
email: CONFIG.email,
password: CONFIG.password
});
//await navigateTo(CONFIG.marketPlaceUrl);
await navigateTo(CONFIG.sellingPage);
//await scrollToEnd();
//await parseItems();
//await closeBrowser();
}catch(e){
console.log(e);
}
})();
/**********************************************/
/************** old code *********************/
/**********************************************/
/*
* data-testid="marketplace_feed_item"
*/
async function parseItems() {
console.log('>>> parse Items ');
// collect items
let items = await page.$$('[data-testid="marketplace_feed_item"]');
for(let item of items){
// note )-> fb marketplace is making DOM re-rendering, so it's good to take your breath before go next
await page.waitFor(500);
let href = await item.evaluate((node) => {
return node.pathname;
});
console.log('----->>>>>>>>>> item href', href);
// select item
item = await page.waitForSelector('a[href="'+href+'"]');
await item.click();
// wait for popup dialog
let dialogElementHandler = await page.waitForSelector('[aria-labelledby="marketplace-modal-dialog-title"]');
let titleElementHandler = await page.waitForSelector('span[data-testid="marketplace_pdp_title"]');
let priceElementHandler = await page.waitForSelector('span[itemprop="price"]');
let descriptionElementHandler = await page.waitForSelector('span[itemprop="description"]');
const title = await (await titleElementHandler.getProperty('textContent')).jsonValue();
const price = await (await priceElementHandler.getProperty('textContent')).jsonValue();
const description = await (await descriptionElementHandler.getProperty('textContent')).jsonValue();
// push collected data into scrapedData array
scrapedData.push({
title, price, description
});
// close the dialog
let closeBtn = await dialogElementHandler.$('[title="Close"]');
await closeBtn.click();
// take breath
await page.waitFor(1000);
}
}
/*
*
*/
async function scrollToEnd(){
console.log('>>> scroll to end ');
const getHeight = () => document.body.scrollHeight
const scrapeInfiniteScrollItems = async (page, scrollDelay = 100) => {
await page.waitForSelector('button[nextavailability="out_of_stock"]');
let height = await page.evaluate(getHeight);
let previousHeight = 0
try {
do {
await page.waitFor(scrollDelay);
await page.evaluate(() => {
window.scrollTo(0, document.body.scrollHeight);
});
previousHeight = height;
await page.waitForFunction(
`document.body.scrollHeight>${height}`
);
height = await page.evaluate(getHeight);
console.log("Loading more...")
} while(height > previousHeight)
} catch(error) {
console.log("Loading completed");
}
};
await scrapeInfiniteScrollItems(page, 100);
}