mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-11 09:03:08 +02:00
20 lines
435 B
TypeScript
20 lines
435 B
TypeScript
|
import config from '../../conf';
|
||
|
|
||
|
export default function(res, user, redirect: boolean) {
|
||
|
const expires = 1000 * 60 * 60 * 24 * 365; // One Year
|
||
|
res.cookie('i', user.token, {
|
||
|
path: '/',
|
||
|
domain: `.${config.host}`,
|
||
|
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);
|
||
|
}
|
||
|
}
|