-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
374 lines (365 loc) · 15.3 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
const Discord = require("discord.js");
require("dotenv/config");
const mqtt = require("mqtt");
const axios = require("axios");
var sifu;
var ip = "cheese";
const sifuID = "542937555251888143";
const broker = mqtt.connect("mqtt:192.168.68.105");
const client = new Discord.Client();
const messed_with_lights = new Set();
const in_session = new Set();
const spam_use = new Set();
client.login(process.env.DISCORD_TOKEN);
client.once("ready", () => {
console.log("re-di");
client.users.fetch(sifuID).then((user) => (sifu = user));
});
axios
.get("https://discovery.meethue.com/")
.then((res) => (ip = res.data[0].internalipaddress))
.catch((err) => console.error(err));
can_stuff_happen = true;
client.on("message", (msg) => {
message = msg.content.toLocaleLowerCase();
user_id = msg.author.id;
if (msg.author.id == "775086819775610881" && message.includes("»")) {
// SRV thingie
user_id = msg.content.split(" » ")[0];
message = msg.content.split(" » ")[1];
}
date = new Date();
sleepy_time =
sifu.presence.status == "offline" &&
(date.getHours() < 6 || date.getHours() > 22);
if (message.startsWith("l?help")) {
var helpEmbed = new Discord.MessageEmbed()
.setColor("#32a885")
.setTitle("LiteBot Functions")
.setAuthor(msg.author.username)
.setDescription(
"For some reason everyone thinks it is I, no it is l: l for light"
)
.addFields(
{
name: "l?<num> on",
value: "Turns on the light to the last state of the light.",
inline: true,
},
{
name: "l?<num> off",
value: "Turns off the light",
inline: true,
},
{
name: "l?<num> normal",
value: "Turns on the light to normal mode",
inline: true,
},
{
name: "l?<num> disco",
value: "Turns on disco mode.",
inline: true,
},
{
name: "l?<num> bright <val>",
value: "Sets the brightness of the light to val",
inline: true,
},
{
name: "l?<num> color <H> <S> <B>",
value: "Sets the color of the light. This is in HSB.",
},
{
name: "l?pingpong <H> <S> <B>",
value: "Will alternate between HSB is optional.",
inline: true,
},
{ name: "l?github", value: "Gives Github link", inline: true },
{
name: "Secret Codes",
value: "There are secret codes that secret code so secret code.",
inline: true,
},
{
name: "Stuff",
value: "<> is obviously supposed to be omitted lol. and don't use % lol",
}
)
.setFooter("Made you look. kp");
msg.channel.send(helpEmbed);
} else if (
(message.startsWith("p") || message.startsWith("k")) &&
(user_id == "Sanjit1" || user_id == "542937555251888143")
) {
if (message == "p2") {
broker.publish(
"Ecosystem",
'{"device": "hue", "data": {"light": 3, "payload": {"on": true}}}'
);
} else if (message == "p3") {
broker.publish(
"Ecosystem",
'{"device": "hue", "data": {"light": 3, "payload": {"on": false}}}'
);
} else if (message == "p1") {
broker.publish(
"Ecosystem",
'{"device": "hue", "data": {"light": 3, "payload": {"on": true, "hue": 0, "sat": 0, "bri": 254}}}'
);
} else if (message == "k2") {
broker.publish(
"Ecosystem",
'{"device": "hue", "data": {"light": 2, "payload": {"on": true}}}'
);
} else if (message == "k3") {
broker.publish(
"Ecosystem",
'{"device": "hue", "data": {"light": 2, "payload": {"on": false}}}'
);
} else if (message == "k1") {
broker.publish(
"Ecosystem",
'{"device": "hue", "data": {"light": 2, "payload": {"on": true, "hue": 0, "sat": 0, "bri": 254}}}'
);
}
msg.channel.send("k done");
} else if (
message.startsWith("l?killbot ") &&
(user_id == "Sanjit1" || user_id == "542937555251888143")
) {
duration = parseInt(message.split("killbot ")[1]) * 60000;
can_stuff_happen = false;
channel_of_kill = msg.channel;
setTimeout(() => {
can_stuff_happen = true;
channel_of_kill.send(
"<@542937555251888143> Sifu, ppl can now access lites."
);
}, duration);
msg.channel.send(
"k lites killed for " + duration.toString() / 60000 + " mins."
);
} else if (
message.startsWith("l?sleep") &&
(user_id == "Sanjit1" || user_id == "542937555251888143")
) {
can_stuff_happen = false;
channel_of_kill = msg.channel;
channel_of_kill.send("Lites Now locked for some time");
setTimeout(() => {
can_stuff_happen = true;
channel_of_kill.send(
"<@542937555251888143> Sifu, ppl can now access lites."
);
}, 25200000);
} else if (
message.startsWith("l?unkillbot") &&
(user_id == "Sanjit1" || user_id == "542937555251888143")
) {
can_stuff_happen = true;
msg.channel.send("Lites Unkilled.");
} else if (message.startsWith("l?github")) {
msg.channel.send("Amazing stuff");
msg.channel.send("https://github.com/Sanjit1/control-my-lights");
} else if (message.startsWith("l?pain")) {
msg.channel.send(
"https://tenor.com/view/pain-painful-rip-gif-19017159"
);
} else if (
(msg.channel.id == "827062913100939275" ||
(msg.channel.type == "dm" && msg.author.id != sifuID)) &&
msg.content.startsWith("l?")
) {
msg.channel.send("LiteBot wont work here. Verify your identity first");
} else if (message.startsWith("l?")) {
if ((can_stuff_happen && !sleepy_time) || user_id == sifuID) {
var allow_switch = false;
if (user_id == sifuID) {
allow_switch = true;
} else {
if (messed_with_lights.has(user_id)) {
msg.channel.send(
"You gotta wait rip. 1 hour cooldown since last session."
);
} else if (in_session.has(user_id)) {
if (spam_use.has(user_id)) {
msg.channel.send("Wait for like a second lol");
} else {
user_id_cuz_bs = user_id;
spam_use.add(user_id_cuz_bs);
allow_switch = true;
setTimeout(() => {
spam_use.delete(user_id_cuz_bs);
}, 2000);
}
} else {
user_id_cuz_bs = user_id;
in_session.add(user_id_cuz_bs);
allow_switch = true;
spam_use.add(user_id_cuz_bs);
setTimeout(() => {
spam_use.delete(user_id_cuz_bs);
}, 2000);
setTimeout(() => {
in_session.delete(user_id_cuz_bs);
messed_with_lights.add(user_id_cuz_bs);
setTimeout(() => {
messed_with_lights.delete(user_id_cuz_bs);
}, 3600000);
}, 120000);
}
}
if (allow_switch) {
if (
message.startsWith("l?pingpong") ||
message.startsWith("l?ping pong")
) {
message = message + " ";
hsb = message.split("pong ")[1].split(" ");
if (hsb.length == 4) {
broker.publish(
"Ecosystem",
'{"device": "hue", "data": {"light": 2, "payload": {"on": true, "hue": ' +
Math.round((parseInt(hsb[0]) * 65535) / 360) +
', "sat": ' +
Math.round(parseInt(hsb[1]) * 2.54) +
', "bri": ' +
Math.round(parseInt(hsb[2]) * 2.54) +
"}}}"
);
broker.publish(
"Ecosystem",
'{"device": "hue", "data": {"light": 3, "payload": {"on": true, "hue": ' +
Math.round((parseInt(hsb[0]) * 65535) / 360) +
', "sat": ' +
Math.round(parseInt(hsb[1]) * 2.54) +
', "bri": ' +
Math.round(parseInt(hsb[2]) * 2.54) +
"}}}"
);
}
msg.channel.send("Ping pong ");
var x = 0;
interval = setInterval(() => {
broker.publish(
"Ecosystem",
'{"device": "hue", "data": {"light": 3, "payload": {"on": true}}}'
);
broker.publish(
"Ecosystem",
'{"device": "hue", "data": {"light": 2, "payload": {"on": false}}}'
);
setTimeout(() => {
broker.publish(
"Ecosystem",
'{"device": "hue", "data": {"light": 2, "payload": {"on": true}}}'
);
broker.publish(
"Ecosystem",
'{"device": "hue", "data": {"light": 3, "payload": {"on": false}}}'
);
}, 1111);
if (++x == 5) {
clearInterval(interval);
msg.channel.send(":sadge: ping pong over");
}
}, 2222);
} else {
liteToFlick = 4 - parseInt(message.charAt(2));
if (
isNaN(liteToFlick) &&
liteToFlick > 0 &&
liteToFlick < 3
) {
liteToFlick++;
}
func =
message.charAt(3) == " "
? message.substring(4)
: message.substring(3);
if (func == "on") {
broker.publish(
"Ecosystem",
'{"device": "hue", "data": {"light": ' +
liteToFlick +
', "payload": {"on": true}}}'
);
msg.channel.send("Ight. lol. turned light on");
} else if (func == "off") {
broker.publish(
"Ecosystem",
'{"device": "hue", "data": {"light": ' +
liteToFlick +
', "payload": {"on": false}}}'
);
msg.channel.send("Ight. lol. turned light off");
} else if (func == "normal") {
broker.publish(
"Ecosystem",
'{"device": "hue", "data": {"light": ' +
liteToFlick +
', "payload": {"on": true, "hue": 0, "sat": 0, "bri": 254}}}'
);
msg.channel.send("Ight. lol. made lite normal");
} else if (func == "disco") {
h = 0;
msg.channel.send("Ight. lol. I am a disco dancer");
interval = setInterval(() => {
s = Math.floor(Math.random() * 30) + 220;
broker.publish(
"Ecosystem",
'{"device": "hue", "data": {"light": ' +
liteToFlick +
', "payload": {"on": true, "hue": ' +
(h % 65535) +
', "sat": ' +
s +
', "bri": 254}}}'
);
if (h > 174759) {
clearInterval(interval);
msg.channel.send(":sadge: disco over");
}
h += 20000;
}, 888);
} else if (func.startsWith("color")) {
hsb = message.split("color ")[1].split(" ");
if (hsb.length == 3) {
broker.publish(
"Ecosystem",
'{"device": "hue", "data": {"light": ' +
liteToFlick +
', "payload": {"on": true, "hue": ' +
Math.round(
(parseInt(hsb[0]) * 65535) / 360
) +
', "sat": ' +
Math.round(parseInt(hsb[1]) * 2.54) +
', "bri": ' +
Math.round(parseInt(hsb[2]) * 2.54) +
"}}}"
);
msg.channel.send(
"Ight. lol. Changed colour with a u."
);
}
} else if (func.startsWith("bright")) {
b = message.split("bright ")[1];
broker.publish(
"Ecosystem",
'{"device": "hue", "data": {"light": ' +
liteToFlick +
', "payload": {"on": true, "bri": ' +
Math.round(parseInt(b) * 2.54) +
"}}}"
);
msg.channel.send("Ight. lol. Changed the brightness");
}
}
}
}
}
// 1&2? stuff
//else if ()
});