This repository has been archived by the owner on Jan 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Main.js
130 lines (113 loc) · 3.88 KB
/
Main.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
const Discord = require('discord.js');
const config = require('./botsetting.json');
const blacklist = require('./blacklist');
const client = require('./client').client;
const web = require('./BetweenBot-Web/app');
const moduleloader = require('./moduleloader');
const stringhandler = require('./stringhandler');
const webapp = web.app;
web.run();
function prefixCheckAndIfExistsRun(prefix, msg, func) {
if (msg.content.startsWith(prefix)) func(msg);
}
function blackListCheck(msg) {
if (blacklist.check((msg.author.id))) {
reply(msg, '당신은 이 봇을 쓸 수 없습니다!');
return true;
} else {
return false;
}
}
function bulkCommandCheck(msg, command, aBunchOfFunctions) {
try {
for (func of aBunchOfFunctions) {
if (func(msg, command)) throw "Gotcha!";
}
throw "Not Gotcha!";
} catch (e) {
if (e === "Gotcha!") return true;
else if (e === "Not Gotcha!") return false;
// 이건 예측되지 못한 오류가 발생했다는 의미입니다.
// 이 경우에는 함수의 코드를 수정해야 합니다.
else {
console.log("이건 예측되지 못한 오류가 발생했다는 의미입니다.");
console.log("이 경우에는 함수의 코드를 수정해야 합니다.");
console.log("오류:", e);
throw e;
}
}
}
function ifCommandEqualsExpectedRunFuncTemplate(expected, func) {
// 이걸 직접 사용하지 마세요.
// pushEqualsTemplate 함수를 이용하세요.
return (msg, command) => {
if (command === expected) {
func(msg, command);
return true;
} else {
return false;
}
}
}
function ifCommandStartsWithExpectedRunFuncTemplate(expected, func) {
// 이걸 직접 사용하지 마세요.
// pushStartsWithTemplate 함수를 이용하세요.
return (msg, command) => {
if (command.startsWith(expected)) {
func(msg, command);
return true;
} else {
return false;
}
}
}
function pushFunc(arr, expected, template, func) {
arr.push(template(expected, func));
}
function pushEqualsTemplate(arr, expected, func) {
pushFunc(arr, expected, ifCommandEqualsExpectedRunFuncTemplate, func);
}
function pushStartsWithTemplate(arr, expected, func) {
pushFunc(arr, expected, ifCommandStartsWithExpectedRunFuncTemplate, func);
}
function loadModules() {
for (let dict of moduleloader.modules.values()) {
for (let [name, func] of Object.entries(dict)) {
pushStartsWithTemplate(externalFunctions, name, func);
}
}
}
let externalFunctions = [];
loadModules();
client.on('ready', () => {
console.log('내성봇 실행중!');
});
client.on('message', msg => {
if (msg.author.bot) return;
if (msg.channel.type === "dm") {
msg.channel.send("내성봇은 DM에서는 쓸 수 없습니다!");
return;
}
prefixCheckAndIfExistsRun(config.prefix, msg, (msg) => {
blackListCheck(msg);
let command = stringhandler.cutTextHead(config.prefix, msg.content);
if (!bulkCommandCheck(msg, command, externalFunctions)) {
if(command === "help") {
let helpstr = "```내성봇 커맨드 리스트:\n\n";
let index = 0;
for (let dict of moduleloader.modules.values()) {
for (let [name, func] of Object.entries(dict)) {
index += 1;
helpstr += name;
if(index % 5 == 0) helpstr += "\n";
else helpstr += " ";
}
}
helpstr += "```";
msg.author.send(helpstr);
}
else msg.channel.send("유효한 명령어가 아닙니다!");
}
});
});
client.login(config.token);