7c4f180540
There's duplication in the user and session endpoints that all return the same shaped user model data. The new helper should keep them consistent when new properties need to be exposed.
30 lines
799 B
JavaScript
30 lines
799 B
JavaScript
import passport from 'passport';
|
|
|
|
import { userResponse } from './user.controller';
|
|
|
|
export function createSession(req, res, next) {
|
|
passport.authenticate('local', (err, user) => { // eslint-disable-line consistent-return
|
|
if (err) { return next(err); }
|
|
if (!user) {
|
|
return res.status(401).send({ message: 'Invalid username or password.' });
|
|
}
|
|
|
|
req.logIn(user, (innerErr) => {
|
|
if (innerErr) { return next(innerErr); }
|
|
return res.json(userResponse(req.user));
|
|
});
|
|
})(req, res, next);
|
|
}
|
|
|
|
export function getSession(req, res) {
|
|
if (req.user) {
|
|
return res.json(userResponse(req.user));
|
|
}
|
|
return res.status(404).send({ message: 'Session does not exist' });
|
|
}
|
|
|
|
export function destroySession(req, res) {
|
|
req.logout();
|
|
res.json({ success: true });
|
|
}
|
|
|