-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathserver.js
More file actions
499 lines (472 loc) · 14.4 KB
/
server.js
File metadata and controls
499 lines (472 loc) · 14.4 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
//Importing Modules
const http = require("http");
const express = require("express");
const bodyParser = require("body-parser");
const axios = require("axios");
const cheerio = require("cheerio");
const gitHub = require("github-search-repos");
const google = require("google");
const ytSearch = require("yt-search");
const Scraper = require("image-scraper");
//App Container
const app = express();
//Middleware
app.use(
bodyParser.urlencoded({
extended: true
})
);
app.use(bodyParser.json());
//Route (API)
//Perform Different Operations
app.post("/webhook", (req, res) => {
//Request Text from Dialog Flow
let reqText = req.body.queryResult.queryText;
//Request parameter of Github repo from Dialog Flow
let reqPara = req.body.queryResult.parameters.repo;
//Request parameter Google Search from Dialog Flow
let reqSearch = req.body.queryResult.parameters.search;
//Request parameter Youtube Search from Dialog Flow
let reqUtubeSearch = req.body.queryResult.parameters.youtube;
//Request parameter Britannica from Dialog Flow
let reqBritannica = req.body.queryResult.parameters.britannica;
//Request parameter image url from Dialog Flow for downloading image from that url
let reqImgURL = req.body.queryResult.parameters.imgurl;
//Request parameter movie from Dialog Flow for downloading movies from google
let reqMovie = req.body.queryResult.parameters.movie;
//Request parameter movie from Dialog Flow for downloading tv serial from google
let reqSerial = req.body.queryResult.parameters.serial;
//Request parameter mp3 from Dialog Flow for downloading mp3 musics
let reqMP3 = req.body.queryResult.parameters.mp3;
//Request parameter pdf from Dialog Flow for download pdf books
let reqPDF = req.body.queryResult.parameters.pdf;
//Request parameter pdf from Dialog Flow for download video songs
let reqVideo = req.body.queryResult.parameters.video;
//If User Ask
if (
reqText === "who are you ?" &&
reqVideo === undefined &&
reqPDF === undefined &&
reqSerial === undefined &&
reqMP3 === undefined &&
reqMovie === undefined &&
reqImgURL === undefined &&
reqPara === undefined &&
reqSearch === undefined &&
reqUtubeSearch === undefined &&
reqBritannica === undefined
) {
return res.json({
fulfillmentText:
"I am whatsapp bot created by Vivek Anand Sharma. I'm created with Twilio+DialogFlow and Node Js as WebHook Server",
source: "info"
});
}
if (
reqText === "can you perform google search ?" &&
reqVideo === undefined &&
reqPDF === undefined &&
reqSerial === undefined &&
reqMP3 === undefined &&
reqMovie === undefined &&
reqImgURL === undefined &&
reqPara === undefined &&
reqSearch === undefined &&
reqUtubeSearch === undefined &&
reqBritannica === undefined
) {
return res.json({
fulfillmentText: "Yes I can with command i.e google search anything",
source: "info"
});
}
if (
reqText === "can you perform github search ?" &&
reqVideo === undefined &&
reqPDF === undefined &&
reqSerial === undefined &&
reqMP3 === undefined &&
reqMovie === undefined &&
reqImgURL === undefined &&
reqPara === undefined &&
reqSearch === undefined &&
reqUtubeSearch === undefined &&
reqBritannica === undefined
) {
return res.json({
fulfillmentText: "Yes I can with command i.e git search repo-name",
source: "info"
});
}
if (
reqText === "can you perform youtube search ?" &&
reqVideo === undefined &&
reqPDF === undefined &&
reqSerial === undefined &&
reqMP3 === undefined &&
reqMovie === undefined &&
reqImgURL === undefined &&
reqPara === undefined &&
reqSearch === undefined &&
reqUtubeSearch === undefined &&
reqBritannica === undefined
) {
return res.json({
fulfillmentText: "Yes I can with command i.e youtube search anything",
source: "info"
});
}
if (
reqText === "what happened on this day ?" &&
reqVideo === undefined &&
reqPDF === undefined &&
reqSerial === undefined &&
reqMP3 === undefined &&
reqMovie === undefined &&
reqImgURL === undefined &&
reqPara === undefined &&
reqSearch === undefined &&
reqUtubeSearch === undefined &&
reqBritannica === undefined
) {
axios.get("https://www.history.com/this-day-in-history").then(response => {
if (response.status === 200) {
const html = response.data;
const $ = cheerio.load(html);
let onThisDay;
$(".m-detail--body").each(function(i, elem) {
onThisDay = {
theory: $(this)
.find("p")
.text()
.trim()
};
});
let bioIndex = onThisDay.theory.indexOf(".");
let bioOnThisDay = onThisDay.theory.slice(0, bioIndex);
return res.json({
fulfillmentText: "ON THIS DAY : " + bioOnThisDay,
source: "info"
});
}
});
}
//Github Search Validation
if (
reqText !== "git search" ||
(reqPara !== "" &&
reqVideo === undefined &&
reqPDF === undefined &&
reqSerial === undefined &&
reqMP3 === undefined &&
reqMovie === undefined &&
reqImgURL === undefined &&
reqSearch === undefined &&
reqUtubeSearch === undefined &&
reqBritannica === undefined)
) {
if (reqText.includes("git search")) {
gitHub(reqPara).then(data => {
return res.json({
fulfillmentText:
"URL : " +
data.items[0].html_url +
" Watchers : " +
data.items[0].watchers,
source: "info"
});
});
}
}
//Google Search Validation
if (
reqText !== "google search" ||
(reqSearch !== "" &&
reqVideo === undefined &&
reqPDF === undefined &&
reqSerial === undefined &&
reqMP3 === undefined &&
reqMovie === undefined &&
reqImgURL === undefined &&
reqPara === undefined &&
reqUtubeSearch === undefined &&
reqBritannica === undefined)
) {
if (reqText.includes("google search")) {
google(reqSearch, function(err, response) {
if (err) console.error(err);
let link = response.links[0];
return res.json({
fulfillmentText:
"Title : " +
link.title +
" URL : " +
link.href +
" Description : " +
link.description,
source: "info"
});
});
}
}
//Youtube Search Validation
if (
reqText !== "youtube search" ||
(reqUtubeSearch !== "" &&
reqVideo === undefined &&
reqPDF === undefined &&
reqSerial === undefined &&
reqMP3 === undefined &&
reqMovie === undefined &&
reqImgURL === undefined &&
reqSearch === undefined &&
reqPara === undefined &&
reqBritannica === undefined)
) {
if (reqText.includes("youtube search")) {
ytSearch(reqUtubeSearch, function(err, r) {
if (err) throw err;
const videos = r.videos;
const firstResult = videos[0];
return res.json({
fulfillmentText:
"Title : " +
firstResult.title +
" URL : https://www.youtube.com" +
firstResult.url +
" Views : " +
firstResult.views,
source: "info"
});
});
}
}
//Britannica Scrapping
if (reqBritannica !== undefined) {
if (
reqText !== "do you know about" ||
(reqBritannica !== "" &&
reqVideo === undefined &&
reqPDF === undefined &&
reqSerial === undefined &&
reqMP3 === undefined &&
reqMovie === undefined &&
reqImgURL === undefined &&
reqSearch === undefined &&
reqPara === undefined &&
reqUtubeSearch === undefined)
) {
let TrimmedString = reqBritannica.trim();
let finalString = TrimmedString.replace(/ /g, "-");
if (reqText.includes("do you know about")) {
axios.get("https://www.britannica.com/biography/" + finalString).then(
response => {
if (response.status === 200) {
const html = response.data;
const $ = cheerio.load(html);
let bio;
$("#ref1").each(function(i, elem) {
bio = {
author: $(this)
.find("p")
.text()
.trim()
};
});
let bioIndex = bio.author.indexOf(".");
let biography = bio.author.slice(0, bioIndex);
return res.json({
fulfillmentText: biography,
source: "info"
});
}
},
error =>
google(finalString, function(err, response) {
if (err) console.error(err);
let link = response.links[0];
return res.json({
fulfillmentText:
"Did not find anything on db here is google search result . Title : " +
link.title +
" URL : " +
link.href +
" Description : " +
link.description,
source: "info"
});
})
);
}
}
}
//Scrapping URL Image's
if (reqImgURL !== undefined) {
if (
reqText !== "download image" ||
(reqImgURL !== "" &&
reqVideo === undefined &&
reqPDF === undefined &&
reqSerial === undefined &&
reqMP3 === undefined &&
reqMovie === undefined &&
reqBritannica === undefined &&
reqSearch === undefined &&
reqPara === undefined &&
reqUtubeSearch === undefined)
) {
if (reqText.includes("download image")) {
let scraper = new Scraper(reqImgURL);
scraper.scrape(function(image) {
if (image.address !== undefined) {
return res.json({
fulfillmentText: "You can download image here : " + image.address,
source: "info"
});
}
});
}
}
}
//Scrapping Google Search For Download Movie's
if (reqMovie !== undefined) {
if (
reqText !== "download movie" ||
(reqMovie !== "" &&
reqVideo === undefined &&
reqPDF === undefined &&
reqSerial === undefined &&
reqSearch == undefined &&
reqMP3 === undefined &&
reqImgURL === undefined &&
reqPara === undefined &&
reqUtubeSearch === undefined &&
reqBritannica === undefined)
) {
if (reqText.includes("download movie")) {
google("intitle:index.of? mkv " + reqMovie, function(err, response) {
if (err) console.error(err);
let link = response.links[0];
return res.json({
fulfillmentText: "You can download this movie from : " + link.href,
source: "info"
});
});
}
}
}
//Scrapping Google Search For Download TV Serial's
if (reqSerial !== undefined) {
if (
reqText !== "download serial" ||
(reqSerial !== "" &&
reqVideo === undefined &&
reqPDF === undefined &&
reqMovie === undefined &&
reqSearch == undefined &&
reqMP3 === undefined &&
reqImgURL === undefined &&
reqPara === undefined &&
reqUtubeSearch === undefined &&
reqBritannica === undefined)
) {
if (reqText.includes("download serial")) {
google("intitle:index.of? mkv " + reqSerial, function(err, response) {
if (err) console.error(err);
let link = response.links[0];
return res.json({
fulfillmentText:
"You can download this tv serial from : " + link.href,
source: "info"
});
});
}
}
}
//Scrapping Google Search For Download MP3
if (reqMP3 !== undefined) {
if (
reqText !== "download mp3" ||
(reqMP3 !== "" &&
reqVideo === undefined &&
reqPDF === undefined &&
reqSerial === undefined &&
reqSearch == undefined &&
reqMovie === undefined &&
reqImgURL === undefined &&
reqPara === undefined &&
reqUtubeSearch === undefined &&
reqBritannica === undefined)
) {
if (reqText.includes("download mp3")) {
google("intitle:index.of? mp3 " + reqMP3, function(err, response) {
if (err) console.error(err);
let link = response.links[0];
return res.json({
fulfillmentText: "You can download this mp3 from : " + link.href,
source: "info"
});
});
}
}
}
//Scrapping Google Search For Download PDF
if (reqPDF !== undefined) {
if (
reqText !== "download pdf" ||
(reqPDF !== "" &&
reqVideo === undefined &&
reqMP3 === undefined &&
reqSerial === undefined &&
reqSearch == undefined &&
reqMovie === undefined &&
reqImgURL === undefined &&
reqPara === undefined &&
reqUtubeSearch === undefined &&
reqBritannica === undefined)
) {
if (reqText.includes("download pdf")) {
google("intitle:index.of? pdf " + reqPDF, function(err, response) {
if (err) console.error(err);
let link = response.links[0];
return res.json({
fulfillmentText: "You can download this pdf from : " + link.href,
source: "info"
});
});
}
}
}
//Scrapping Google Search For Download Video Song's
if (reqVideo !== undefined) {
if (
reqText !== "download video" ||
(reqVideo !== "" &&
reqPDF === undefined &&
reqMP3 === undefined &&
reqSerial === undefined &&
reqSearch == undefined &&
reqMovie === undefined &&
reqImgURL === undefined &&
reqPara === undefined &&
reqUtubeSearch === undefined &&
reqBritannica === undefined)
) {
if (reqText.includes("download video")) {
google("intitle:index.of? mp4 " + reqVideo, function(err, response) {
if (err) console.error(err);
let link = response.links[0];
return res.json({
fulfillmentText: "You can download this video from : " + link.href,
source: "info"
});
});
}
}
}
});
//Server Listen Port
app.listen(process.env.PORT, err => {
if (err) console.log("err");
else console.log("Server is running");
});