-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommand.js
52 lines (43 loc) · 1.21 KB
/
command.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
// Description:
// コマンドー
// Commands:
// command add <key> <value> - コマンドを追加
// command rm <key> - コマンドを削除
// command list - コマンド一覧
'use strict';
const NAME = 'command';
module.exports = robot => {
robot.brain.autoSave = true;
robot.hear(/.+/, msg => {
if (msg.message.user.name === 'cpsbot') {
return;
}
const obj = robot.brain.get(NAME) || {};
const { text } = msg.message;
if (obj[text]) {
msg.send(obj[text]);
}
});
robot.hear(/^(command|コマンド) add (.+?) (.+)/, msg => {
const obj = robot.brain.get(NAME) || {};
const command = msg.match[2];
const message = msg.match[3];
obj[command] = message;
robot.brain.set('command', obj);
});
robot.hear(/^(command|コマンド) rm (.+?)/, msg => {
const obj = robot.brain.get(NAME) || {};
const command = msg.match[2];
if (obj[command]) {
delete obj[command];
}
robot.brain.set('command', obj);
});
robot.hear(/^(command|コマンド) list$/i, msg => {
const obj = robot.brain.get(NAME) || {};
const str = Object.keys(obj)
.map(key => `${key} ${obj[key]}`)
.join('\n');
msg.send(str);
});
};