-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
620 lines (547 loc) · 21 KB
/
Copy pathserver.js
File metadata and controls
620 lines (547 loc) · 21 KB
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
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
//server dependencies
const express = require("express");
const app = express();
const port = 9000;
const path = require("path");
//scraper dependencies
const axios = require("axios");
const cheerio = require("cheerio");
const puppeteerExtra = require("puppeteer-extra");
const Stealth = require("puppeteer-extra-plugin-stealth");
puppeteerExtra.use(Stealth());
//extra dependencies
const fs = require("fs");
const xlsx = require("xlsx");
app.use(express.static(path.join(__dirname, "material-dashboard")));
app.use(express.json());
app.get("/", (req, res) => {
res.sendFile(
path.join(__dirname, "material-dashboard", "pages", "tables.html")
);
});
app.post("/", async (req, res) => {
try {
const {
active_status,
ad_type,
country,
media_type,
q,
search_type,
category,
} = req.body;
const userQuery = {
active_status,
ad_type,
country,
media_type,
q,
search_type,
category,
};
console.log(userQuery);
try {
if (userQuery.category) {
const categoryData = await runCategories(userQuery); //if category is selected
res.json(categoryData);
} else {
const scraperData = await run(userQuery);
res.json(scraperData);
}
} catch (err) {
console.error(`An error occured :` + err);
}
} catch (error) {
res.json({ status: "failure", error: error });
}
});
app.listen(port, () => {
console.log(`Server listening on port ${port}`);
console.info(`Server live on ${`http://localhost:9000/`}`);
});
//scraper starts here
function queryURLBuilder(options) {
options.q = encodeURIComponent(options.q);
return `https://www.facebook.com/ads/library/?active_status=${options.active_status}&ad_type=${options.ad_type}&country=${options.country}&media_type=${options.media_type}&q=${options.q}&search_type=${options.search_type}`;
}
let adsData = [];
let graphQLData = [];
let otherAds = [];
// const userQuery = {
// active_status: "active",
// ad_type: "all",
// country: "IN",
// media_type: "all",
// q: "Pet products",
// search_type: "keyword_exact_phrase", //keyword_unordered
// };
async function run(userQuery) {
adsData = [];
graphQLData = [];
otherAds = [];
const browserObj = await puppeteerExtra.launch({ headless: true });
const page = await browserObj.newPage();
const url = queryURLBuilder(userQuery);
try {
await page.setViewport({ width: 1920, height: 1080 });
await page.setUserAgent(
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36"
);
//network payload code starts here (company data)
// Intercept and monitor network responses
await page.setRequestInterception(true);
page.on("request", (request) => {
request.continue();
});
page.on("response", async (response) => {
try {
const url = response.url();
// Filter for GraphQL responses
if (url.includes("/graphql")) {
const jsonResponse = await response.json(); // Parse JSON response
if (jsonResponse.data && jsonResponse.data.page) {
const page = jsonResponse.data.page;
graphQLData.push({
name: page.name,
category: page.category_name,
profile_picture_uri: page.profile_picture_uri,
likes: page.page_likers.count,
website: page.websites[0],
url: page.url,
"company-text": page.best_description.text,
"company-ads-profile": `https://www.facebook.com/ads/library/?active_status=all&ad_type=all&country=ALL&media_type=all&search_type=page&view_all_page_id=${page.id}`,
});
}
//add code here
else if (
jsonResponse.data.ad_library_main &&
jsonResponse.data.ad_library_main.search_results_connection
) {
const data =
jsonResponse.data.ad_library_main.search_results_connection.edges;
for (const ads of data) {
const result = ads.node.collated_results[0];
const unixTimestamp = result.start_date; // start with a Unix timestamp
const date = new Date(unixTimestamp * 1000);
otherAds.push({
"Ad ID": result.ad_archive_id,
"Ad link": `https://www.facebook.com/ads/library/?id=${result.ad_archive_id}`,
"Started running on ": date.toDateString(),
"Page Name:": result.page_name,
Platforms: result.publisher_platform,
"Call to Action:": result.snapshot.cta_type,
page_profile_picture_url:
result.snapshot.page_profile_picture_url,
is_active: result.is_active ? "active" : "inactive",
});
}
console.log(otherAds);
}
}
} catch (err) {
console.error(`Error parsing response: ${err}`);
}
});
await page.goto(url, { waitUntil: "domcontentloaded" });
await page.waitForNetworkIdle(); // Wait for network resources to fully load
// Scroll dynamically to load all content
const scrollPageToBottom = async () => {
await page.evaluate(() => {
window.scrollTo(0, document.body.scrollHeight);
});
await new Promise((resolve) => setTimeout(resolve, 5000)); // Wait for content to load
};
let previousHeight = 0;
while (true) {
await scrollPageToBottom();
const newHeight = await page.evaluate(() => document.body.scrollHeight);
if (newHeight === previousHeight) break;
previousHeight = newHeight;
}
await new Promise((resolve) => setTimeout(resolve, 3000));
} catch (e) {
console.log(e);
}
// console.log("Collected GraphQL Data:", graphQLData);
// console.log("Collected GraphQL Data Length:", graphQLData.length);
console.log(`cherrio parser started`);
//cheerio parser starts here
const html = await page.content();
const $ = cheerio.load(html);
try {
// Loop through all <script> tags and find the one containing the JSON data
$("script").each((i, el) => {
const scriptContent = $(el).html();
if (
scriptContent &&
scriptContent.trim().startsWith("{") &&
scriptContent.trim().endsWith("}")
) {
try {
const jsonData = JSON.parse(scriptContent);
// Check if the JSON contains the expected structure starting from `edges`
if (
jsonData.require &&
jsonData.require[0] &&
jsonData.require[0][3]
) {
const edges =
jsonData.require[0][3][0].__bbox.require[0][3][1].__bbox.result
.data.ad_library_main.search_results_connection.edges;
const count =
jsonData.require[0][3][0].__bbox.require[0][3][1].__bbox.result
.data.ad_library_main.search_results_connection.count;
console.log(`~${count} Results`);
// Iterate through all edges and extract data
edges.forEach((edge, index) => {
const collatedResults = edge.node.collated_results;
if (collatedResults) {
collatedResults.forEach((result, resultIndex) => {
const unixTimestamp = result.start_date; // start with a Unix timestamp
const date = new Date(unixTimestamp * 1000); // convert timestamp to milliseconds and construct Date object
adsData.push({
"Ad ID": result.ad_archive_id,
"Ad link": `https://www.facebook.com/ads/library/?id=${result.ad_archive_id}`,
"Started running on ": date.toDateString(),
"Page Name:": result.page_name,
Platforms: result.publisher_platform,
"Call to Action:": result.snapshot.cta_type,
page_profile_picture_url:
result.snapshot.page_profile_picture_url,
is_active: result.is_active ? "active" : "inactive",
});
});
}
});
} else {
// console.log("Expected data structure not found.");
}
} catch (error) {
// console.error("Error parsing JSON:", error.message);
}
}
});
} catch (error) {
// console.error("Error:", error.message);
}
await browserObj.close();
const allAds = [...adsData, ...otherAds];
console.log(allAds.length);
createExcelFile(`Ads.xlsx`, allAds);
createExcelFile(`company data.xlsx`, graphQLData);
return {
allAds: allAds,
companyInfo: graphQLData,
};
}
async function yearlyData(userQuery) {
let currentYear = new Date().getFullYear();
let currentDate = new Date();
let baseUrl = queryURLBuilder(userQuery);
let totalAdsData = [];
let year = 2018; // When ads were made public
while (year <= currentYear) {
// Format the dates in YYYY-MM-DD
let startDate = `${year}-01-01`; // Start of the year
let endDate;
if (year === currentYear) {
// Current year: Use today's date
endDate = currentDate.toISOString().split("T")[0]; // Format today's date
} else {
// Past years: Use December 31
endDate = `${year}-12-31`;
}
// Build URL with the new date range
let yearUrl =
baseUrl + `&start_date[min]=${startDate}&start_date[max]=${endDate}`;
console.log(`Fetching data for year: ${year}, URL: ${yearUrl}`);
try {
// Make the API request
const response = await axios.get(yearUrl);
const html = response.data;
// Parse the HTML using Cheerio
const $ = cheerio.load(html);
// Loop through all <script> tags and extract JSON data
$("script").each((i, el) => {
const scriptContent = $(el).html();
// Check if the content looks like JSON
if (
scriptContent &&
scriptContent.trim().startsWith("{") &&
scriptContent.trim().endsWith("}")
) {
try {
// Parse the JSON content
const jsonData = JSON.parse(scriptContent);
// Extract the ads count (adjust structure based on actual response)
if (
jsonData.require &&
jsonData.require[0] &&
jsonData.require[0][3]
) {
const count =
jsonData.require[0][3][0].__bbox.require[0][3][1].__bbox.result
.data.ad_library_main.search_results_connection.count;
// Store the result
totalAdsData.push(count);
}
} catch (error) {
// console.error("Error parsing JSON:", error.message);
}
}
});
} catch (error) {
console.error(`Error fetching data for year ${year}:`, error.message);
}
year++; // Increment the year
}
console.log("Total Ads Data:", totalAdsData);
}
// yearlyData()
function createExcelFile(fileName, data) {
try {
// Step 1: Convert data array to a worksheet
const worksheet = xlsx.utils.json_to_sheet(data);
// Step 2: Create a new workbook and append the worksheet
const workbook = xlsx.utils.book_new();
xlsx.utils.book_append_sheet(workbook, worksheet, "Sheet1");
// Step 3: Write the workbook to a file
xlsx.writeFile(workbook, fileName);
console.log(`Excel file "${fileName}" has been created successfully.`);
} catch (error) {
console.error("Error creating Excel file:", error);
}
}
function getSubCategories(category) {
let subCategories = [];
switch (category) {
case "Fashion and Apparel":
subCategories = ["Clothing", "Shoes", "Accessories", "Jewelry"];
break;
case "Beauty and Personal Care":
subCategories = ["Skincare", "Makeup", "Haircare", "Grooming products"];
break;
case "Electronics and Gadgets":
subCategories = ["Smartphones", "Laptops", "Headphones", "Accessories"];
break;
case "Home and Kitchen":
subCategories = ["Furniture", "Appliances", "Decor", "Cookware"];
break;
case "Health and Fitness":
subCategories = ["Supplements", "Gym equipment", "Wellness products"];
break;
case "Car Accessories":
subCategories = ["Seat covers", "Gadgets", "Maintenance tools"];
break;
case "Toys and Games":
subCategories = ["Kids toys", "Puzzles", "Video games"];
break;
case "Pet Products":
subCategories = ["Pet food", "Toys", "Grooming supplies"];
break;
case "Books and Stationery":
subCategories = ["Books", "Notebooks", "Office supplies"];
break;
case "Sports and Outdoor Gear":
subCategories = ["Camping equipment", "Sportswear", "Bikes"];
break;
case "Baby Products":
subCategories = ["Diapers", "Strollers", "Baby care items"];
break;
case "Food and Beverages":
subCategories = ["Snacks", "Health foods", "Specialty drinks"];
break;
case "Art and Craft Supplies":
subCategories = ["Paints", "Fabrics", "DIY kits"];
break;
case "Automotive Parts":
subCategories = ["Tires", "Spare parts", "Tools"];
break;
case "Tech Accessories":
subCategories = ["Chargers", "Cables", "Cases"];
break;
case "Hobbies and Collectibles":
subCategories = ["Model kits", "Memorabilia", "Instruments"];
break;
default:
subCategories = [];
break;
}
return subCategories;
}
async function runCategories(userQuery) {
adsData = [];
graphQLData = [];
otherAds = [];
const browserObj = await puppeteerExtra.launch({ headless: false });
try {
const category = userQuery.category;
const subCategories = getSubCategories(category);
if (!subCategories.length) {
console.log(`No subcategories found for the category: ${category}`);
return;
}
console.log(`Category: ${category}`);
console.log(`Subcategories: ${subCategories.join(", ")}`);
for (const subCategory of subCategories) {
const page = await browserObj.newPage();
try {
// Update userQuery to include the subcategory
const subCategoryQuery = { ...userQuery, q: subCategory};
const url = queryURLBuilder(subCategoryQuery);
console.log(`Scraping URL for subcategory "${subCategory}": ${url}`);
await page.setViewport({ width: 1920, height: 1080 });
await page.setUserAgent(
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36"
);
// Intercept and monitor network responses
await page.setRequestInterception(true);
page.on("request", (request) => {
request.continue();
});
page.on("response", async (response) => {
try {
const url = response.url();
// Filter for GraphQL responses
if (url.includes("/graphql")) {
const jsonResponse = await response.json(); // Parse JSON response
if (jsonResponse.data && jsonResponse.data.page) {
const page = jsonResponse.data.page;
graphQLData.push({
name: page.name,
category: page.category_name,
profile_picture_uri: page.profile_picture_uri,
likes: page.page_likers.count,
website: page.websites[0],
url: page.url,
"company-text": page.best_description.text,
"company-ads-profile": `https://www.facebook.com/ads/library/?active_status=all&ad_type=all&country=ALL&media_type=all&search_type=page&view_all_page_id=${page.id}`,
});
}
//add code here
else if (
jsonResponse.data.ad_library_main &&
jsonResponse.data.ad_library_main.search_results_connection
) {
const data =
jsonResponse.data.ad_library_main.search_results_connection.edges;
for (const ads of data) {
const result = ads.node.collated_results[0];
const unixTimestamp = result.start_date; // start with a Unix timestamp
const date = new Date(unixTimestamp * 1000);
otherAds.push({
"Ad ID": result.ad_archive_id,
"Ad link": `https://www.facebook.com/ads/library/?id=${result.ad_archive_id}`,
"Started running on ": date.toDateString(),
"Page Name:": result.page_name,
Platforms: result.publisher_platform,
"Call to Action:": result.snapshot.cta_type,
page_profile_picture_url:
result.snapshot.page_profile_picture_url,
is_active: result.is_active ? "active" : "inactive",
});
}
console.log(otherAds);
}
}
} catch (err) {
console.error(`Error parsing response: ${err}`);
}
});
await page.goto(url, { waitUntil: "domcontentloaded" });
await page.waitForNetworkIdle();
// Scroll dynamically to load all content
const scrollPageToBottom = async () => {
await page.evaluate(() => {
window.scrollTo(0, document.body.scrollHeight);
});
await new Promise((resolve) => setTimeout(resolve, 5000)); // Wait for content to load
};
let previousHeight = 0;
while (true) {
await scrollPageToBottom();
const newHeight = await page.evaluate(
() => document.body.scrollHeight
);
if (newHeight === previousHeight) break;
previousHeight = newHeight;
}
//
console.log(`cherrio parser started`);
//cheerio parser starts here
const html = await page.content();
const $ = cheerio.load(html);
try {
// Loop through all <script> tags and find the one containing the JSON data
$("script").each((i, el) => {
const scriptContent = $(el).html();
if (
scriptContent &&
scriptContent.trim().startsWith("{") &&
scriptContent.trim().endsWith("}")
) {
try {
const jsonData = JSON.parse(scriptContent);
// Check if the JSON contains the expected structure starting from `edges`
if (
jsonData.require &&
jsonData.require[0] &&
jsonData.require[0][3]
) {
const edges =
jsonData.require[0][3][0].__bbox.require[0][3][1].__bbox.result
.data.ad_library_main.search_results_connection.edges;
const count =
jsonData.require[0][3][0].__bbox.require[0][3][1].__bbox.result
.data.ad_library_main.search_results_connection.count;
console.log(`~${count} Results`);
// Iterate through all edges and extract data
edges.forEach((edge, index) => {
const collatedResults = edge.node.collated_results;
if (collatedResults) {
collatedResults.forEach((result, resultIndex) => {
const unixTimestamp = result.start_date; // start with a Unix timestamp
const date = new Date(unixTimestamp * 1000); // convert timestamp to milliseconds and construct Date object
adsData.push({
"Ad ID": result.ad_archive_id,
"Ad link": `https://www.facebook.com/ads/library/?id=${result.ad_archive_id}`,
"Started running on ": date.toDateString(),
"Page Name:": result.page_name,
Platforms: result.publisher_platform,
"Call to Action:": result.snapshot.cta_type,
page_profile_picture_url:
result.snapshot.page_profile_picture_url,
is_active: result.is_active ? "active" : "inactive",
});
});
}
});
} else {
// console.log("Expected data structure not found.");
}
} catch (error) {
// console.error("Error parsing JSON:", error.message);
}
}
});
} catch (error) {
// console.error("Error:", error.message);
}
await new Promise((resolve) => setTimeout(resolve, 3000));
} catch (err) {
console.error(`Error scraping subcategory "${subCategory}": ${err}`);
} finally {
await page.close();
}
}
} catch (err) {
console.error(`Error in main function: ${err}`);
} finally {
await browserObj.close();
}
const allAds = [...adsData, ...otherAds];
return {
allAds: allAds,
companyInfo: graphQLData,
};
}