ai/src/modules/core/index.ts
2018-09-01 19:36:58 +09:00

223 lines
5.5 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import from '../../ai';
import IModule from '../../module';
import MessageLike from '../../message-like';
import serifs from '../../serifs';
import Friend from '../../friend';
import getDate from '../../utils/get-date';
import includes from '../../utils/includes';
function zeroPadding(num: number, length: number): string {
return ('0000000000' + num).slice(-length);
}
const titles = ['さん', 'くん', '君', 'ちゃん', '様', '先生'];
const invalidChars = ['@', '#', '*', ':', '(', '[', ' ', ' '];
export default class CoreModule implements IModule {
public readonly name = 'core';
private ai: ;
public install = (ai: ) => {
this.ai = ai;
this.crawleBirthday();
setInterval(this.crawleBirthday, 1000 * 60 * 3);
}
public onMention = (msg: MessageLike) => {
if (!msg.text) return false;
return this.setName(msg) || this.greet(msg) || this.nadenade(msg) || this.kawaii(msg);
}
/**
* 誕生日のユーザーがいないかチェック(いたら祝う)
*/
private crawleBirthday = () => {
const now = new Date();
const m = now.getMonth();
const d = now.getDate();
// Misskeyの誕生日は 2018-06-16 のような形式
const today = `${zeroPadding(m + 1, 2)}-${d}`;
const birthFriends = this.ai.friends.find({
'user.profile.birthday': { '$regex': new RegExp('-' + today + '$') }
} as any);
birthFriends.forEach(f => {
const friend = new Friend(this.ai, { doc: f });
// 親愛度が3以上必要
if (friend.love < 3) return;
const data = friend.getPerModulesData(this);
if (data.lastBirthdayChecked == today) return;
data.lastBirthdayChecked = today;
friend.setPerModulesData(this, data);
const text = serifs.core.happyBirthday(friend.name);
this.ai.sendMessage(friend.userId, {
text: text
});
});
}
private setName = (msg: MessageLike): boolean => {
if (!msg.text) return false;
if (!msg.text.includes('って呼んで')) return false;
if (msg.text.startsWith('って呼んで')) return false;
// メッセージのみ
if (!msg.isMessage) return true;
if (msg.friend.love < 5) {
msg.reply(serifs.core.requireMoreLove);
return true;
}
const name = msg.text.match(/^(.+?)って呼んで/)[1];
if (name.length > 10) {
msg.reply(serifs.core.tooLong);
return true;
}
if (invalidChars.some(c => name.includes(c))) {
msg.reply(serifs.core.invalidName);
return true;
}
const withSan = titles.some(t => name.endsWith(t));
if (withSan) {
msg.friend.updateName(name);
msg.reply(serifs.core.setNameOk(name));
} else {
msg.reply(serifs.core.san).then(reply => {
this.ai.subscribeReply(this, msg.userId, msg.isMessage, msg.isMessage ? msg.userId : reply.id, {
name: name
});
});
}
return true;
}
private greet = (msg: MessageLike): boolean => {
const incLove = () => {
//#region 1日に1回だけ親愛度を上げる
const today = getDate();
const data = msg.friend.getPerModulesData(this);
if (data.lastGreetedAt == today) return;
data.lastGreetedAt = today;
msg.friend.setPerModulesData(this, data);
msg.friend.incLove();
//#endregion
};
if (includes(msg.text, ['こんにちは'])) {
msg.reply(serifs.core.hello(msg.friend.name));
incLove();
return true;
}
if (includes(msg.text, ['こんばんは'])) {
msg.reply(serifs.core.helloNight(msg.friend.name));
incLove();
return true;
}
if (includes(msg.text, ['おはよ', 'お早う'])) {
msg.reply(serifs.core.goodMorning(msg.friend.name));
incLove();
return true;
}
if (includes(msg.text, ['おやすみ', 'お休み'])) {
msg.reply(serifs.core.goodNight(msg.friend.name));
incLove();
return true;
}
if (includes(msg.text, ['ぽんこつ'])) {
msg.friend.decLove();
return true;
}
return false;
}
private nadenade = (msg: MessageLike): boolean => {
if (!includes(msg.text, ['なでなで'])) return false;
// メッセージのみ
if (!msg.isMessage) return true;
//#region 1日に1回だけ親愛度を上げる(嫌われてない場合のみ)
if (msg.friend.love >= 0) {
const today = getDate();
const data = msg.friend.getPerModulesData(this);
if (data.lastNadenadeAt != today) {
data.lastNadenadeAt = today;
msg.friend.setPerModulesData(this, data);
msg.friend.incLove();
}
}
//#endregion
msg.reply(
msg.friend.love >= 10 ? serifs.core.nadenade3 :
msg.friend.love >= 5 ? serifs.core.nadenade2 :
msg.friend.love <= -15 ? serifs.core.nadenadeIya4 :
msg.friend.love <= -10 ? serifs.core.nadenadeIya3 :
msg.friend.love <= -5 ? serifs.core.nadenadeIya2 :
msg.friend.love <= -1 ? serifs.core.nadenadeIya1 :
serifs.core.nadenade1
);
return true;
}
private kawaii = (msg: MessageLike): boolean => {
if (!includes(msg.text, ['かわいい', '可愛い'])) return false;
msg.reply(
msg.friend.love >= 5 ? serifs.core.kawaii2 :
msg.friend.love <= -3 ? serifs.core.kawaiiIya1 :
serifs.core.kawaii1);
return true;
}
public onReplyThisModule = (msg: MessageLike, data: any) => {
if (msg.text == null) return;
const done = () => {
msg.reply(serifs.core.setNameOk(msg.friend.name));
this.ai.unsubscribeReply(this, msg.userId);
};
if (msg.text.includes('はい')) {
msg.friend.updateName(data.name + 'さん');
done();
} else if (msg.text.includes('いいえ')) {
msg.friend.updateName(data.name);
done();
} else {
msg.reply(serifs.core.yesOrNo).then(reply => {
this.ai.subscribeReply(this, msg.userId, msg.isMessage, reply.id, data);
});
}
}
}