-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.js
226 lines (205 loc) · 9.37 KB
/
plugin.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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
var array = require('lodash/array');
var Promise = require('bluebird');
var format = require('util').format;
var path = require("path");
var moment = require("moment");
var parseDuration = require('parse-duration');
var errors = require('./lib/errors');
var _ = require('lodash');
var TennuTell = {
requiresRoles: ['dbcore'],
configDefaults: {
"tell": {
"maxAtOnce": 10,
"floodDelay": 1200
},
},
init: function(client, imports) {
const knex = imports.dbcore.knex;
var dbTellPromise = knex.migrate.latest({
tableName: 'tennu_tell_knex_migrations',
directory: path.join(__dirname, 'migrations')
}).then(function() {
return require('./lib/tell')(knex, client);
});
const helps = require("./helps.json")
var tellConfig = client.config("tell");
function emitTellRecursively(IRCMessage, response, type) {
if (type === 'nonquery') {
client.say(IRCMessage.channel, response);
}
if (type === 'query') {
client.say(IRCMessage.nickname, response);
}
}
function recurse(IRCMessage, messages, type) {
emitTellRecursively(IRCMessage, messages.shift(), type);
if (messages.length !== 0) {
setTimeout(function() {
recurse(IRCMessage, messages, type)
}, tellConfig.floodDelay);
}
}
function processResponses(IRCMessage, responses) {
if (responses.nonquery) {
setTimeout(function() {
recurse(IRCMessage, responses.nonquery.message, 'nonquery')
}, tellConfig.floodDelay);
}
if (responses.query) {
setTimeout(function() {
recurse(IRCMessage, responses.query.message, 'query')
}, tellConfig.floodDelay);
}
};
return {
handlers: {
"privmsg": function(IRCMessage) {
// !delaytells command should abort tell emitter
if (/^!delaytells?/.test(IRCMessage.message)) {
return;
}
// !skiptells command should abort tell emitter
if (/^!skiptells?/.test(IRCMessage.message)) {
return;
}
dbTellPromise.then(function(tell) {
tell.emit(IRCMessage.nickname).then(function(responses) {
processResponses(IRCMessage, responses);
}).catch(function(err) {
if (err.type !== 'tell.notells') {
client._logger.error(err);
}
});
});
},
"!tell": function(IRCMessage) {
return Promise.try(function() {
// Validate input
if (IRCMessage.args.length < 2) {
throw new Error(helps.tell);
}
if (IRCMessage.args[0].toLowerCase().indexOf(client.nickname().toLowerCase()) !== -1) {
throw new Error('You may not record a tell for the bot.');
}
var targetUsers = array.uniq(IRCMessage.args[0].split(','));
if (targetUsers.length > tellConfig.maxAtOnce) {
throw new Error(format('You can not store more than %s tells at once.', tellConfig.maxAtOnce));
}
if (targetUsers.indexOf('') !== -1 || targetUsers.indexOf(' ') !== -1) {
throw new Error('Target NickName must not be null or empty.');
}
// Save and notice.
return dbTellPromise.then(function(tell) {
var message = IRCMessage.args.slice(1, IRCMessage.args.length).join(' ');
return tell.save(IRCMessage.nickname, targetUsers, IRCMessage.isQuery, message).then(function(savedTells) {
return Promise.map(savedTells, function(savedTell) {
return savedTell.ToNick;
}).then(function(nicks) {
var isPlural = '';
if (nicks.length > 1) {
isPlural = 's';
}
var isPrivate = '';
if (IRCMessage.isQuery) {
isPrivate = 'private ';
}
return {
intent: 'notice',
query: true,
message: format('Saved %stell%s for: %s.', isPrivate, isPlural, nicks.join(', '))
};
});
});
});
}).catch(function(err) {
return {
intent: 'notice',
query: true,
message: err
};
});
},
'!tellrefresh !reloadtells': function() {
return dbTellPromise.then(function(tell) {
return tell.refresh().then(function(tells) {
tell.unreadTells = tells;
tell.pendingTells = [];
return {
intent: 'notice',
query: true,
message: format('Tell cache reloaded with %s unread tells.', tells.length)
};
});
})
},
'!delaytells': function(IRCMessage) {
// Process the duration
var durationMS = parseDuration(IRCMessage.message);
if (!durationMS) {
durationMS = 1800000
}
var duration = moment.duration(Math.abs(durationMS), 'ms');
var expiresOn = moment().add(duration).toDate();
var humanized = duration.humanize();
return dbTellPromise.then(function(tell) {
return tell.delay(IRCMessage.nickname, expiresOn).then(function(tells) {
return {
intent: 'notice',
query: true,
message: format("Delayed %s tells for %s.", tells.length, humanized)
};
})
.catch(errors.TellNoTellsError, function(err) {
return {
intent: 'notice',
query: true,
message: err
};
});
})
},
'!forcetells': function(IRCMessage) {
return dbTellPromise.then(function(tell) {
return tell.force(IRCMessage.nickname)
.catch(errors.TellNoTellsError, function(err) {
return {
intent: 'notice',
query: true,
message: err
};
});
})
},
'!skiptells': function(IRCMessage) {
return dbTellPromise.then(function(tell) {
return tell.skip(IRCMessage.nickname)
.then(function(removedTells){
return {
intent: 'notice',
query: true,
message: format("Marked %s pending tells for you as read.", removedTells.length)
};
})
.catch(errors.TellNoTellsError, function(err) {
return {
intent: 'notice',
query: true,
message: err
};
});
})
}
},
help: {
"tell": helps.tell,
"tellrefresh": helps.tellrefresh,
"delaytells": helps.delaytells,
"forcetells": helps.forcetells,
"skiptells": helps.skiptells
},
commands: ["tell", "!tellrefresh", "!delaytells", "forcetells"]
}
}
};
module.exports = TennuTell;