ai/src/message.ts
2024-03-24 21:41:28 +09:00

119 lines
2.6 KiB
TypeScript

import { bindThis } from '@/decorators.js';
import chalk from 'chalk';
import from '@/ai.js';
import Friend from '@/friend.js';
import type { User } from '@/misskey/user.js';
import includes from '@/utils/includes.js';
import or from '@/utils/or.js';
import config from '@/config.js';
import { sleep } from '@/utils/sleep.js';
import { Note } from '@/misskey/note.js';
export default class Message {
private ai: ;
private note: any;
public get id(): string {
return this.note.id;
}
public get user(): User {
return this.note.user;
}
public get userId(): string {
return this.note.userId;
}
public get text(): string {
return this.note.text;
}
public get quoteId(): string | null {
return this.note.renoteId;
}
public get visibility(): string {
return this.note.visibility;
}
/**
* メンション部分を除いたテキスト本文
*/
public get extractedText(): string {
const host = new URL(config.host).host.replace(/\./g, '\\.');
return this.text
.replace(new RegExp(`^@${this.ai.account.username}@${host}\\s`, 'i'), '')
.replace(new RegExp(`^@${this.ai.account.username}\\s`, 'i'), '')
.trim();
}
public get replyId(): string {
return this.note.replyId;
}
public friend: Friend;
constructor(ai: , note: any) {
this.ai = ai;
this.note = note;
this.friend = new Friend(ai, { user: this.user });
// メッセージなどに付いているユーザー情報は省略されている場合があるので完全なユーザー情報を持ってくる
this.ai.api<User>('users/show', {
userId: this.userId
}).then(user => {
this.friend.updateUser(user);
});
}
public async reply(text: string, opts?: {
file?: any;
cw?: string;
renote?: string;
immediate?: boolean;
}): Promise<Note>;
public async reply(text: string | null, opts?: {
file?: any;
cw?: string;
renote?: string;
immediate?: boolean;
}): Promise<void>;
@bindThis
public async reply(text: string | null, opts?: {
file?: any;
cw?: string;
renote?: string;
immediate?: boolean;
}): Promise<Note | void> {
if (text == null) return;
this.ai.log(`>>> Sending reply to ${chalk.underline(this.id)}`);
if (!opts?.immediate) {
await sleep(2000);
}
return await this.ai.post({
replyId: this.note.id,
text: text,
fileIds: opts?.file ? [opts?.file.id] : undefined,
cw: opts?.cw,
renoteId: opts?.renote
});
}
@bindThis
public includes(words: string[]): boolean {
return includes(this.text, words);
}
@bindThis
public or(words: (string | RegExp)[]): boolean {
return or(this.text, words);
}
}