EventEmitter如果条件为真,则忽略下一个侦听器

时间:2016-07-17 07:10:34

标签: node.js asynchronous eventemitter

我正在创建一个使用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忽略所有其他侦听器?

1 个答案:

答案 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()