2017-06-20 04:34:34 +02:00
|
|
|
const logger = require('winston');
|
2017-08-03 02:13:02 +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-09-14 18:35:58 +02:00
|
|
|
logger.error('Request Error:', error);
|
2017-07-01 00:31:23 +02:00
|
|
|
if (error.response) {
|
2017-07-13 00:30:31 +02:00
|
|
|
postToStats(action, originalUrl, ip, null, null, 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-07-13 00:30:31 +02:00
|
|
|
postToStats(action, originalUrl, ip, null, null, '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-07-06 03:26:33 +02:00
|
|
|
} else if (error.message) {
|
2017-07-13 00:30:31 +02:00
|
|
|
postToStats(action, originalUrl, ip, null, null, error);
|
2017-07-04 09:02:47 +02:00
|
|
|
res.status(400).send(error.message);
|
2017-07-06 03:26:33 +02:00
|
|
|
} else {
|
2017-07-13 00:30:31 +02:00
|
|
|
postToStats(action, originalUrl, ip, null, null, error);
|
2017-07-06 03:26:33 +02:00
|
|
|
res.status(400).send(error);
|
2017-06-17 22:51:30 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
handlePublishError (error) {
|
2017-09-14 18:35:58 +02:00
|
|
|
logger.error('Publish Error:', error);
|
2017-06-17 22:51:30 +02:00
|
|
|
if (error.code === 'ECONNREFUSED') {
|
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
|
|
|
return error.response.data.error.message;
|
2017-06-17 22:51:30 +02:00
|
|
|
} else {
|
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
|
|
|
};
|