2022-05-15 06:18:46 +03:00
|
|
|
import { randomBytes } from 'node:crypto';
|
2022-02-27 04:07:39 +02:00
|
|
|
import Koa from 'koa';
|
|
|
|
import bcrypt from 'bcryptjs';
|
2017-12-08 15:57:58 +02:00
|
|
|
import * as speakeasy from 'speakeasy';
|
2022-05-15 06:18:46 +03:00
|
|
|
import { IsNull } from 'typeorm';
|
2022-02-27 04:07:39 +02:00
|
|
|
import config from '@/config/index.js';
|
|
|
|
import { Users, Signins, UserProfiles, UserSecurityKeys, AttestationChallenges } from '@/models/index.js';
|
|
|
|
import { ILocalUser } from '@/models/entities/user.js';
|
|
|
|
import { genId } from '@/misc/gen-id.js';
|
2022-05-15 06:18:46 +03:00
|
|
|
import { fetchMeta } from '@/misc/fetch-meta.js';
|
|
|
|
import { verifyHcaptcha, verifyRecaptcha } from '@/misc/captcha.js';
|
2022-02-27 04:07:39 +02:00
|
|
|
import { verifyLogin, hash } from '../2fa.js';
|
2022-05-15 06:18:46 +03:00
|
|
|
import signin from '../common/signin.js';
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2019-11-24 10:09:32 +02:00
|
|
|
export default async (ctx: Koa.Context) => {
|
2018-04-13 00:06:18 +03:00
|
|
|
ctx.set('Access-Control-Allow-Origin', config.url);
|
|
|
|
ctx.set('Access-Control-Allow-Credentials', 'true');
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2018-07-23 07:56:25 +03:00
|
|
|
const body = ctx.request.body as any;
|
2022-05-15 06:18:46 +03:00
|
|
|
|
|
|
|
const instance = await fetchMeta(true);
|
|
|
|
|
|
|
|
if (instance.enableHcaptcha && instance.hcaptchaSecretKey) {
|
|
|
|
await verifyHcaptcha(instance.hcaptchaSecretKey, body['hcaptcha-response']).catch(e => {
|
|
|
|
ctx.throw(400, e);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (instance.enableRecaptcha && instance.recaptchaSecretKey) {
|
|
|
|
await verifyRecaptcha(instance.recaptchaSecretKey, body['g-recaptcha-response']).catch(e => {
|
|
|
|
ctx.throw(400, e);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-10-16 04:33:05 +03:00
|
|
|
const username = body['username'];
|
|
|
|
const password = body['password'];
|
2018-07-23 07:56:25 +03:00
|
|
|
const token = body['token'];
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2021-09-18 20:23:12 +03:00
|
|
|
function error(status: number, error: { id: string }) {
|
|
|
|
ctx.status = status;
|
|
|
|
ctx.body = { error };
|
|
|
|
}
|
|
|
|
|
2022-04-03 09:33:22 +03:00
|
|
|
if (typeof username !== 'string') {
|
2018-04-13 00:06:18 +03:00
|
|
|
ctx.status = 400;
|
2017-02-22 12:39:34 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-04-03 09:33:22 +03:00
|
|
|
if (typeof password !== 'string') {
|
2018-04-13 00:06:18 +03:00
|
|
|
ctx.status = 400;
|
2017-02-22 12:39:34 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-04-03 09:33:22 +03:00
|
|
|
if (token != null && typeof token !== 'string') {
|
2018-04-13 00:06:18 +03:00
|
|
|
ctx.status = 400;
|
2017-12-08 15:57:58 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-12-29 00:49:51 +02:00
|
|
|
// Fetch user
|
2022-03-26 08:34:00 +02:00
|
|
|
const user = await Users.findOneBy({
|
2018-03-29 08:48:47 +03:00
|
|
|
usernameLower: username.toLowerCase(),
|
2022-03-26 08:34:00 +02:00
|
|
|
host: IsNull(),
|
2019-04-07 15:50:36 +03:00
|
|
|
}) as ILocalUser;
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
if (user == null) {
|
2021-09-18 20:23:12 +03:00
|
|
|
error(404, {
|
|
|
|
id: '6cc579cc-885d-43d8-95c2-b8c7fc963280',
|
2017-03-09 23:42:57 +02:00
|
|
|
});
|
2016-12-29 00:49:51 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-07-18 13:57:53 +03:00
|
|
|
if (user.isSuspended) {
|
2021-09-18 20:23:12 +03:00
|
|
|
error(403, {
|
|
|
|
id: 'e03a5f46-d309-4865-9b69-56282d94e1eb',
|
2021-07-18 13:57:53 +03:00
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-03-26 08:34:00 +02:00
|
|
|
const profile = await UserProfiles.findOneByOrFail({ userId: user.id });
|
2019-04-10 09:04:27 +03:00
|
|
|
|
2016-12-29 00:49:51 +02:00
|
|
|
// Compare password
|
2019-04-12 19:43:22 +03:00
|
|
|
const same = await bcrypt.compare(password, profile.password!);
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2021-09-18 20:23:12 +03:00
|
|
|
async function fail(status?: number, failure?: { id: string }) {
|
2019-07-03 14:18:07 +03:00
|
|
|
// Append signin history
|
2021-03-21 14:27:09 +02:00
|
|
|
await Signins.insert({
|
2019-07-03 14:18:07 +03:00
|
|
|
id: genId(),
|
|
|
|
createdAt: new Date(),
|
|
|
|
userId: user.id,
|
|
|
|
ip: ctx.ip,
|
|
|
|
headers: ctx.headers,
|
2021-12-09 16:58:30 +02:00
|
|
|
success: false,
|
2019-07-03 14:18:07 +03:00
|
|
|
});
|
2017-12-08 15:57:58 +02:00
|
|
|
|
2021-09-18 20:23:12 +03:00
|
|
|
error(status || 500, failure || { id: '4e30e80c-e338-45a0-8c8f-44455efa3b76' });
|
2019-07-03 14:18:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!profile.twoFactorEnabled) {
|
2019-07-06 19:38:36 +03:00
|
|
|
if (same) {
|
|
|
|
signin(ctx, user);
|
2019-07-17 23:26:58 +03:00
|
|
|
return;
|
2019-07-06 19:38:36 +03:00
|
|
|
} else {
|
|
|
|
await fail(403, {
|
2021-12-09 16:58:30 +02:00
|
|
|
id: '932c904e-9460-45b7-9ce6-7ed33be7eb2c',
|
2019-07-06 19:38:36 +03:00
|
|
|
});
|
2019-07-17 23:26:58 +03:00
|
|
|
return;
|
2019-07-06 19:38:36 +03:00
|
|
|
}
|
2019-07-03 14:18:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (token) {
|
2019-07-06 19:38:36 +03:00
|
|
|
if (!same) {
|
|
|
|
await fail(403, {
|
2021-12-09 16:58:30 +02:00
|
|
|
id: '932c904e-9460-45b7-9ce6-7ed33be7eb2c',
|
2019-07-06 19:38:36 +03:00
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-07-03 14:18:07 +03:00
|
|
|
const verified = (speakeasy as any).totp.verify({
|
|
|
|
secret: profile.twoFactorSecret,
|
|
|
|
encoding: 'base32',
|
2020-02-02 04:50:15 +02:00
|
|
|
token: token,
|
2021-12-09 16:58:30 +02:00
|
|
|
window: 2,
|
2019-07-03 14:18:07 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
if (verified) {
|
2018-04-13 05:44:39 +03:00
|
|
|
signin(ctx, user);
|
2019-07-03 14:18:07 +03:00
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
await fail(403, {
|
2021-12-09 16:58:30 +02:00
|
|
|
id: 'cdf1235b-ac71-46d4-a3a6-84ccce48df6f',
|
2019-07-03 14:18:07 +03:00
|
|
|
});
|
|
|
|
return;
|
2017-12-08 15:57:58 +02:00
|
|
|
}
|
2019-07-05 01:48:12 +03:00
|
|
|
} else if (body.credentialId) {
|
2019-07-06 19:38:36 +03:00
|
|
|
if (!same && !profile.usePasswordLessLogin) {
|
|
|
|
await fail(403, {
|
2021-12-09 16:58:30 +02:00
|
|
|
id: '932c904e-9460-45b7-9ce6-7ed33be7eb2c',
|
2019-07-06 19:38:36 +03:00
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-07-03 14:18:07 +03:00
|
|
|
const clientDataJSON = Buffer.from(body.clientDataJSON, 'hex');
|
|
|
|
const clientData = JSON.parse(clientDataJSON.toString('utf-8'));
|
2022-03-26 08:34:00 +02:00
|
|
|
const challenge = await AttestationChallenges.findOneBy({
|
2019-07-03 14:18:07 +03:00
|
|
|
userId: user.id,
|
|
|
|
id: body.challengeId,
|
|
|
|
registrationChallenge: false,
|
2021-12-09 16:58:30 +02:00
|
|
|
challenge: hash(clientData.challenge).toString('hex'),
|
2017-03-09 23:42:57 +02:00
|
|
|
});
|
2019-07-03 14:18:07 +03:00
|
|
|
|
|
|
|
if (!challenge) {
|
|
|
|
await fail(403, {
|
2021-12-09 16:58:30 +02:00
|
|
|
id: '2715a88a-2125-4013-932f-aa6fe72792da',
|
2019-07-03 14:18:07 +03:00
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
await AttestationChallenges.delete({
|
|
|
|
userId: user.id,
|
2021-12-09 16:58:30 +02:00
|
|
|
id: body.challengeId,
|
2019-07-03 14:18:07 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
if (new Date().getTime() - challenge.createdAt.getTime() >= 5 * 60 * 1000) {
|
|
|
|
await fail(403, {
|
2021-12-09 16:58:30 +02:00
|
|
|
id: '2715a88a-2125-4013-932f-aa6fe72792da',
|
2019-07-03 14:18:07 +03:00
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-03-26 08:34:00 +02:00
|
|
|
const securityKey = await UserSecurityKeys.findOneBy({
|
2019-07-03 14:18:07 +03:00
|
|
|
id: Buffer.from(
|
|
|
|
body.credentialId
|
2019-07-05 01:48:12 +03:00
|
|
|
.replace(/-/g, '+')
|
2019-07-03 14:18:07 +03:00
|
|
|
.replace(/_/g, '/'),
|
2022-05-15 06:18:46 +03:00
|
|
|
'base64',
|
2021-12-09 16:58:30 +02:00
|
|
|
).toString('hex'),
|
2019-07-03 14:18:07 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
if (!securityKey) {
|
|
|
|
await fail(403, {
|
2021-12-09 16:58:30 +02:00
|
|
|
id: '66269679-aeaf-4474-862b-eb761197e046',
|
2019-07-03 14:18:07 +03:00
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const isValid = verifyLogin({
|
|
|
|
publicKey: Buffer.from(securityKey.publicKey, 'hex'),
|
|
|
|
authenticatorData: Buffer.from(body.authenticatorData, 'hex'),
|
|
|
|
clientDataJSON,
|
|
|
|
clientData,
|
|
|
|
signature: Buffer.from(body.signature, 'hex'),
|
2021-12-09 16:58:30 +02:00
|
|
|
challenge: challenge.challenge,
|
2019-07-03 14:18:07 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
if (isValid) {
|
|
|
|
signin(ctx, user);
|
2019-07-17 23:26:58 +03:00
|
|
|
return;
|
2019-07-03 14:18:07 +03:00
|
|
|
} else {
|
|
|
|
await fail(403, {
|
2021-12-09 16:58:30 +02:00
|
|
|
id: '93b86c4b-72f9-40eb-9815-798928603d1e',
|
2019-07-03 14:18:07 +03:00
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
2019-07-05 01:48:12 +03:00
|
|
|
} else {
|
2019-07-06 19:38:36 +03:00
|
|
|
if (!same && !profile.usePasswordLessLogin) {
|
|
|
|
await fail(403, {
|
2021-12-09 16:58:30 +02:00
|
|
|
id: '932c904e-9460-45b7-9ce6-7ed33be7eb2c',
|
2019-07-06 19:38:36 +03:00
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-03-26 08:34:00 +02:00
|
|
|
const keys = await UserSecurityKeys.findBy({
|
2021-12-09 16:58:30 +02:00
|
|
|
userId: user.id,
|
2019-07-05 01:48:12 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
if (keys.length === 0) {
|
|
|
|
await fail(403, {
|
2021-12-09 16:58:30 +02:00
|
|
|
id: 'f27fd449-9af4-4841-9249-1f989b9fa4a4',
|
2019-07-05 01:48:12 +03:00
|
|
|
});
|
2019-07-17 23:26:58 +03:00
|
|
|
return;
|
2019-07-05 01:48:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// 32 byte challenge
|
|
|
|
const challenge = randomBytes(32).toString('base64')
|
|
|
|
.replace(/=/g, '')
|
|
|
|
.replace(/\+/g, '-')
|
|
|
|
.replace(/\//g, '_');
|
|
|
|
|
|
|
|
const challengeId = genId();
|
|
|
|
|
2021-03-21 14:27:09 +02:00
|
|
|
await AttestationChallenges.insert({
|
2019-07-05 01:48:12 +03:00
|
|
|
userId: user.id,
|
|
|
|
id: challengeId,
|
|
|
|
challenge: hash(Buffer.from(challenge, 'utf-8')).toString('hex'),
|
|
|
|
createdAt: new Date(),
|
2021-12-09 16:58:30 +02:00
|
|
|
registrationChallenge: false,
|
2019-07-05 01:48:12 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
ctx.body = {
|
|
|
|
challenge,
|
|
|
|
challengeId,
|
|
|
|
securityKeys: keys.map(key => ({
|
2021-12-09 16:58:30 +02:00
|
|
|
id: key.id,
|
|
|
|
})),
|
2019-07-05 01:48:12 +03:00
|
|
|
};
|
|
|
|
ctx.status = 200;
|
|
|
|
return;
|
2016-12-29 00:49:51 +02:00
|
|
|
}
|
2019-07-17 23:26:58 +03:00
|
|
|
// never get here
|
2016-12-29 00:49:51 +02:00
|
|
|
};
|