2018-04-12 23:06:18 +02:00
|
|
|
import * as Koa from 'koa';
|
2017-01-18 06:19:50 +01:00
|
|
|
import * as bcrypt from 'bcryptjs';
|
2017-12-08 14:57:58 +01:00
|
|
|
import * as speakeasy from 'speakeasy';
|
2019-02-05 06:14:23 +01:00
|
|
|
import { publishMainStream } from '../../../services/stream';
|
2017-11-23 05:25:33 +01:00
|
|
|
import signin from '../common/signin';
|
2018-04-02 06:15:53 +02:00
|
|
|
import config from '../../../config';
|
2019-04-10 08:04:27 +02:00
|
|
|
import { Users, Signins, UserProfiles } from '../../../models';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { ILocalUser } from '../../../models/entities/user';
|
|
|
|
import { genId } from '../../../misc/gen-id';
|
2019-04-12 18:43:22 +02:00
|
|
|
import { ensure } from '../../../prelude/ensure';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2019-01-22 13:42:05 +01:00
|
|
|
export default async (ctx: Koa.BaseContext) => {
|
2018-04-12 23:06:18 +02:00
|
|
|
ctx.set('Access-Control-Allow-Origin', config.url);
|
|
|
|
ctx.set('Access-Control-Allow-Credentials', 'true');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-07-23 06:56:25 +02:00
|
|
|
const body = ctx.request.body as any;
|
2018-10-16 03:33:05 +02:00
|
|
|
const username = body['username'];
|
|
|
|
const password = body['password'];
|
2018-07-23 06:56:25 +02:00
|
|
|
const token = body['token'];
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2017-02-22 11:39:34 +01:00
|
|
|
if (typeof username != 'string') {
|
2018-04-12 23:06:18 +02:00
|
|
|
ctx.status = 400;
|
2017-02-22 11:39:34 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof password != 'string') {
|
2018-04-12 23:06:18 +02:00
|
|
|
ctx.status = 400;
|
2017-02-22 11:39:34 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-12-08 14:57:58 +01:00
|
|
|
if (token != null && typeof token != 'string') {
|
2018-04-12 23:06:18 +02:00
|
|
|
ctx.status = 400;
|
2017-12-08 14:57:58 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-12-28 23:49:51 +01:00
|
|
|
// Fetch user
|
2019-04-07 14:50:36 +02:00
|
|
|
const user = await Users.findOne({
|
2018-03-29 07:48:47 +02:00
|
|
|
usernameLower: username.toLowerCase(),
|
2018-03-27 09:51:12 +02:00
|
|
|
host: null
|
2019-04-07 14:50:36 +02:00
|
|
|
}) as ILocalUser;
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
if (user == null) {
|
2018-04-12 23:06:18 +02:00
|
|
|
ctx.throw(404, {
|
2017-03-09 22:42:57 +01:00
|
|
|
error: 'user not found'
|
|
|
|
});
|
2016-12-28 23:49:51 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-04-17 07:32:59 +02:00
|
|
|
const profile = await UserProfiles.findOne(user.id).then(ensure);
|
2019-04-10 08:04:27 +02:00
|
|
|
|
2016-12-28 23:49:51 +01:00
|
|
|
// Compare password
|
2019-04-12 18:43:22 +02:00
|
|
|
const same = await bcrypt.compare(password, profile.password!);
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
if (same) {
|
2019-04-10 08:04:27 +02:00
|
|
|
if (profile.twoFactorEnabled) {
|
2017-12-08 14:57:58 +01:00
|
|
|
const verified = (speakeasy as any).totp.verify({
|
2019-04-10 08:04:27 +02:00
|
|
|
secret: profile.twoFactorSecret,
|
2017-12-08 14:57:58 +01:00
|
|
|
encoding: 'base32',
|
|
|
|
token: token
|
|
|
|
});
|
|
|
|
|
|
|
|
if (verified) {
|
2018-04-13 04:44:39 +02:00
|
|
|
signin(ctx, user);
|
2017-12-08 14:57:58 +01:00
|
|
|
} else {
|
2018-08-21 16:56:15 +02:00
|
|
|
ctx.throw(403, {
|
2017-12-08 14:57:58 +01:00
|
|
|
error: 'invalid token'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} else {
|
2018-04-13 04:44:39 +02:00
|
|
|
signin(ctx, user);
|
2017-12-08 14:57:58 +01:00
|
|
|
}
|
2016-12-28 23:49:51 +01:00
|
|
|
} else {
|
2018-08-21 16:56:15 +02:00
|
|
|
ctx.throw(403, {
|
2017-03-09 22:42:57 +01:00
|
|
|
error: 'incorrect password'
|
|
|
|
});
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Append signin history
|
2019-04-07 14:50:36 +02:00
|
|
|
const record = await Signins.save({
|
|
|
|
id: genId(),
|
2018-03-29 07:48:47 +02:00
|
|
|
createdAt: new Date(),
|
2019-04-07 14:50:36 +02:00
|
|
|
userId: user.id,
|
2018-04-12 23:06:18 +02:00
|
|
|
ip: ctx.ip,
|
|
|
|
headers: ctx.headers,
|
2016-12-28 23:49:51 +01:00
|
|
|
success: same
|
|
|
|
});
|
|
|
|
|
|
|
|
// Publish signin event
|
2019-04-07 14:50:36 +02:00
|
|
|
publishMainStream(user.id, 'signin', await Signins.pack(record));
|
2016-12-28 23:49:51 +01:00
|
|
|
};
|