我正在创建一个使用EventEmitter3
包的Telegram bot。该软件包使用Bot.prependListener( 'message', ( msg ) =>
if ( CHECK msg.from.id FOR AUTHORIZED USERS == false ) {
// IGNORE ALL OTHER LISTENERS
}
} );
Bot.onText( /\/start/i, ( msg ) => {
Bot.sendMessage( msg.from.id, `You're an authorized user for sure!` );
} );
来发送事件。
我有一个在所有其他侦听器之前执行的侦听器:
public var arrayChoice : Int?
如何让EventEmitter忽略所有其他侦听器?
答案 0 :(得分:0)
您需要具有真正中间件支持的东西。 例如:Telegraf
const Telegraf = require('telegraf')
const app = new Telegraf(process.env.BOT_TOKEN)
app.use((ctx, next) => {
if(AUTHORIZED_USERS.includes(ctx.from.id)){
return next()
}
})
app.command('/start', (ctx) => ctx.reply('You`re an authorized user for sure!'))
app.startPolling()