2017-06-19 22:10:06 +02:00
|
|
|
const logger = require('winston');
|
2017-07-06 22:37:03 +02:00
|
|
|
const { getClaimByClaimId, getClaimByName } = require('../controllers/serveController.js');
|
2017-06-30 07:26:29 +02:00
|
|
|
const { postToStats, sendGoogleAnalytics } = require('../controllers/statsController.js');
|
2017-07-06 22:37:03 +02:00
|
|
|
const errorHandlers = require('../helpers/libraries/errorHandlers.js');
|
2017-06-30 01:10:06 +02:00
|
|
|
|
2017-06-20 00:25:14 +02:00
|
|
|
function serveFile ({ fileName, fileType, filePath }, res) {
|
2017-06-20 05:22:23 +02:00
|
|
|
logger.info(`serving file ${fileName}`);
|
2017-06-17 22:51:30 +02:00
|
|
|
// set default options
|
2017-07-05 22:51:25 +02:00
|
|
|
let options = {
|
2017-06-17 22:51:30 +02:00
|
|
|
headers: {
|
|
|
|
'X-Content-Type-Options': 'nosniff',
|
2017-06-20 00:25:14 +02:00
|
|
|
'Content-Type' : fileType,
|
2017-06-17 22:51:30 +02:00
|
|
|
},
|
2017-06-19 18:37:35 +02:00
|
|
|
};
|
2017-06-17 22:51:30 +02:00
|
|
|
// adjust default options as needed
|
2017-06-20 00:25:14 +02:00
|
|
|
switch (fileType) {
|
2017-06-17 22:51:30 +02:00
|
|
|
case 'image/jpeg':
|
2017-06-19 18:37:35 +02:00
|
|
|
break;
|
2017-06-17 22:51:30 +02:00
|
|
|
case 'image/gif':
|
2017-06-19 18:37:35 +02:00
|
|
|
break;
|
2017-06-17 22:51:30 +02:00
|
|
|
case 'image/png':
|
2017-06-19 18:37:35 +02:00
|
|
|
break;
|
2017-06-17 22:51:30 +02:00
|
|
|
case 'video/mp4':
|
2017-06-19 18:37:35 +02:00
|
|
|
break;
|
2017-06-17 22:51:30 +02:00
|
|
|
default:
|
2017-07-06 03:26:33 +02:00
|
|
|
logger.warn('sending file with unknown type as .jpeg');
|
2017-06-19 18:37:35 +02:00
|
|
|
options['headers']['Content-Type'] = 'image/jpeg';
|
|
|
|
break;
|
2017-06-17 22:51:30 +02:00
|
|
|
}
|
|
|
|
// send file
|
2017-06-20 00:25:14 +02:00
|
|
|
res.status(200).sendFile(filePath, options);
|
2017-06-14 21:53:55 +02:00
|
|
|
}
|
|
|
|
|
2017-07-05 18:26:22 +02:00
|
|
|
function sendAnalyticsAndLog (headers, ip, originalUrl) {
|
2017-06-30 02:10:14 +02:00
|
|
|
// google analytics
|
2017-07-05 18:26:22 +02:00
|
|
|
sendGoogleAnalytics('serve', headers, ip, originalUrl);
|
2017-06-30 02:10:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = (app) => {
|
2017-07-06 22:37:03 +02:00
|
|
|
// route to serve a specific asset
|
2017-07-05 18:39:32 +02:00
|
|
|
app.get('/:name/:claim_id', ({ headers, ip, originalUrl, params }, res) => {
|
2017-07-05 18:26:22 +02:00
|
|
|
sendAnalyticsAndLog(headers, ip, originalUrl);
|
2017-06-17 22:51:30 +02:00
|
|
|
// begin image-serve processes
|
2017-07-06 22:37:03 +02:00
|
|
|
getClaimByClaimId(params.name, params.claim_id)
|
2017-06-17 22:51:30 +02:00
|
|
|
.then(fileInfo => {
|
2017-07-01 00:31:23 +02:00
|
|
|
// check to make sure a file was found
|
|
|
|
if (!fileInfo) {
|
|
|
|
res.status(307).render('noClaims');
|
|
|
|
return;
|
|
|
|
}
|
2017-07-05 21:23:55 +02:00
|
|
|
// serve the file or the show route
|
|
|
|
const mimetypes = headers['accept'].split(',');
|
|
|
|
if (mimetypes.includes('text/html')) {
|
|
|
|
postToStats('show', originalUrl, ip, 'success');
|
2017-07-06 22:37:03 +02:00
|
|
|
res.status(200).render('showLite', { fileInfo });
|
2017-07-05 21:23:55 +02:00
|
|
|
} else {
|
|
|
|
postToStats('serve', originalUrl, ip, 'success');
|
|
|
|
serveFile(fileInfo, res);
|
|
|
|
}
|
2017-06-17 22:51:30 +02:00
|
|
|
})
|
|
|
|
.catch(error => {
|
2017-06-29 23:48:27 +02:00
|
|
|
errorHandlers.handleRequestError('serve', originalUrl, ip, error, res);
|
2017-06-19 18:37:35 +02:00
|
|
|
});
|
|
|
|
});
|
2017-07-06 22:37:03 +02:00
|
|
|
// route to serve the winning claim
|
2017-07-05 18:26:22 +02:00
|
|
|
app.get('/:name', ({ headers, ip, originalUrl, params }, res) => {
|
|
|
|
sendAnalyticsAndLog(headers, ip, originalUrl);
|
2017-06-17 22:51:30 +02:00
|
|
|
// begin image-serve processes
|
2017-07-06 22:37:03 +02:00
|
|
|
getClaimByName(params.name)
|
2017-06-17 22:51:30 +02:00
|
|
|
.then(fileInfo => {
|
2017-07-01 00:31:23 +02:00
|
|
|
// check to make sure a file was found
|
|
|
|
if (!fileInfo) {
|
|
|
|
res.status(307).render('noClaims');
|
|
|
|
return;
|
|
|
|
}
|
2017-07-05 21:23:55 +02:00
|
|
|
// serve the file or the show route
|
|
|
|
const mimetypes = headers['accept'].split(',');
|
|
|
|
if (mimetypes.includes('text/html')) {
|
|
|
|
postToStats('show', originalUrl, ip, 'success');
|
2017-07-06 22:37:03 +02:00
|
|
|
res.status(200).render('showLite', { fileInfo });
|
2017-07-05 21:23:55 +02:00
|
|
|
} else {
|
|
|
|
postToStats('serve', originalUrl, ip, 'success');
|
|
|
|
serveFile(fileInfo, res);
|
|
|
|
}
|
2017-06-17 22:51:30 +02:00
|
|
|
})
|
|
|
|
.catch(error => {
|
2017-06-29 23:48:27 +02:00
|
|
|
errorHandlers.handleRequestError('serve', originalUrl, ip, error, res);
|
2017-06-19 18:37:35 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|