2017-04-18 07:42:26 +00:00
|
|
|
"use strict";
|
|
|
|
|
2017-04-28 21:40:26 +00:00
|
|
|
const colorCodeMap = [
|
|
|
|
["00", "White"],
|
|
|
|
["01", "Black"],
|
|
|
|
["02", "Blue"],
|
|
|
|
["03", "Green"],
|
|
|
|
["04", "Red"],
|
|
|
|
["05", "Brown"],
|
|
|
|
["06", "Magenta"],
|
|
|
|
["07", "Orange"],
|
|
|
|
["08", "Yellow"],
|
|
|
|
["09", "Light Green"],
|
|
|
|
["10", "Cyan"],
|
|
|
|
["11", "Light Cyan"],
|
|
|
|
["12", "Light Blue"],
|
|
|
|
["13", "Pink"],
|
|
|
|
["14", "Grey"],
|
|
|
|
["15", "Light Grey"],
|
|
|
|
];
|
|
|
|
|
2017-04-18 07:42:26 +00:00
|
|
|
const commands = [
|
2017-10-12 00:50:06 +00:00
|
|
|
"/as",
|
2017-04-18 07:42:26 +00:00
|
|
|
"/away",
|
|
|
|
"/back",
|
2017-04-24 10:40:53 +00:00
|
|
|
"/ban",
|
2017-04-18 07:42:26 +00:00
|
|
|
"/banlist",
|
2017-10-12 00:50:06 +00:00
|
|
|
"/bs",
|
2017-04-18 07:42:26 +00:00
|
|
|
"/close",
|
2017-07-07 04:18:37 +00:00
|
|
|
"/collapse",
|
2017-04-18 07:42:26 +00:00
|
|
|
"/connect",
|
2017-10-12 00:50:06 +00:00
|
|
|
"/cs",
|
2017-04-28 21:45:18 +00:00
|
|
|
"/ctcp",
|
2017-08-23 23:08:44 +00:00
|
|
|
"/cycle",
|
2017-04-18 07:42:26 +00:00
|
|
|
"/deop",
|
|
|
|
"/devoice",
|
|
|
|
"/disconnect",
|
2017-07-07 04:18:37 +00:00
|
|
|
"/expand",
|
2017-10-12 00:50:06 +00:00
|
|
|
"/ho",
|
|
|
|
"/hs",
|
2017-04-18 07:42:26 +00:00
|
|
|
"/invite",
|
|
|
|
"/join",
|
|
|
|
"/kick",
|
|
|
|
"/leave",
|
2017-09-04 22:33:33 +00:00
|
|
|
"/list",
|
2017-04-18 07:42:26 +00:00
|
|
|
"/me",
|
|
|
|
"/mode",
|
2017-10-12 00:50:06 +00:00
|
|
|
"/ms",
|
2017-04-18 07:42:26 +00:00
|
|
|
"/msg",
|
|
|
|
"/nick",
|
|
|
|
"/notice",
|
2017-10-12 00:50:06 +00:00
|
|
|
"/ns",
|
2017-04-18 07:42:26 +00:00
|
|
|
"/op",
|
2017-10-12 00:50:06 +00:00
|
|
|
"/os",
|
2017-04-18 07:42:26 +00:00
|
|
|
"/part",
|
|
|
|
"/query",
|
|
|
|
"/quit",
|
|
|
|
"/raw",
|
2017-08-23 23:08:44 +00:00
|
|
|
"/rejoin",
|
2017-10-12 00:50:06 +00:00
|
|
|
"/rs",
|
2017-04-18 07:42:26 +00:00
|
|
|
"/say",
|
|
|
|
"/send",
|
|
|
|
"/server",
|
|
|
|
"/slap",
|
|
|
|
"/topic",
|
2017-04-24 10:40:53 +00:00
|
|
|
"/unban",
|
2017-04-18 07:42:26 +00:00
|
|
|
"/voice",
|
2017-11-15 06:35:15 +00:00
|
|
|
"/whois",
|
2017-04-18 07:42:26 +00:00
|
|
|
];
|
|
|
|
|
2017-06-22 20:08:36 +00:00
|
|
|
const condensedTypes = [
|
2017-07-10 16:01:20 +00:00
|
|
|
"away",
|
|
|
|
"back",
|
2017-09-19 15:22:50 +00:00
|
|
|
"chghost",
|
2017-06-22 20:08:36 +00:00
|
|
|
"join",
|
|
|
|
"part",
|
|
|
|
"quit",
|
2017-08-13 19:09:32 +00:00
|
|
|
"nick",
|
|
|
|
"kick",
|
|
|
|
"mode",
|
2017-06-22 20:08:36 +00:00
|
|
|
];
|
|
|
|
|
2017-05-06 18:44:57 +00:00
|
|
|
const timeFormats = {
|
|
|
|
msgDefault: "HH:mm",
|
2017-11-15 06:35:15 +00:00
|
|
|
msgWithSeconds: "HH:mm:ss",
|
2017-05-06 18:44:57 +00:00
|
|
|
};
|
|
|
|
|
2017-04-18 07:42:26 +00:00
|
|
|
module.exports = {
|
2017-04-28 21:40:26 +00:00
|
|
|
colorCodeMap: colorCodeMap,
|
2017-06-22 20:08:36 +00:00
|
|
|
commands: commands,
|
|
|
|
condensedTypes: condensedTypes,
|
2017-08-19 18:47:23 +00:00
|
|
|
condensedTypesQuery: "." + condensedTypes.join(", ."),
|
2017-11-15 06:35:15 +00:00
|
|
|
timeFormats: timeFormats,
|
2017-04-18 07:42:26 +00:00
|
|
|
};
|