spee.ch/helpers/serveHelpers.js

25 lines
825 B
JavaScript
Raw Normal View History

const logger = require('winston');
2017-11-21 21:53:43 +01:00
// const { postToStats, sendGoogleAnalytics } = require('../controllers/statsController.js');
module.exports = {
2017-11-28 00:57:20 +01:00
serveFile ({ filePath, fileType }, claimId, name, res) {
2017-11-21 21:53:43 +01:00
logger.verbose(`serving ${name}#${claimId}`);
// set response options
2017-11-28 00:57:20 +01:00
const headerContentType = fileType || 'image/jpeg';
2017-11-21 21:53:43 +01:00
const options = {
headers: {
'X-Content-Type-Options': 'nosniff',
2017-11-21 21:53:43 +01:00
'Content-Type' : headerContentType,
},
};
// send the file
res.status(200).sendFile(filePath, options);
},
2017-11-27 23:35:29 +01:00
showFile (claimInfo, shortId, res) {
2017-12-07 00:15:21 +01:00
res.status(200).render('show', { layout: 'show', claimInfo, shortId });
},
2017-11-27 23:35:29 +01:00
showFileLite (claimInfo, shortId, res) {
2017-12-07 00:15:21 +01:00
res.status(200).render('showLite', { layout: 'showlite', claimInfo, shortId });
},
};