110 lines
3.9 KiB
JavaScript
110 lines
3.9 KiB
JavaScript
const errorHandlers = require('../helpers/errorHandlers.js');
|
|
const db = require('../models');
|
|
const { postToStats, getStatsSummary, getTrendingClaims, getRecentClaims } = require('../controllers/statsController.js');
|
|
const passport = require('passport');
|
|
// const { deAuthenticate } = require('../auth/authentication.js');
|
|
|
|
module.exports = (app) => {
|
|
// route for auth
|
|
app.post('/signup', passport.authenticate('local-signup'), (req, res) => {
|
|
console.log('redirecting to user channel');
|
|
// If this function gets called, authentication was successful.
|
|
// `req.user` contains the authenticated user.
|
|
res.redirect('/@' + req.user.channelName);
|
|
});
|
|
app.post('/login', passport.authenticate('local-login'), (req, res) => {
|
|
console.log('redirecting to user channel');
|
|
// If this function gets called, authentication was successful.
|
|
// `req.user` contains the authenticated user.
|
|
res.redirect('/@' + req.user.channelName);
|
|
});
|
|
|
|
// route to display login page
|
|
app.get('/login', (req, res) => {
|
|
res.status(200).render('login');
|
|
});
|
|
app.get('/signup', (req, res) => {
|
|
res.status(200).render('signup');
|
|
});
|
|
// route to display login page
|
|
// app.get('/users/:name', isAuthenticated, (req, res) => {
|
|
// res.status(200).render('profile');
|
|
// });
|
|
// app.get('/logout', deAuthenticate, (req, res) => {
|
|
// res.status(200).render('/');
|
|
// });
|
|
|
|
// route to show 'about' page for spee.ch
|
|
app.get('/about', (req, res) => {
|
|
// get and render the content
|
|
res.status(200).render('about');
|
|
});
|
|
// route to display a list of the trending images
|
|
app.get('/trending', (req, res) => {
|
|
res.status(301).redirect('/popular');
|
|
});
|
|
app.get('/popular', (req, res) => {
|
|
const startDate = new Date();
|
|
startDate.setDate(startDate.getDate() - 1);
|
|
const dateTime = startDate.toISOString().slice(0, 19).replace('T', ' ');
|
|
getTrendingClaims(dateTime)
|
|
.then(result => {
|
|
// logger.debug(result);
|
|
res.status(200).render('trending', { trendingAssets: result });
|
|
})
|
|
.catch(error => {
|
|
errorHandlers.handleRequestError(error, res);
|
|
});
|
|
});
|
|
// route to display a list of the trending images
|
|
app.get('/new', (req, res) => {
|
|
getRecentClaims()
|
|
.then(result => {
|
|
// logger.debug(result);
|
|
res.status(200).render('new', { newClaims: 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 send embedable video player (for twitter)
|
|
app.get('/embed/:claimId/:name', ({ params }, res) => {
|
|
const claimId = params.claimId;
|
|
const name = params.name;
|
|
console.log('claimId ==', claimId);
|
|
console.log('name ==', name);
|
|
// get and render the content
|
|
res.status(200).render('embed', { layout: 'embed', claimId, name });
|
|
});
|
|
// route to display all free public claims at a given name
|
|
app.get('/:name/all', ({ ip, originalUrl, params }, res) => {
|
|
// get and render the content
|
|
db
|
|
.getAllFreeClaims(params.name)
|
|
.then(orderedFreeClaims => {
|
|
if (!orderedFreeClaims) {
|
|
res.status(307).render('noClaims');
|
|
return;
|
|
}
|
|
postToStats('show', originalUrl, ip, null, null, 'success');
|
|
res.status(200).render('allClaims', { claims: orderedFreeClaims });
|
|
})
|
|
.catch(error => {
|
|
errorHandlers.handleRequestError('show', originalUrl, ip, error, res);
|
|
});
|
|
});
|
|
};
|