ai/src/modules/follow/index.ts
L̷O̷N̷D̷O̷N̷少林 fe6d17cdb0
index.ts
2025-01-21 10:53:38 -05:00

34 lines
700 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', 'Follow back', '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;
}
}
}