ai/src/modules/follow/index.ts
syuilo fd50dc790f ✌️
2024-01-21 13:27:02 +09:00

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;
}
}
}