2018-04-12 21:06:18 +00:00
|
|
|
import * as Koa from 'koa';
|
|
|
|
|
2018-04-02 04:15:53 +00:00
|
|
|
import config from '../../../config';
|
2019-04-07 12:50:36 +00:00
|
|
|
import { ILocalUser } from '../../../models/entities/user';
|
2017-11-23 04:25:33 +00:00
|
|
|
|
2019-01-22 12:42:05 +00:00
|
|
|
export default function(ctx: Koa.BaseContext, user: ILocalUser, redirect = false) {
|
2017-11-23 04:25:33 +00:00
|
|
|
if (redirect) {
|
2018-11-27 20:27:34 +00:00
|
|
|
//#region Cookie
|
|
|
|
const expires = 1000 * 60 * 60 * 24 * 365; // One Year
|
|
|
|
ctx.cookies.set('i', user.token, {
|
|
|
|
path: '/',
|
|
|
|
domain: config.hostname,
|
|
|
|
// 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'),
|
|
|
|
httpOnly: false,
|
|
|
|
expires: new Date(Date.now() + expires),
|
|
|
|
maxAge: expires
|
|
|
|
});
|
|
|
|
//#endregion
|
|
|
|
|
2018-04-12 21:06:18 +00:00
|
|
|
ctx.redirect(config.url);
|
2018-04-13 02:44:39 +00:00
|
|
|
} else {
|
2018-11-28 07:19:02 +00:00
|
|
|
ctx.body = { i: user.token };
|
|
|
|
ctx.status = 200;
|
2017-11-23 04:25:33 +00:00
|
|
|
}
|
|
|
|
}
|