-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcommon.js
118 lines (107 loc) · 2.55 KB
/
common.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
exports.isAdmin = (chat, sender) => {
// unguis1@naver.com
//const adminId = { low: -1000804380, high: 28493638, unsigned: false };
//{ low: -2074546204, high: 24875177, unsigned: false }
const adminId = [ '122379246648225764', '106838073917632484' ];
const senderId = sender || chat.sender.id;
return new Promise((resolve, reject) => {
if ( adminId.includes(senderId.toString()) ) {
resolve();
return;
}
let roomAdminId = {};
if ( chat.channel ) {
chat.channel.client.openChatManager.getLinkOwner(chat.channel.linkId)
.then(chatUser => {
roomAdminId = chatUser.id;
if (roomAdminId.toString() === senderId.toString() ) {
resolve();
} else {
reject(new Error('not match admin id'));
}
})
.catch(reject);
} else {
reject();
}
});
}
exports.isCmd = (e) => {
const sig = "!";
let msg = e.text;
if ( msg.indexOf(sig) === 0 ) {
msg = msg.replace(sig, "");
e.message = msg;
e.cmd = msg.split(' ')[0];
e.isCmd = true;
e.content = msg.replace(e.cmd, "").trim();
return true;
}
return false;
};
exports.runCmd = (cmd, ...e) => {
let str = "";
switch ( typeof cmd ) {
case "string": {
str = cmd;
} break;
case "function": {
str = cmd(...e);
} break;
case "object": {
if ( Array.isArray(cmd) ) {
let result = Math.floor(Math.random() * cmd.length);
switch ( typeof cmd[result] ) {
case "string": {
str = cmd[result];
} break;
case "function": {
str = cmd[result](...e);
}
}
}
} break;
}
return str;
};
exports.sendToAllChannels = (msg) => {
let sender = "sendText";
if ( msg ) {
if ( typeof msg === "string" ) {
sender = "sendText";
} else {
sender = "sendTemplate";
}
} else {
return;
}
for ( channel of global.rooms ) {
channel[sender](msg);
}
};
exports.sendToChannel = (channel, msg) => {
let sender = "sendText";
if ( msg ) {
if ( typeof msg === "string" ) {
sender = "sendText";
} else {
sender = "sendTemplate";
}
} else {
return;
}
for ( ch of global.rooms ) {
if ( ch.id.toString() === channel.id.toString() ) {
channel[sender](msg);
return;
}
}
};
exports.isAcceptCheannel = (channel) => {
for ( ch of global.rooms ) {
if ( ch.id.toString() === channel.id.toString() ) {
return true;
}
}
return false;
};