Sharkey/src/server/api/common/signin.ts

20 lines
444 B
TypeScript
Raw Normal View History

2018-04-02 07:15:53 +03:00
import config from '../../../config';
2017-11-23 06:25:33 +02:00
export default function(res, user, redirect: boolean) {
const expires = 1000 * 60 * 60 * 24 * 365; // One Year
2018-04-07 21:58:11 +03:00
res.cookie('i', user.token, {
2017-11-23 06:25:33 +02:00
path: '/',
2018-03-26 07:21:41 +03:00
domain: `.${config.hostname}`,
2017-11-23 06:25:33 +02:00
secure: config.url.substr(0, 5) === 'https',
httpOnly: false,
expires: new Date(Date.now() + expires),
maxAge: expires
});
if (redirect) {
res.redirect(config.url);
} else {
res.sendStatus(204);
}
}