ai/src/modules/timer/index.ts
2018-08-27 19:04:09 +09:00

50 lines
1.4 KiB
TypeScript

import from '../../ai';
import IModule from '../../module';
import MessageLike from '../../message-like';
import serifs from '../../serifs';
export default class TimerModule implements IModule {
public name = 'timer';
private ai: ;
public install = (ai: ) => {
this.ai = ai;
}
public onMention = (msg: MessageLike) => {
const secondsQuery = (msg.text || '').match(/([0-9]+)秒/);
const minutesQuery = (msg.text || '').match(/([0-9]+)分/);
const hoursQuery = (msg.text || '').match(/([0-9]+)時間/);
const seconds = secondsQuery ? parseInt(secondsQuery[1], 10) : 0;
const minutes = minutesQuery ? parseInt(minutesQuery[1], 10) : 0;
const hours = hoursQuery ? parseInt(hoursQuery[1], 10) : 0;
if (secondsQuery || minutesQuery || hoursQuery) {
if ((seconds + minutes + hours) == 0) {
msg.reply(serifs.timer.invalid);
return true;
} else {
msg.reply(serifs.timer.set);
const time =
(1000 * seconds) +
(1000 * 60 * minutes) +
(1000 * 60 * 60 * hours);
const str = `${hours ? hoursQuery[0] : ''}${minutes ? minutesQuery[0] : ''}${seconds ? secondsQuery[0] : ''}`;
setTimeout(() => {
const name = msg.friend.name;
this.ai.sendMessage(msg.userId, {
text: name ? serifs.timer.notifyWithName.replace('{time}', str).replace('{name}', name) : serifs.timer.notify.replace('{time}', str)
});
}, time);
return true;
}
} else {
return false;
}
}
}