54 lines
2 KiB
JavaScript
54 lines
2 KiB
JavaScript
const errorHandlers = require('../helpers/errorHandlers.js');
|
|
const getAllFreePublicClaims = require('../helpers/functions/getAllFreePublicClaims.js');
|
|
const { postToStats, getStatsSummary, getTrendingClaims } = require('../controllers/statsController.js');
|
|
|
|
module.exports = (app) => {
|
|
// route to show 'about' page for spee.ch
|
|
app.get('/about', ({ ip, originalUrl }, res) => {
|
|
// get and render the content
|
|
res.status(200).render('about');
|
|
});
|
|
// route to display a list of the trending images
|
|
app.get('/trending', ({ params, headers }, res) => {
|
|
const startDate = new Date();
|
|
startDate.setDate(startDate.getDate() - 1);
|
|
getTrendingClaims(startDate)
|
|
.then(result => {
|
|
// logger.debug(result);
|
|
res.status(200).render('trending', { trendingAssets: result });
|
|
})
|
|
.catch(error => {
|
|
errorHandlers.handleRequestError(error, res);
|
|
});
|
|
});
|
|
// route to show statistics for spee.ch
|
|
app.get('/stats', ({ ip, originalUrl }, res) => {
|
|
// get and render the content
|
|
const startDate = new Date();
|
|
startDate.setDate(startDate.getDate() - 1);
|
|
getStatsSummary(startDate)
|
|
.then(result => {
|
|
postToStats('show', originalUrl, ip, null, null, 'success');
|
|
res.status(200).render('statistics', result);
|
|
})
|
|
.catch(error => {
|
|
errorHandlers.handleRequestError(error, res);
|
|
});
|
|
});
|
|
// route to display all free public claims at a given name
|
|
app.get('/:name/all', ({ ip, originalUrl, params }, res) => {
|
|
// get and render the content
|
|
getAllFreePublicClaims(params.name)
|
|
.then(orderedFreePublicClaims => {
|
|
if (!orderedFreePublicClaims) {
|
|
res.status(307).render('noClaims');
|
|
return;
|
|
}
|
|
postToStats('show', originalUrl, ip, null, null, 'success');
|
|
res.status(200).render('allClaims', { claims: orderedFreePublicClaims });
|
|
})
|
|
.catch(error => {
|
|
errorHandlers.handleRequestError('show', originalUrl, ip, error, res);
|
|
});
|
|
});
|
|
};
|