Update Instance.ts

This commit is contained in:
Nofated 2023-01-18 21:19:09 +08:00 committed by GitHub
parent a135e8cf66
commit 1ba085f0fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 13 deletions

View File

@ -36,7 +36,6 @@ export default class Instance {
private readonly log: Logger;
private tgBot: Telegram;
private tgUser: Telegram;
private oicq: OicqClient;
private _ownerChat: TelegramChat;
@ -111,9 +110,8 @@ export default class Instance {
this._ownerChat = await this.tgBot.getChat(this.owner);
}
else {
this.log.debug('正在登录 TG UserBot');
this.tgUser = await Telegram.connect(this._userSessionId);
this.log.info('TG UserBot 登录完成');
this.log.debug('正在登录 TG UserBot /// skip by Nofated095');
this.log.info('TG UserBot 登录完成 /// skip by Nofated095');
this._ownerChat = await this.tgBot.getChat(this.owner);
this.log.debug('正在登录 OICQ');
this.oicq = await OicqClient.create({
@ -140,7 +138,7 @@ export default class Instance {
});
this.log.info('OICQ 登录完成');
}
this.statusReportController = new StatusReportController(this, this.tgBot, this.tgUser, this.oicq);
this.statusReportController = new StatusReportController(this, this.tgBot, this.oicq);
this.forwardPairs = await ForwardPairs.load(this.id, this.oicq, this.tgBot);
this.setupCommands()
.then(() => this.log.info('命令设置成功'))
@ -150,13 +148,13 @@ export default class Instance {
}
this.oicqErrorNotifyController = new OicqErrorNotifyController(this, this.oicq);
this.requestController = new RequestController(this, this.tgBot, this.oicq);
this.configController = new ConfigController(this, this.tgBot, this.tgUser, this.oicq);
this.deleteMessageController = new DeleteMessageController(this, this.tgBot, this.tgUser, this.oicq);
this.inChatCommandsController = new InChatCommandsController(this, this.tgBot, this.tgUser, this.oicq);
this.configController = new ConfigController(this, this.tgBot, this.oicq);
this.deleteMessageController = new DeleteMessageController(this, this.tgBot, this.oicq);
this.inChatCommandsController = new InChatCommandsController(this, this.tgBot, this.oicq);
if (this.workMode === 'group') {
this.hugController = new HugController(this, this.tgBot, this.oicq);
}
this.forwardController = new ForwardController(this, this.tgBot, this.tgUser, this.oicq);
this.forwardController = new ForwardController(this, this.tgBot, this.oicq);
if (this.workMode === 'group') {
// 希望那个 /q 也被转发
this.quotLyController = new QuotLyController(this, this.tgBot, this.oicq);
@ -243,10 +241,6 @@ export default class Instance {
return this.tgBot.me;
}
get userMe() {
return this.tgUser.me;
}
get ownerChat() {
return this._ownerChat;
}