-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
125 lines (83 loc) · 2.84 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
// const {
// Client,
// Attachment
// } = require('discord.js');
// const bot = new Client();
// const token = process.env.BOT_TOKEN;
// const prefix = '-';
// // image packages (for random image generator)
// const cheerio = require('cheerio');
// const request = require('request');
// bot.on("message", message => {
// // random image generator
// let args = message.content.substring(prefix.length).split(" ");
// switch (args[0]) {
// case 'image':
// image(message);
// break;
// }
// });
// // searches "brain images" on the DogPile search engine
// function image(message){
// var options = {
// url: "http://results.dogpile.com/serp?qc=images&q=" + "brain",
// method: "GET",
// headers: {
// Accept: "text/html",
// "User-Agent": "Chrome"
// }
// };
// request(options, function(error, response, responseBody){
// // error checking, terminates search request
// if(error){
// return;
// }
// $ = cheerio.load(responseBody);
// var links = $(".image a.link");
// var urls = new Array(links.length).fill(0).map((v, i) => links.eq(i).attr("href"));
// // logs each randomly searched url for brain image
// console.log(urls);
// // error checking, terminates search request if invalid url
// if (!urls.length){
// return;
// }
// message.channel.send(urls[Math.floor(Math.random() * urls.length)] + " " + message.guild.members.random());
// });
// }
// bot.login(process.env.BOT_TOKEN);
// // client.on("message", (message) => {
// // let args = message.content.substring(prefix.length).split(" ");
// // let command = args.shift(); //separates and removes command from args
// // switch (command) {
// // case "image":
// // image(message, args[0]);
// // break;
// // }
// // });
// // function image(message) {
// // //'query' now represents 'args[0]'
// // var options = {
// // url: "http://results.dogpile.com/serp?qc=images&q=" + "brain",
// // method: "GET",
// // headers: {
// // Accept: "text/html",
// // "User-Agent": "Chrome",
// // },
// // };
// // request(options, function (error, response, responseBody) {
// // if (error) {
// // return;
// // }
// // $ = cheerio.load(responseBody);
// // var links = $(".image a.link");
// // var urls = new Array(links.length).fill(0).map((v, i) => links.eq(i).attr("href"));
// // console.log(urls);
// // if (!urls.length) {
// // return;
// // }
// // // Send result
// // message.channel.send(urls[Math.floor(Math.random() * urls.length)]);
// // });
// // }
// test123
// test123456