Try / Catch不会阻止崩溃

时间:2017-01-03 12:43:38

标签: javascript heroku telegram telegram-bot telegraf

我正在使用telegraf bot framework编写一个非常简单的电报机器人。 到目前为止,它使用.hears.on方法回复了一些简单的命令,到目前为止一切正常。

现在我实现了另一个等待字符串.hears的{​​{1}}方法。一旦它“听到”此字符串,就应该Miez包含cat-api个网址。根据cat-api的URL在每次调用时都会提供一个随机的cat-gif。到目前为止我的代码:

.replyWithDocument

因此,您可以看到我将const Telegraf = require('telegraf') const app = new Telegraf('<MY_TOKEN>') // Connect/Express.js integration const express = require('express') const expressApp = express() expressApp.set('port', (process.env.PORT || 5000)); app.command('start', (ctx) => { console.log('start', ctx.from) ctx.reply('Welcome!') }) app.hears('Hi', (ctx) => ctx.reply('Hallo!')) app.hears('Marco', (ctx) => ctx.reply('Polo')) app.on('sticker', (ctx) => ctx.reply('❤')) app.hears('Miez',(ctx) => { try{ return ctx.replyWithDocument({ url: 'http://thecatapi.com/api/images/get?format=src&type=gif', filename: 'cat.gif' }) }catch(error){ return ctx.reply("Miau"); } }) 包装在try / catch块中。我这样做是因为给定的url并不总是提供gif。有时您只会收到.replyWithDocument消息。我在Heroku上托管机器人,这里是相应错误的日志:

Server not found

抛出之后,机器人停止在Heroku上工作一段时间,然后在15分钟后再次恢复,我想它会在一段时间不活动后重新启动。

好吧,在底线,我不介意有时会忘记网址调用。我不明白的是为什么我的try / catch-block没有捕捉到这种行为。如果我对日志的解释是正确的。

编辑:可能的原因出现在我脑海中,也许Failed to process updates. { FetchError: request to http://30.media.tumblr.com/tumblr_lu65p0QXgW1r4xjo2o1_r1_500.gif failed, reason: getaddrinfo ENOTFOUND 30.media.tumblr.com 30.media.tumblr.com:80 at ClientRequest.<anonymous> (/app/node_modules/telegraf/node_modules/node-fetch/index.js:133:11) at emitOne (events.js:96:13) at ClientRequest.emit (events.js:188:7) at Socket.socketErrorListener (_http_client.js:310:9) at emitOne (events.js:96:13) at Socket.emit (events.js:188:7) at connectErrorNT (net.js:1022:8) at _combinedTickCallback (internal/process/next_tick.js:74:11) at process._tickCallback (internal/process/next_tick.js:98:9) message: 'request to http://30.media.tumblr.com/tumblr_lu65p0QXgW1r4xjo2o1_r1_500.gif failed, reason: getaddrinfo ENOTFOUND 30.media.tumblr.com 30.media.tumblr.com:80', name: 'FetchError', errno: 'ENOTFOUND', type: 'system', code: 'ENOTFOUND' } 是异步调用。所以HTTP请求是成功的,尝试也是如此。但是一旦响应为.replyWithDocument,方法调用仍然失败。如果这可能是原因,那么如何处理呢?

1 个答案:

答案 0 :(得分:4)

您需要使用Telegraf自定义错误处理方法!。

  

默认情况下,Telegraf会将所有错误打印到stderr并重新抛出错误。   要执行自定义错误处理逻辑,请使用以下代码段:

const app = new Telegraf(process.env.BOT_TOKEN)
app.catch((err) => {
  console.log('Ooops', err)
})

尝试使用上面的代码来捕获“ENOTFOUND”错误。

来源:http://telegraf.js.org/introduction.html#error-handling