-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscrapper.js
168 lines (145 loc) · 5.83 KB
/
scrapper.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
import * as cheerio from "cheerio";
import puppeteerExtra from "puppeteer-extra";
import stealthPlugin from "puppeteer-extra-plugin-stealth";
async function searchGoogleMaps(searchQuery) {
try {
const start = Date.now();
puppeteerExtra.use(stealthPlugin());
const browser = await puppeteerExtra.launch({
headless: false,
// headless: "new",
// devtools: true,
executablePath: "",
});
// const browser = await puppeteerExtra.launch({
// args: chromium.args,
// defaultViewport: chromium.defaultViewport,
// executablePath: await chromium.executablePath(),
// headless: "new",
// ignoreHTTPSErrors: true,
// });
const page = await browser.newPage();
try {
await page.goto(
`https://www.google.com/maps/search/${searchQuery.split(" ").join("+")}`
);
} catch (error) {
console.log("error going to page");
}
async function autoScroll(page) {
await page.evaluate(async () => {
const wrapper = document.querySelector('div[role="feed"]');
await new Promise((resolve, reject) => {
var totalHeight = 0;
var distance = 1000;
var scrollDelay = 3000;
var timer = setInterval(async () => {
var scrollHeightBefore = wrapper.scrollHeight;
wrapper.scrollBy(0, distance);
totalHeight += distance;
if (totalHeight >= scrollHeightBefore) {
totalHeight = 0;
await new Promise((resolve) => setTimeout(resolve, scrollDelay));
// Calculate scrollHeight after waiting
var scrollHeightAfter = wrapper.scrollHeight;
if (scrollHeightAfter > scrollHeightBefore) {
// More content loaded, keep scrolling
return;
} else {
// No more content loaded, stop scrolling
clearInterval(timer);
resolve();
}
}
}, 200);
});
});
}
await autoScroll(page);
const html = await page.content();
const pages = await browser.pages();
await Promise.all(pages.map((page) => page.close()));
await browser.close();
console.log("browser closed");
// get all a tag parent where a tag href includes /maps/place/
const $ = cheerio.load(html);
const aTags = $("a");
const parents = [];
aTags.each((i, el) => {
const href = $(el).attr("href");
if (!href) {
return;
}
if (href.includes("/maps/place/")) {
parents.push($(el).parent());
}
});
console.log("parents", parents.length);
const buisnesses = [];
parents.forEach((parent) => {
const url = parent.find("a").attr("href");
// get a tag where data-value="Website"
// const website = parent.find('a[data-value="Website"]').attr("href");
const website =parent.find('a[data-value]').attr('href')
// find a div that includes the class fontHeadlineSmall
const storeName = parent.find("div.fontHeadlineSmall").text();
// find span that includes class fontBodyMedium
const ratingText = parent
.find("span.fontBodyMedium > span")
.attr("aria-label");
// get the first div that includes the class fontBodyMedium
const bodyDiv = parent.find("div.fontBodyMedium").first();
const children = bodyDiv.children();
const lastChild = children.last();
const firstOfLast = lastChild.children().first();
const lastOfLast = lastChild.children().last();
const image = parent.find("img").attr("src");
buisnesses.push({
placeId: `ChI${url?.split("?")?.[0]?.split("ChI")?.[1]}`,
image: image,
address: firstOfLast?.text()?.split("·")?.[1]?.trim(),
category: firstOfLast?.text()?.split("·")?.[0]?.trim(),
phone: lastOfLast?.text()?.split("·")?.[1]?.trim(),
googleUrl: url,
bizWebsite: website,
storeName,
ratingText,
stars: ratingText?.split(" ")?.[1]?.trim()
? ratingText?.split(" ")?.[1]?.trim()
: null,
numberOfReviews: ratingText?.split(" ")?.[2]?.trim()
? ratingText?.split(" ")?.[2]?.trim()
: null,
});
});
const end = Date.now();
console.log(`time in seconds ${Math.floor((end - start) / 1000)}`);
return buisnesses;
} catch (error) {
console.log("error at googleMaps", error.message);
}
}
// async function getEmail(website,place_id){
// try{
// if(!website){
// return null
// }
// const res = await axios({
// method:"POST",
// url :'https://w2ar76fhb1.execute-api.us-east-1.amazonaws.com/default/get-emails-from-website-api',
//
// data:{
// website:website,
// }
// })
// return {
// place_id:place_id,
// emails:res.data.emails
// };
// }
// catch(err){
// console.log(err)
// return null
// }
// }
export default searchGoogleMaps;