-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
412 lines (376 loc) · 13.1 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
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
const axios = require("axios");
const fs = require("fs");
const { scrapeEmailFromDomain } = require("./scrapeContactInfo");
// const { emailPermutator } = require("./permutate");
const { getLocationYelp, getYelpData } = require("./yelpLocation");
const { searchPlaces, placeInfo } = require("./googlePlaceUtils");
const Company = require("./mongooseDB/mongoDBController");
const { scraPeYellowPages } = require("./scrapeYellowPages");
const { regexSnippetYelpData } = require("./yelpDataFromSnippet");
const { getYelpInfo } = require("./scrapeBusinessDomain");
const {
regexSnippet,
getCityCountry,
extractDomainFromUrl
} = require("./utils");
const { findPersonFromDb } = require("./mongooseDB/mongoDB");
// const { fbEmails, fbPlaces } = require("./firebase");
const { findCompanyGoogle } = require("./scrapeGoogle");
const countryMapper = require("./companyData/countriesMap.json");
const {
postDataToAppsScript,
removeElem,
textDataToArray,
emptyTextDataFile
} = require("./utils");
const { getEmailsFromToofr } = require("./getEmailsFromToofr");
const getMapsPlacesLocation = async (
linkedinData,
inputLocation,
vertical,
scriptUrl,
userStartTime
) => {
let placesArr = [];
let emailLeads = [];
let uncheckedData = [];
for (let i = 0; i < linkedinData.length; i++) {
let link = linkedinData[i];
//console.log("LINK LOCATION", link.location);
let locationData = await getCityCountry(inputLocation);
let splitted = stripSpecalChar(link.name)
.split(" ")
.filter(item => item.length > 2);
let filterName = (splitted[0] + " " + splitted[1]).replace(/[^\w\s]/gi, "");
// fbLinkedinUsers.push(link)
let location = link.location || `Location ${inputLocation}`;
// console.log("LINKEDIN SNIPPET ", link.snippet);
let snippetFromReg = await regexSnippet(link.snippet);
//console.log("LOCATION", inputLocation);
//console.log("FIRST NAME ", splitted[0]);
console.log("SNIPPET FROM REG", snippetFromReg);
let companyFromDb;
if (
snippetFromReg &&
snippetFromReg != null &&
snippetFromReg != undefined
) {
companyFromDb = await Company.findByCompanyName(snippetFromReg);
}
// let companyFromDb = await findPersonFromDb(splitted[0]);
//console.log("COMPANY FROM DB", companyFromDb);
if (companyFromDb) {
console.log("COMPANY FROM DB", companyFromDb);
let dbCompanyArr = [];
dbCompanyArr.push([
companyFromDb.state || "",
companyFromDb.country || "",
companyFromDb.website || "",
companyFromDb.firstName || "",
companyFromDb.lastName || "",
companyFromDb.email || "",
companyFromDb.companyName || "",
companyFromDb.description || "",
companyFromDb.address || ""
]);
if (companyFromDb.email === null || companyFromDb.email === "") {
// console.log("GET EMAIL FROM TOOFR DB");
let emailCrawledDb = await scrapeEmailFromDomain(companyFromDb.website);
console.log("EMAIL CRAWLED FROM DB RES", emailCrawledDb);
if (emailCrawledDb) {
dbCompanyArr.push(emailCrawledDb[0]);
} else {
if (!emailCrawledDb) {
let emailFromToofDB = await getEmailsFromToofr(
companyFromDb.firstName,
companyFromDb.lastName,
companyFromDb.website
);
if (emailFromToofDB) {
//console.log("GET EMAIL FROM TOOFR DB", emailFromToofDB);
emailFromToofDB.forEach(el => {
dbCompanyArr.push(el.email + " , " + " | " + el.confidence);
});
}
}
}
}
console.log("dbCompanyarr", dbCompanyArr);
postDataToAppsScript(scriptUrl, dbCompanyArr, "databaseRes");
} else {
let dataGoogle = [];
console.log("DATA GOOGLE", snippetFromReg);
// let snippetFromRegGoogle = await regexSnippet(link.snippet);
if (snippetFromReg) {
let queryGoogle = snippetFromReg + " " + inputLocation;
console.log("Query google", queryGoogle);
let dataFromGoogle = await findCompanyGoogle(queryGoogle);
console.log("DATA FROM GOOGLE", dataFromGoogle);
let domain = await extractDomainFromUrl(dataFromGoogle[1]);
let emailCrawled = await scrapeEmailFromDomain(domain);
console.log("EMAILS FROM GOOGLE DOMAIN", emailCrawled);
if (dataFromGoogle) {
fs.appendFile("googleResults.txt", dataFromGoogle.join("\n") + "\n");
dataGoogle.push([
splitted[0],
splitted[1],
location,
vertical,
...dataFromGoogle,
emailCrawled
]);
Company.updateOrInsertCompany(
splitted[0],
splitted[1],
dataFromGoogle[0], //address
dataFromGoogle[1], // website
locationData.city,
locationData.country,
locationData.shortCode,
snippetFromReg,
emailCrawled
);
console.log("DATA GOOGLE", dataGoogle);
await postDataToAppsScript(scriptUrl, dataGoogle, "dataFromGoogle");
}
} else {
let yelloPagesFromSnippet = await scraPeYellowPages(
link.snippet,
location,
vertical
);
console.log("yelloPagesFromSnippet", yelloPagesFromSnippet);
let yellowPaArr = [];
if (yelloPagesFromSnippet !== undefined) {
yellowPaArr = [
[
yelloPagesFromSnippet.email,
yelloPagesFromSnippet.companyInfo.title,
yelloPagesFromSnippet.companyInfo.website,
yelloPagesFromSnippet.companyInfo.link,
vertical,
location,
yelloPagesFromSnippet.companyInfo.address
//JSON.stringify(yelloPagesFromSnippet.companyInfo)
]
];
Company.updateOrInsertCompany(
splitted[0],
splitted[1],
yelloPagesFromSnippet.companyInfo.address,
yelloPagesFromSnippet.companyInfo.website,
locationData.city,
locationData.country,
locationData.shortCode,
yelloPagesFromSnippet.companyInfo.title,
yelloPagesFromSnippet.email
);
console.log("YELLOW PAGES", yellowPaArr);
fs.appendFile("yellowData.txt", yellowPaArr.join("\n") + "\n");
await postDataToAppsScript(scriptUrl, yellowPaArr, "yellopagedata");
} else {
let yelpDataFromSnippet;
let snippetFromRegYelp = await regexSnippet(link.snippet);
if (snippetFromRegYelp) {
yelpDataFromSnippet = await regexSnippetYelpData(
snippetFromRegYelp,
location
);
}
console.log("YELP DATA FROM SNIPPET", yelpDataFromSnippet);
let yelpMail;
let emailsToofrYelp;
if (yelpDataFromSnippet != undefined) {
//console.log("YELP RESULTS FROM SNIPPET", yelpDataFromSnippet);
let yelpArr = [];
let results = await getYelpInfo(yelpDataFromSnippet);
console.logconsole.log("RESULTS FROM YELP", results);
let addressFromYelp = await getLocationYelp(filterName, location);
//console.log("Yelp Address", addressFromYelp);
fs.appendFile("yelpData.txt", JSON.stringify(results) + "\n");
if (results) {
if (results.website) {
yelpMail = (await scrapeEmailFromDomain(results.website)) || [];
console.log("YELP EMAIL", yelpMail);
if (!yelpMail) {
if (results) {
let emailFromToofYelp =
(await getEmailsFromToofr(
results.firstName,
results.lastName,
results.website
)) || [];
// console.log("EMAIL FROM TOOFR YELP", emailFromToofYelp);
emailsToofrYelp = [];
emailFromToofYelp.forEach(el => {
emailsToofrYelp.push(
el.email + " , " + " | " + el.confidence
);
});
}
}
}
if (results != undefined) {
yelpArr = [
[
results.firstName,
results.lastName,
results.website,
vertical,
location,
yelpMail,
emailsToofrYelp
]
];
console.log("YELP ARR", yelpArr);
Company.updateOrInsertCompany(
results.firstName,
results.lastName,
addressFromYelp,
results.website,
locationData.city,
locationData.country,
locationData.shortCode,
results.companyName,
yelpMail[0] || emailsToofrYelp[0]
);
}
}
await postDataToAppsScript(scriptUrl, yelpArr, "yelpdata");
} else {
uncheckedData.push(linkedinData[i]);
}
}
}
}
}
// return;
for (let i = 0; i < uncheckedData.length; i++) {
console.log("SECOND FOR .....");
let link = uncheckedData[i];
// fbLinkedinUsers.push(link)
let splitted = stripSpecalChar(link.name)
.split(" ")
.filter(item => item.length > 2);
let filteredName = (splitted[0] + " " + splitted[1]).replace(
/[^\w\s]/gi,
""
);
let location = link.location || `Location ${inputLocation}`;
let yelpAddress = await getLocationYelp(filteredName, location);
console.log("Yelp Address", yelpAddress);
let placeData;
if (!yelpAddress) {
placeData = await searchPlaces(
"" + filteredName + ", " + vertical + ", " + location + ""
);
// console.log("Search Place ", placeData)
placeData = placeData[0];
// await getGooglePlaceInfo(
// "" + filteredName + ", " + vertical + ", " + location + "",
// "query",
// getGooglePlacesApiKeys()
// );
}
if (!placeData) {
if (!yelpAddress) continue;
placeData = await searchPlaces(
"" + filteredName + ", " + vertical + ", " + yelpAddress + ""
);
placeData = placeData[0];
// placeData = await getGooglePlaceInfo(
// "" + filteredName + ", " + vertical + ", " + yelpAddress + "",
// "query",
// getGooglePlacesApiKeys()
// );
if (!placeData) continue;
continue;
}
let placeIdInfo = await placeInfo(placeData.place_id);
// console.log("place ID", placeIdInfo);
// await getGooglePlaceInfo(
// placeData.placeId,
// "placeid",
// getGooglePlacesApiKeys()
// );
let { vicinity, name, website = "", rating = "" } = placeIdInfo;
placesArr.push([
name,
splitted[0],
splitted[1],
link.link,
vicinity,
website,
rating
]);
let domain = website.match(".*://?([^/]+)")
? website.match(".*://?([^/]+)")[1]
: `${filteredName.replace(" ", "")}.com`;
let crawlEmail = await scrapeEmailFromDomain(website || domain);
// console.log(
// "Firstname",
// splitted[0],
// "LastName",
// splitted[1],
// "Website",
// website,
// "Domain",
// domain
// );
let emailFromToof = await getEmailsFromToofr(
splitted[0],
splitted[1],
website || domain
);
// console.log("EMAILS FROM TOOFR", emailFromToof);
if (emailFromToof != []) {
let emailsToofr = [];
emailFromToof.forEach(el => {
emailsToofr.push(el.email + " , " + " | " + el.confidence);
});
}
//let firstEmail = crawlEmail.split(",")[0];
console.log("EMAILS FROM TOOFR", emailsToofr);
let emails = [
...[
name,
splitted[0],
splitted[1],
link.link,
website,
filteredName,
emailsToofr.join(" ")
//crawlEmail
]
//...permutateEmails
];
emailLeads.push(emails);
}
await postDataToAppsScript(scriptUrl, placesArr, "places");
await postDataToAppsScript(scriptUrl, emailLeads, "emails");
//startTime;
// await getBusinessData(vertical, inputLocation, scriptUrl);
let queueRequests = removeElem(userStartTime);
let isItLastReq = queueRequests.length === 0;
console.log("Is it last request? ", isItLastReq, queueRequests);
if (isItLastReq) {
let rawEmails = textDataToArray();
//console.log(rawEmails);
console.log("PROCESS FINISHED");
// Remove File data before Validation
//emptyTextDataFile();
//validateRawEmails(scriptUrl, rawEmails);
await postDataToAppsScript(
"https://script.google.com/macros/s/AKfycbwvj6UAhPMaEPb3p-SshlFeJ_Z2jftVeSwh-K2-I9VG9aaCs0Qd/exec",
textDataToArray().map(item => [item]),
"verifiedEmails"
);
}
};
function stripSpecalChar(str) {
return str.replace(/[`~!@#$%^&*()_|+\-=?;:'",.<>\{\}\[\]\\\/]/gi, " ");
}
module.exports = {
//postDataToAppsScript,
getMapsPlacesLocation
};