2017-06-20 04:34:34 +02:00
|
|
|
const logger = require('winston');
|
2017-06-30 07:26:29 +02:00
|
|
|
const { postToStats } = require('../../controllers/statsController.js');
|
2017-06-20 04:34:34 +02:00
|
|
|
|
2017-06-03 09:41:02 +02:00
|
|
|
module.exports = {
|
2017-06-28 07:41:48 +02:00
|
|
|
handleRequestError (action, originalUrl, ip, error, res) {
|
2017-07-04 09:02:47 +02:00
|
|
|
logger.error('Request Error >>', error.message);
|
2017-07-01 00:31:23 +02:00
|
|
|
if (error.response) {
|
2017-06-29 23:34:23 +02:00
|
|
|
postToStats(action, originalUrl, ip, error.response.data.error.messsage);
|
2017-06-19 18:37:35 +02:00
|
|
|
res.status(error.response.status).send(error.response.data.error.message);
|
2017-06-17 22:51:30 +02:00
|
|
|
} else if (error.code === 'ECONNREFUSED') {
|
2017-06-29 23:34:23 +02:00
|
|
|
postToStats(action, originalUrl, ip, 'Connection refused. The daemon may not be running.');
|
2017-06-27 02:16:46 +02:00
|
|
|
res.status(503).send('Connection refused. The daemon may not be running.');
|
2017-06-17 22:51:30 +02:00
|
|
|
} else {
|
2017-06-29 23:34:23 +02:00
|
|
|
postToStats(action, originalUrl, ip, error);
|
2017-07-04 09:02:47 +02:00
|
|
|
res.status(400).send(error.message);
|
2017-06-17 22:51:30 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
handlePublishError (error) {
|
|
|
|
if (error.code === 'ECONNREFUSED') {
|
2017-06-28 06:32:05 +02:00
|
|
|
logger.error('Publish Error:', 'Connection refused. The daemon may not be running.');
|
2017-06-19 18:37:35 +02:00
|
|
|
return 'Connection refused. The daemon may not be running.';
|
2017-06-17 22:51:30 +02:00
|
|
|
} else if (error.response.data.error) {
|
2017-06-28 06:32:05 +02:00
|
|
|
logger.error('Publish Error:', error.response.data.error);
|
|
|
|
return error.response.data.error.message;
|
2017-06-17 22:51:30 +02:00
|
|
|
} else {
|
2017-07-04 17:55:40 +02:00
|
|
|
logger.error('Unhandled Publish Error:', error.message);
|
2017-06-19 18:37:35 +02:00
|
|
|
return error;
|
2017-06-17 22:51:30 +02:00
|
|
|
}
|
|
|
|
},
|
2017-06-19 18:37:35 +02:00
|
|
|
};
|