-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
393 lines (362 loc) · 13.1 KB
/
server.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
const http = require('http');
const express = require('express');
const app = express();
require('dotenv').config();
function checkHttps(req, res, next){
// protocol check, if http, redirect to https
if(req.get('X-Forwarded-Proto').indexOf("https")!=-1){
return next()
} else {
res.redirect('https://' + req.hostname + req.url);
}
}
app.all('*', checkHttps);
app.use(express.static('public'));
app.get("/", function (request, response) {
response.sendFile(__dirname + '/views/index.html');
});
app.get("/", (request, response) => {
response.sendStatus(200);
});
app.listen(process.env.PORT);
setInterval(() => {
http.get(`http://${process.env.PROJECT_DOMAIN}.glitch.me/`);
}, 280000);
// http://disboard-bot.glitch.me
// BOT
const Discord = require('discord.js');
//const richEmbed = require('discord.js');
const client = new Discord.Client();
const guild = new Discord.Guild();
const config = require("./config.json");
let prefix = config.color;
client.on('ready', () => {
console.log('Tet iniciado');
/*client.user.setPresence({
status: "online",
game: {
name: "『 Disboard 』",
type: "PLAYING" // WATCHING
}
});*/
client.user.setActivity('『 Disboard 』');
});
client.on('message', async message => {
if (message.author.bot) return;
if (message.content.indexOf(prefix) !== 0) return;
const args = message.content.slice(prefix.length).trim().split(/ +/g);
const command = args.shift().toLowerCase();
if (command === "ping" && args.length <= 0) {
let ping = Math.floor(message.client.ping);
message.channel.send(':ping_pong: Latencia: `' + ping + ' ms.`');
} else if (command === "tag" && args.length <= 0) {
message.channel.send({
embed: {
color: config.color,
description: "- Tag: **`『 』`**\n- Tag secundario: _(espacio en blanco)_\n- Tag terciario: **DB** (solo en caso de no poder escribir el primario)\n- Nombre: **Disboard**"
}
});
} else if (command === "tabla" && args.length <= 0) {
message.channel.send({
embed: {
color: config.color,
description: "- Tag: **`『 』`**\n- Generador: [https://hlorenzi.github.io/mk8d_ocr/table.html](https://hlorenzi.github.io/mk8d_ocr/table.html)\n_Ejemplo:_",
"image": {
"url": "https://cdn.discordapp.com/attachments/487343815615578124/503632252807413762/Screen_Shot_2018-10-21_at_1.14.33_PM.png"
}
}
});
} else if (command === "disboard" && args.length <= 0) {
let imanity = message.guild.members.filter(member => {
return member.roles.find("name", "Imanity");
}).map(member => {
return member.user.username;
})
let seirens = message.guild.members.filter(member => {
return member.roles.find("name", "Seirens");
}).map(member => {
return member.user.username;
})
let werebeast = message.guild.members.filter(member => {
return member.roles.find("name", "Werebeast");
}).map(member => {
return member.user.username;
})
let lunamana = message.guild.members.filter(member => {
return member.roles.find("name", "Lunamana");
}).map(member => {
return member.user.username;
})
message.channel.send({
embed: {
"color": config.color,
"fields": [{
"name": "**Jugadores de Mario Kart**",
"value": ":busts_in_silhouette: - " + (imanity.length + seirens.length + werebeast.length),
},
{
"name": "Miembros - " + imanity.length,
"value": imanity.join("\n")+"\n-",
"inline": true
},
{
"name": "Trials - " + seirens.length,
"value": seirens.join("\n")+"\n-",
"inline": true
},
{
"name": "Allys - " + werebeast.length,
"value": werebeast.join("\n")+"\n-",
"inline": true
}/*,
{
"name": "**Jugadores de Smash**",
"value": ":busts_in_silhouette: - " + (lunamana.length),
},
{
"name": "Miembros - " + lunamana.length,
"value": lunamana.join("\n")+"\n-",
"inline": true
}*/,
{
"name": "\n**Enlaces**",
"value": ":link:",
},
{
"name": "Web",
"value": "https://disboard.team",
"inline": true
},
{
"name": "Twitter",
"value": "https://twitter.com/DisboardTeam",
"inline": true
}
]
}
});
} else if (command === "wars" && args.length <= 0) {
let date = new Date();
message.channel.send({
embed: {
"color": config.color,
"title": "Wars disputadas: pendiente",
"thumbnail": {
"url": message.guild.iconURL
},
"fields": [{
"name": "Victorias",
"value": "_pendiente_",
"inline": true
},
{
"name": "Derrotas",
"value": "_pendiente_",
"inline": true
},
{
"name": "Empates",
"value": "_pendiente_",
"inline": true
},
{
"name": "% de victorias",
"value": "_pendiente_",
"inline": true
}
]
}
});
} else if (command === "info" && args.length <= 0) {
let joinedTimestamp = message.guild.joinedTimestamp;
let date = new Date(joinedTimestamp);
message.channel.send({
embed: {
color: config.color,
description: "Miembro desde: _pendiente_", // + date.getDay() + "/" + date.getMonth() + "/" + date.getFullYear().toString().substr(2, 2) + "\n\n_Próximamente: estadísticas del jugador_",
"thumbnail": {
"url": message.author.avatarURL
},
"author": {
"name": message.author.username
},
"fields": [{
"name": "Wars jugadas",
"value": "_pendiente_",
"inline": true
},
{
"name": "Media pts.",
"value": "_pendiente_",
"inline": true
},
{
"name": "Ratio V/D",
"value": "_pendiente_",
"inline": true
}
]
}
});
} else if (command === "info" && args.length == 1) {
let usuario = message.mentions.members.first();
if (usuario) {
let joinedTimestamp = message.guild.joinedTimestamp;
let date = new Date(joinedTimestamp);
//date.getDay() + "/" + date.getMonth() + "/" + date.getFullYear().toString().substr(2, 2)
message.channel.send({
embed: {
color: config.color,
description: "Miembro desde: _pendiente_\n\n_Próximamente: estadísticas del jugador_",
"thumbnail": {
"url": usuario.avatarURL
},
"author": {
"name": usuario.username
},
"fields": [{
"name": "Wars jugadas",
"value": "_pendiente_",
"inline": true
},
{
"name": "Media pts.",
"value": "_pendiente_",
"inline": true
},
{
"name": "Ratio V/D",
"value": "_pendiente_",
"inline": true
}
]
}
});
}
} else if (command === "r" && args.length <= 0) {
let gifs = [
"https://i.pinimg.com/originals/86/bb/66/86bb66cb4f524bef1f7bc1e45733cfe7.gif",
"https://media.giphy.com/media/MJDBXJ2PtgkEg/giphy.gif",
"https://media.giphy.com/media/CO9pHUyGzEoH6/giphy.gif",
"https://media.giphy.com/media/FGbEffWs9la1O/giphy.gif",
"https://media.giphy.com/media/QcT4JVFDn4WEU/giphy.gif",
"https://media.giphy.com/media/kXFpgStKE2Ypi/giphy.gif",
"https://media0.giphy.com/media/CphBpuaoIjwk0/giphy.gif",
"https://media.giphy.com/media/fGepS5ZgnsMNi/giphy.gif",
"https://media.giphy.com/media/MOTwD54jp6d9u/giphy.gif",
"https://media.giphy.com/media/nf0TvJDBOTfjy/giphy.gif",
"https://media.giphy.com/media/gHMpcRSayJu8w/giphy.gif",
"https://media.giphy.com/media/SaiULvpd3yQow/giphy.gif",
"https://media.giphy.com/media/fQF0FrBcSHKsU/giphy.gif",
"https://media.giphy.com/media/2SRXHjVfsXAYw/giphy.gif"
];
let videos = [
"https://media.giphy.com/media/Iv9a7T9pn38sw/giphy-hd.mp4"
]
let rand = Math.floor(Math.random() * gifs.length);
message.channel.send({
embed: {
color: config.color,
"image": {
"url": gifs[rand]
}
}
});
} else if (command === "aschente" && args.length == 1) {
let web_extra = "Al formar parte de Disboard, usamos todos tus resultados de wars para hacer estadísticas que puedes consultar a través de este bot `+help` o a través de la web https://disboard.team _[próximamente]_";
let usuario = message.mentions.members.first();
if (usuario) {
if(usuario.roles.find("name", "Imanity")) {
message.channel.send({
embed: {
color: config.color,
description: "¡Bienvenid@ al clan de **Disboard** " + usuario + "!\n\nPor favor, tómate tu tiempo para leerte los <#487350168853676053> (normas) e <#488091660115247105> para entender un poco mejor el servidor.\n\nSi quieres, puedes presentarte en <#487380356874633217> para que te conozcamos todos un poco mejor.\n\n¡Esperamos que te sientas a gusto!"
}
});
message.channel.send({
embed: {
color: 14161240,
description: web_extra
}
});
} else if(usuario.roles.find("name", "Seirens")) {
message.channel.send({
embed: {
color: config.color,
description: "¡Bienvenid@ al clan de **Disboard** " + usuario + "!\n\nPor favor, tómate tu tiempo para leerte los <#487350168853676053> (normas) e <#488091660115247105> para entender un poco mejor el servidor.\n\nSi quieres, puedes presentarte en <#487380356874633217> para que te conozcamos todos un poco mejor :)\n\nTras jugar algunas wars junto al equipo, los representantes pasarán a ponerte rol de miembro de clan.\n\n¡Esperamos que te sientas a gusto!"
}
});
message.channel.send({
embed: {
color: 14161240,
description: web_extra
}
});
} else if(usuario.roles.find("name", "Werebeast")) {
message.channel.send({
embed: {
color: config.color,
description: "¡Bienvenid@ al clan de **Disboard** " + usuario + "!\n\nPor favor, tómate tu tiempo para leerte los <#487350168853676053> (normas) e <#488091660115247105> para entender un poco mejor el servidor.\n\n¡Esperamos que te sientas a gusto! Pásatelo bien y sobretodo, respeta las reglas y la forma de ser de este clan."
}
});
message.channel.send({
embed: {
color: 14161240,
description: web_extra
}
});
} else {
message.channel.send({
embed: {
color: config.color,
description: "¡Bienvenid@ al clan de **Disboard** " + usuario + "!\n\nPor favor, tómate tu tiempo para leerte los <#487350168853676053> (normas) e <#488091660115247105> para entender un poco mejor el servidor.\n\nNo olvides presentarte en <#487380356874633217> para que te conozcamos todos un poco mejor :)"
}
});
message.channel.send({
embed: {
color: 14161240,
description: web_extra
}
});
}
}
} else if (command === "snl" && args.length <= 0) {
let miembros = ["Aid3n", "Alozy", "eletrn02", "Javier", "kelin", "LaPulgaXD", "Little", "Quake", "Roger", "STpile", "Caizer", "YiYo"]
let lista = "";
for (let index = 0; index < miembros.length; ++index) {
lista += miembros[index] + "\n"
}
message.channel.send({
embed: {
color: config.color,
"fields": [{
"name": "Registrados",
"value": miembros.length
},
{
"name": "Pueden jugar",
"value": lista
}
]
}
});
}
else if (command === "help" && args.length <= 0) {
message.channel.send({
embed: {
color: config.color,
description: "**+tag** --------------> Referencias al clan\n**+tabla** ------------> Información para hacer correctamente las tablas\n**+info** -------------> Información del jugador\n**+info @usuario** -> Información del jugador\n**+wars** ------------> Informe de wars\n**+disboard** -------> Datos del clan\n**+invi** -------------> Enlace de invitación\n**+r** ----------------> Gifs random de NGNL\n**+help** ------------> Lista de comandos disponibles"
}
});
} else if (command === "invi" && args.length <= 0) {
message.channel.send("https://discord.gg/YmFtq7m");
} else {
/*message.channel.send({
embed: {
color: config.color,
description: "**Tet no reconoce tu comando**."
}
});*/
}
});
client.login(process.env.TOKEN);