FoundKey/packages/backend/src/server/api/private/signin.ts

224 lines
5 KiB
TypeScript
Raw Normal View History

import { randomBytes } from 'node:crypto';
import { IsNull } from 'typeorm';
import Koa from 'koa';
2017-12-08 13:57:58 +00:00
import * as speakeasy from 'speakeasy';
2022-11-20 22:15:22 +00:00
import { SECOND, MINUTE, HOUR } from '@/const.js';
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';
import { getIpHash } from '@/misc/get-ip-hash.js';
import { comparePassword, hashPassword, isOldAlgorithm } from '@/misc/password.js';
import signin from '../common/signin.js';
import { verifyLogin, hash } from '../2fa.js';
import { limiter } from '../limiter.js';
2022-12-19 19:12:24 +00:00
import { ApiError, errors } from '../error.js';
2016-12-28 22:49:51 +00:00
2019-11-24 08:09:32 +00:00
export default async (ctx: Koa.Context) => {
2018-04-12 21:06:18 +00:00
ctx.set('Access-Control-Allow-Origin', config.url);
ctx.set('Access-Control-Allow-Credentials', 'true');
2016-12-28 22:49:51 +00:00
2018-07-23 04:56:25 +00:00
const body = ctx.request.body as any;
const { username, password, token } = body;
2016-12-28 22:49:51 +00:00
2022-12-19 19:12:24 +00:00
function error(e: keyof errors, info?: Record<string, any>): void {
new ApiError(e, info).apply(ctx, 'signin');
}
try {
// not more than 1 attempt per second and not more than 10 attempts per hour
2022-11-20 22:15:22 +00:00
await limiter({ key: 'signin', duration: HOUR, max: 10, minInterval: SECOND }, getIpHash(ctx.ip));
} catch (err) {
2022-12-19 19:12:24 +00:00
error('RATE_LIMIT_EXCEEDED');
return;
}
2022-04-03 06:33:22 +00:00
if (typeof username !== 'string') {
2022-12-19 19:12:24 +00:00
error('INVALID_PARAM', { param: 'username', reason: 'not a string' });
2017-02-22 10:39:34 +00:00
return;
}
2022-04-03 06:33:22 +00:00
if (typeof password !== 'string') {
2022-12-19 19:12:24 +00:00
error('INVALID_PARAM', { param: 'password', reason: 'not a string' });
2017-02-22 10:39:34 +00:00
return;
}
2022-04-03 06:33:22 +00:00
if (token != null && typeof token !== 'string') {
2022-12-19 19:12:24 +00:00
error('INVALID_PARAM', { param: 'token', reason: 'provided but not a string' });
2017-12-08 13:57:58 +00:00
return;
}
2016-12-28 22:49:51 +00:00
// Fetch user
const user = await Users.findOneBy({
2018-03-29 05:48:47 +00:00
usernameLower: username.toLowerCase(),
host: IsNull(),
Use PostgreSQL instead of MongoDB (#4572) * wip * Update note.ts * Update timeline.ts * Update core.ts * wip * Update generate-visibility-query.ts * wip * wip * wip * wip * wip * Update global-timeline.ts * wip * wip * wip * Update vote.ts * wip * wip * Update create.ts * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * Update files.ts * wip * wip * Update CONTRIBUTING.md * wip * wip * wip * wip * wip * wip * wip * wip * Update read-notification.ts * wip * wip * wip * wip * wip * wip * wip * Update cancel.ts * wip * wip * wip * Update show.ts * wip * wip * Update gen-id.ts * Update create.ts * Update id.ts * wip * wip * wip * wip * wip * wip * wip * Docker: Update files about Docker (#4599) * Docker: Use cache if files used by `yarn install` was not updated This patch reduces the number of times to installing node_modules. For example, `yarn install` step will be skipped when only ".config/default.yml" is updated. * Docker: Migrate MongoDB to Postgresql Misskey uses Postgresql as a database instead of Mongodb since version 11. * Docker: Uncomment about data persistence This patch will save a lot of databases. * wip * wip * wip * Update activitypub.ts * wip * wip * wip * Update logs.ts * wip * Update drive-file.ts * Update register.ts * wip * wip * Update mentions.ts * wip * wip * wip * Update recommendation.ts * wip * Update index.ts * wip * Update recommendation.ts * Doc: Update docker.ja.md and docker.en.md (#1) (#4608) Update how to set up misskey. * wip * :v: * wip * Update note.ts * Update postgre.ts * wip * wip * wip * wip * Update add-file.ts * wip * wip * wip * Clean up * Update logs.ts * wip * :pizza: * wip * Ad notes * wip * Update api-visibility.ts * Update note.ts * Update add-file.ts * tests * tests * Update postgre.ts * Update utils.ts * wip * wip * Refactor * wip * Refactor * wip * wip * Update show-users.ts * Update update-instance.ts * wip * Update feed.ts * Update outbox.ts * Update outbox.ts * Update user.ts * wip * Update list.ts * Update update-hashtag.ts * wip * Update update-hashtag.ts * Refactor * Update update.ts * wip * wip * :v: * clean up * docs * Update push.ts * wip * Update api.ts * wip * :v: * Update make-pagination-query.ts * :v: * Delete hashtags.ts * Update instances.ts * Update instances.ts * Update create.ts * Update search.ts * Update reversi-game.ts * Update signup.ts * Update user.ts * id * Update example.yml * :art: * objectid * fix * reversi * reversi * Fix bug of chart engine * Add test of chart engine * Improve test * Better testing * Improve chart engine * Refactor * Add test of chart engine * Refactor * Add chart test * Fix bug * コミットし忘れ * Refactoring * :v: * Add tests * Add test * Extarct note tests * Refactor * 存在しないユーザーにメンションできなくなっていた問題を修正 * Fix bug * Update update-meta.ts * Fix bug * Update mention.vue * Fix bug * Update meta.ts * Update CONTRIBUTING.md * Fix bug * Fix bug * Fix bug * Clean up * Clean up * Update notification.ts * Clean up * Add mute tests * Add test * Refactor * Add test * Fix test * Refactor * Refactor * Add tests * Update utils.ts * Update utils.ts * Fix test * Update package.json * Update update.ts * Update manifest.ts * Fix bug * Fix bug * Add test * :art: * Update endpoint permissions * Updaye permisison * Update person.ts #4299 * データベースと同期しないように * Fix bug * Fix bug * Update reversi-game.ts * Use a feature of Node v11.7.0 to extract a public key (#4644) * wip * wip * :v: * Refactoring #1540 * test * test * test * test * test * test * test * Fix bug * Fix test * :sushi: * wip * #4471 * Add test for #4335 * Refactor * Fix test * Add tests * :clock4: * Fix bug * Add test * Add test * rename * Fix bug
2019-04-07 12:50:36 +00:00
}) as ILocalUser;
2016-12-28 22:49:51 +00:00
Use PostgreSQL instead of MongoDB (#4572) * wip * Update note.ts * Update timeline.ts * Update core.ts * wip * Update generate-visibility-query.ts * wip * wip * wip * wip * wip * Update global-timeline.ts * wip * wip * wip * Update vote.ts * wip * wip * Update create.ts * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * Update files.ts * wip * wip * Update CONTRIBUTING.md * wip * wip * wip * wip * wip * wip * wip * wip * Update read-notification.ts * wip * wip * wip * wip * wip * wip * wip * Update cancel.ts * wip * wip * wip * Update show.ts * wip * wip * Update gen-id.ts * Update create.ts * Update id.ts * wip * wip * wip * wip * wip * wip * wip * Docker: Update files about Docker (#4599) * Docker: Use cache if files used by `yarn install` was not updated This patch reduces the number of times to installing node_modules. For example, `yarn install` step will be skipped when only ".config/default.yml" is updated. * Docker: Migrate MongoDB to Postgresql Misskey uses Postgresql as a database instead of Mongodb since version 11. * Docker: Uncomment about data persistence This patch will save a lot of databases. * wip * wip * wip * Update activitypub.ts * wip * wip * wip * Update logs.ts * wip * Update drive-file.ts * Update register.ts * wip * wip * Update mentions.ts * wip * wip * wip * Update recommendation.ts * wip * Update index.ts * wip * Update recommendation.ts * Doc: Update docker.ja.md and docker.en.md (#1) (#4608) Update how to set up misskey. * wip * :v: * wip * Update note.ts * Update postgre.ts * wip * wip * wip * wip * Update add-file.ts * wip * wip * wip * Clean up * Update logs.ts * wip * :pizza: * wip * Ad notes * wip * Update api-visibility.ts * Update note.ts * Update add-file.ts * tests * tests * Update postgre.ts * Update utils.ts * wip * wip * Refactor * wip * Refactor * wip * wip * Update show-users.ts * Update update-instance.ts * wip * Update feed.ts * Update outbox.ts * Update outbox.ts * Update user.ts * wip * Update list.ts * Update update-hashtag.ts * wip * Update update-hashtag.ts * Refactor * Update update.ts * wip * wip * :v: * clean up * docs * Update push.ts * wip * Update api.ts * wip * :v: * Update make-pagination-query.ts * :v: * Delete hashtags.ts * Update instances.ts * Update instances.ts * Update create.ts * Update search.ts * Update reversi-game.ts * Update signup.ts * Update user.ts * id * Update example.yml * :art: * objectid * fix * reversi * reversi * Fix bug of chart engine * Add test of chart engine * Improve test * Better testing * Improve chart engine * Refactor * Add test of chart engine * Refactor * Add chart test * Fix bug * コミットし忘れ * Refactoring * :v: * Add tests * Add test * Extarct note tests * Refactor * 存在しないユーザーにメンションできなくなっていた問題を修正 * Fix bug * Update update-meta.ts * Fix bug * Update mention.vue * Fix bug * Update meta.ts * Update CONTRIBUTING.md * Fix bug * Fix bug * Fix bug * Clean up * Clean up * Update notification.ts * Clean up * Add mute tests * Add test * Refactor * Add test * Fix test * Refactor * Refactor * Add tests * Update utils.ts * Update utils.ts * Fix test * Update package.json * Update update.ts * Update manifest.ts * Fix bug * Fix bug * Add test * :art: * Update endpoint permissions * Updaye permisison * Update person.ts #4299 * データベースと同期しないように * Fix bug * Fix bug * Update reversi-game.ts * Use a feature of Node v11.7.0 to extract a public key (#4644) * wip * wip * :v: * Refactoring #1540 * test * test * test * test * test * test * test * Fix bug * Fix test * :sushi: * wip * #4471 * Add test for #4335 * Refactor * Fix test * Add tests * :clock4: * Fix bug * Add test * Add test * rename * Fix bug
2019-04-07 12:50:36 +00:00
if (user == null) {
2022-12-19 19:12:24 +00:00
error('NO_SUCH_USER');
2016-12-28 22:49:51 +00:00
return;
}
if (user.isSuspended) {
2022-12-19 19:12:24 +00:00
error('SUSPENDED');
return;
}
const profile = await UserProfiles.findOneByOrFail({ userId: user.id });
2019-04-10 06:04:27 +00:00
2016-12-28 22:49:51 +00:00
// Compare password
const same = await comparePassword(password, profile.password!);
2016-12-28 22:49:51 +00:00
if (same && isOldAlgorithm(profile.password!)) {
profile.password = await hashPassword(password);
await UserProfiles.save(profile);
}
async function fail(): void {
// Append signin history
2021-03-21 12:27:09 +00:00
await Signins.insert({
id: genId(),
createdAt: new Date(),
userId: user.id,
ip: ctx.ip,
headers: ctx.headers,
2021-12-09 14:58:30 +00:00
success: false,
});
2017-12-08 13:57:58 +00:00
2022-12-19 19:12:24 +00:00
error('ACCESS_DENIED');
}
if (!profile.twoFactorEnabled) {
if (same) {
signin(ctx, user);
return;
} else {
await fail();
return;
}
}
if (token) {
if (!same) {
await fail();
return;
}
const verified = (speakeasy as any).totp.verify({
secret: profile.twoFactorSecret,
encoding: 'base32',
2022-08-03 12:49:55 +00:00
token,
2021-12-09 14:58:30 +00:00
window: 2,
});
if (verified) {
2018-04-13 02:44:39 +00:00
signin(ctx, user);
return;
} else {
await fail();
return;
2017-12-08 13:57:58 +00:00
}
2019-07-04 22:48:12 +00:00
} else if (body.credentialId) {
if (!same && !profile.usePasswordLessLogin) {
await fail();
return;
}
const clientDataJSON = Buffer.from(body.clientDataJSON, 'hex');
const clientData = JSON.parse(clientDataJSON.toString('utf-8'));
const challenge = await AttestationChallenges.findOneBy({
userId: user.id,
id: body.challengeId,
registrationChallenge: false,
2021-12-09 14:58:30 +00:00
challenge: hash(clientData.challenge).toString('hex'),
2017-03-09 21:42:57 +00:00
});
if (!challenge) {
await fail();
return;
}
await AttestationChallenges.delete({
userId: user.id,
2021-12-09 14:58:30 +00:00
id: body.challengeId,
});
2022-11-20 22:15:22 +00:00
if (new Date().getTime() - challenge.createdAt.getTime() >= 5 * MINUTE) {
await fail();
return;
}
const securityKey = await UserSecurityKeys.findOneBy({
id: Buffer.from(
body.credentialId
2019-07-04 22:48:12 +00:00
.replace(/-/g, '+')
.replace(/_/g, '/'),
'base64',
2021-12-09 14:58:30 +00:00
).toString('hex'),
});
if (!securityKey) {
await fail();
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 14:58:30 +00:00
challenge: challenge.challenge,
});
if (isValid) {
signin(ctx, user);
return;
} else {
await fail();
return;
}
2019-07-04 22:48:12 +00:00
} else {
if (!same && !profile.usePasswordLessLogin) {
await fail();
return;
}
const keys = await UserSecurityKeys.findBy({
2021-12-09 14:58:30 +00:00
userId: user.id,
2019-07-04 22:48:12 +00:00
});
if (keys.length === 0) {
await fail();
return;
2019-07-04 22:48:12 +00:00
}
// 32 byte challenge
const challenge = randomBytes(32).toString('base64')
.replace(/=/g, '')
.replace(/\+/g, '-')
.replace(/\//g, '_');
const challengeId = genId();
2021-03-21 12:27:09 +00:00
await AttestationChallenges.insert({
2019-07-04 22:48:12 +00:00
userId: user.id,
id: challengeId,
challenge: hash(Buffer.from(challenge, 'utf-8')).toString('hex'),
createdAt: new Date(),
2021-12-09 14:58:30 +00:00
registrationChallenge: false,
2019-07-04 22:48:12 +00:00
});
ctx.body = {
challenge,
challengeId,
securityKeys: keys.map(key => ({
2021-12-09 14:58:30 +00:00
id: key.id,
})),
2019-07-04 22:48:12 +00:00
};
ctx.status = 200;
return;
2016-12-28 22:49:51 +00:00
}
// never get here
2016-12-28 22:49:51 +00:00
};