mirror of
https://github.com/syuilo/ai.git
synced 2025-03-25 21:12:56 +00:00
34 lines
707 B
TypeScript
34 lines
707 B
TypeScript
import { bindThis } from '@/decorators.js';
|
|
import Module from '@/module.js';
|
|
import Message from '@/message.js';
|
|
|
|
export default class extends Module {
|
|
public readonly name = 'follow';
|
|
|
|
@bindThis
|
|
public install() {
|
|
return {
|
|
mentionHook: this.mentionHook
|
|
};
|
|
}
|
|
|
|
@bindThis
|
|
private async mentionHook(msg: Message) {
|
|
if (msg.text && msg.includes(['フォロー', 'フォロバ', 'follow me'])) {
|
|
if (!msg.user.isFollowing) {
|
|
this.ai.api('following/create', {
|
|
userId: msg.userId,
|
|
});
|
|
return {
|
|
reaction: msg.friend.love >= 0 ? 'like' : null
|
|
};
|
|
} else {
|
|
return {
|
|
reaction: msg.friend.love >= 0 ? 'hmm' : null
|
|
};
|
|
}
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
}
|