ai/src/message-like.ts
2018-09-02 23:40:03 +09:00

78 lines
1.7 KiB
TypeScript

import from './ai';
import Friend from './friend';
import { User } from './misskey/user';
import includes from './utils/includes';
import or from './utils/or';
const delay = require('timeout-as-promise');
export default class MessageLike {
private ai: ;
private messageOrNote: any;
public isMessage: boolean;
public get id(): string {
return this.messageOrNote.id;
}
public get user(): User {
return this.messageOrNote.user;
}
public get userId(): string {
return this.messageOrNote.userId;
}
public get text(): string {
return this.messageOrNote.text;
}
public get replyId(): string {
return this.messageOrNote.replyId;
}
public friend: Friend;
constructor(ai: , messageOrNote: any, isMessage: boolean) {
this.ai = ai;
this.messageOrNote = messageOrNote;
this.isMessage = isMessage;
this.friend = new Friend(ai, { user: this.user });
// メッセージなどに付いているユーザー情報は省略されている場合があるので完全なユーザー情報を持ってくる
this.ai.api('users/show', {
userId: this.userId
}).then(user => {
this.friend.updateUser(user);
});
}
public reply = async (text: string, cw?: string) => {
if (text == null) return;
console.log(`sending reply of ${this.id} ...`);
await delay(2000);
if (this.isMessage) {
return await this.ai.sendMessage(this.messageOrNote.userId, {
text: text
});
} else {
return await this.ai.post({
replyId: this.messageOrNote.id,
text: text,
cw: cw
});
}
}
public includes = (words: string[]): boolean => {
return includes(this.text, words);
}
public or = (words: (string | RegExp)[]): boolean => {
return or(this.text, words);
}
}