jormungandr-bite/src/server/api/common/signin.ts

25 lines
686 B
TypeScript
Raw Normal View History

2018-04-12 15:06:18 -06:00
import * as Koa from 'koa';
2018-04-01 22:15:53 -06:00
import config from '../../../config';
2018-04-12 15:06:18 -06:00
import { ILocalUser } from '../../../models/user';
2017-11-22 21:25:33 -07:00
2018-04-12 20:44:39 -06:00
export default function(ctx: Koa.Context, user: ILocalUser, redirect = false) {
2017-11-22 21:25:33 -07:00
const expires = 1000 * 60 * 60 * 24 * 365; // One Year
2018-04-12 15:06:18 -06:00
ctx.cookies.set('i', user.token, {
2017-11-22 21:25:33 -07:00
path: '/',
2018-04-12 15:06:18 -06:00
domain: config.hostname,
2018-10-16 14:54:31 -06:00
// SEE: https://github.com/koajs/koa/issues/974
// When using a SSL proxy it should be configured to add the "X-Forwarded-Proto: https" header
secure: config.url.startsWith('https'),
2017-11-22 21:25:33 -07:00
httpOnly: false,
expires: new Date(Date.now() + expires),
maxAge: expires
});
if (redirect) {
2018-04-12 15:06:18 -06:00
ctx.redirect(config.url);
2018-04-12 20:44:39 -06:00
} else {
ctx.status = 204;
2017-11-22 21:25:33 -07:00
}
}