xmpp-bot/error.js
2019-10-13 03:38:25 +02:00

24 lines
624 B
JavaScript

/**
* Close handler
*
* Disconnect bot from XMPP server before app closes
*
* @file This files defines the closing handler
* @author nioc
* @since 1.0.0
* @license AGPL-3.0+
*/
module.exports = (logger, xmpp) => {
let nodeCleanup = require('node-cleanup')
nodeCleanup(function (exitCode, signal) {
logger.warn(`Received ${exitCode}/${signal} (application is closing), disconnect from XMPP server`)
try {
xmpp.disconnect()
} catch (error) {
logger.error('Error during XMPP disconnection: ' + error.message)
}
logger.debug('Synchronize logs file')
logger.shutdown()
})
}