-
Notifications
You must be signed in to change notification settings - Fork 0
/
bot.js
77 lines (64 loc) · 2.56 KB
/
bot.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
const config = require('config');
const logger = require('./utils/logger');
const Discord = require("discord.js");
const client = new Discord.Client();
const bot = (function () {
return {
/**
* Encuentra códigos hexadecimales de color dentro de una cadena
*
* @param {String} msg la cadena donde se buscarán los códigos hexadecimales
* @returns {Array} array con los códigos colores hexadecimales encontrados (sin el #)
*/
findHexColors: msg => {
const candidateHexCodes = msg.match(/#([a-f0-9]+)\b/gi);
const hexCodes = candidateHexCodes.filter(code => [4, 5, 7, 9].includes(code.length));
if (hexCodes === null) {
return [];
}
return hexCodes.map(code => {
if (code.length <= 5) {
// Formato simplificado, hay que duplicar cada dígito
return code.split('').map(function (hex) {
return hex == '#' ? hex : hex + hex;
}).join('');
}
return code;
});
},
/**
* Envía un mensaje al servidor
*
* @param {Array} hexColors array con colores hexadecimales sin el hash (#)
* @param {Discord.Message.Channel} channel el channel al que se enviará el mensaje
*/
sendHexColors: (hexColors, channel) => {
if (hexColors === null) {
return;
}
hexColors.forEach(color => {
const digits = color.substr(1, 6);
const transparency = color.substr(7, 2);
let embed = new Discord.MessageEmbed()
.setTitle(`${color}`)
.setURL(`https://www.colorhexa.com/${digits}`)
.setImage(`https://singlecolorimage.com/get/${digits}/200x32`)
.setColor(digits);
if (transparency !== '') {
const transparencyPercentage = parseInt(transparency, 16) / 255;
embed.setDescription(`Transparencia: ${transparencyPercentage}`);
}
// Envía el color al canal en formato embed
channel.send(embed);
logger.info(`enviado: ${color}`);
});
}
}
}());
// Eventos del cliente
client.on("message", function (msg) {
if (msg.author.bot) return;
bot.sendHexColors(bot.findHexColors(msg.content), msg.channel);
});
// Inicia el cliente
client.login(config.get("bot.token"));