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';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { generateKeyPair } from 'crypto';
|
2017-08-28 16:47:43 +02:00
|
|
|
import generateUserToken from '../common/generate-native-user-token';
|
2018-04-02 06:15:53 +02:00
|
|
|
import config from '../../../config';
|
2018-11-05 23:14:43 +01:00
|
|
|
import fetchMeta from '../../../misc/fetch-meta';
|
2019-02-03 14:21:55 +01:00
|
|
|
import * as recaptcha from 'recaptcha-promise';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { Users, RegistrationTickets, UserServiceLinkings, UserKeypairs } from '../../../models';
|
|
|
|
import { genId } from '../../../misc/gen-id';
|
|
|
|
import { usersChart } from '../../../services/chart';
|
|
|
|
import { UserServiceLinking } from '../../../models/entities/user-service-linking';
|
|
|
|
import { User } from '../../../models/entities/user';
|
2019-04-07 20:35:02 +02:00
|
|
|
import { UserKeypair } from '../../../models/entities/user-keypair';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2019-01-22 13:42:05 +01:00
|
|
|
export default async (ctx: Koa.BaseContext) => {
|
2018-07-23 06:56:25 +02:00
|
|
|
const body = ctx.request.body as any;
|
|
|
|
|
2018-11-06 16:08:21 +01:00
|
|
|
const instance = await fetchMeta();
|
|
|
|
|
2016-12-28 23:49:51 +01:00
|
|
|
// Verify recaptcha
|
2017-01-17 00:26:59 +01:00
|
|
|
// ただしテスト時はこの機構は障害となるため無効にする
|
2018-11-06 16:08:21 +01:00
|
|
|
if (process.env.NODE_ENV !== 'test' && instance.enableRecaptcha) {
|
|
|
|
recaptcha.init({
|
|
|
|
secret_key: instance.recaptchaSecretKey
|
|
|
|
});
|
|
|
|
|
2018-07-23 06:56:25 +02:00
|
|
|
const success = await recaptcha(body['g-recaptcha-response']);
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2017-01-17 00:26:59 +01:00
|
|
|
if (!success) {
|
2018-04-12 23:06:18 +02:00
|
|
|
ctx.throw(400, 'recaptcha-failed');
|
2017-01-17 00:26:59 +01:00
|
|
|
return;
|
|
|
|
}
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
2018-07-23 06:56:25 +02:00
|
|
|
const username = body['username'];
|
|
|
|
const password = body['password'];
|
2019-04-07 14:50:36 +02:00
|
|
|
const host = process.env.NODE_ENV === 'test' ? (body['host'] || null) : null;
|
2018-08-17 12:17:23 +02:00
|
|
|
const invitationCode = body['invitationCode'];
|
|
|
|
|
2018-11-05 23:14:43 +01:00
|
|
|
if (instance && instance.disableRegistration) {
|
2018-08-17 12:17:23 +02:00
|
|
|
if (invitationCode == null || typeof invitationCode != 'string') {
|
|
|
|
ctx.status = 400;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
const ticket = await RegistrationTickets.findOne({
|
2018-08-17 12:17:23 +02:00
|
|
|
code: invitationCode
|
|
|
|
});
|
|
|
|
|
|
|
|
if (ticket == null) {
|
|
|
|
ctx.status = 400;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
RegistrationTickets.delete(ticket.id);
|
2018-08-17 12:17:23 +02:00
|
|
|
}
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
// Validate username
|
2019-04-07 14:50:36 +02:00
|
|
|
if (!Users.validateUsername(username)) {
|
2018-04-12 23:06:18 +02:00
|
|
|
ctx.status = 400;
|
2016-12-28 23:49:51 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-01-17 03:37:11 +01:00
|
|
|
// Validate password
|
2019-04-07 14:50:36 +02:00
|
|
|
if (!Users.validatePassword(password)) {
|
2018-04-12 23:06:18 +02:00
|
|
|
ctx.status = 400;
|
2017-01-17 03:37:11 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
const usersCount = await Users.count({});
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
// Generate hash of password
|
2017-11-08 06:58:48 +01:00
|
|
|
const salt = await bcrypt.genSalt(8);
|
|
|
|
const hash = await bcrypt.hash(password, salt);
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
// Generate secret
|
2017-08-28 16:47:43 +02:00
|
|
|
const secret = generateUserToken();
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
if (await Users.findOne({ usernameLower: username.toLowerCase(), host: null })) {
|
|
|
|
ctx.status = 400;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-04-07 20:35:02 +02:00
|
|
|
const keyPair = await new Promise<string[]>((s, j) =>
|
|
|
|
generateKeyPair('rsa', {
|
|
|
|
modulusLength: 4096,
|
|
|
|
publicKeyEncoding: {
|
|
|
|
type: 'pkcs1',
|
|
|
|
format: 'pem'
|
|
|
|
},
|
|
|
|
privateKeyEncoding: {
|
|
|
|
type: 'pkcs1',
|
|
|
|
format: 'pem',
|
|
|
|
cipher: undefined,
|
|
|
|
passphrase: undefined
|
|
|
|
}
|
|
|
|
}, (e, publicKey, privateKey) =>
|
|
|
|
e ? j(e) : s([publicKey, privateKey])
|
|
|
|
));
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
const account = await Users.save({
|
|
|
|
id: genId(),
|
2018-03-29 07:48:47 +02:00
|
|
|
createdAt: new Date(),
|
2016-12-28 23:49:51 +01:00
|
|
|
username: username,
|
2018-03-29 07:48:47 +02:00
|
|
|
usernameLower: username.toLowerCase(),
|
2019-04-07 14:50:36 +02:00
|
|
|
host: host,
|
2018-04-07 20:58:11 +02:00
|
|
|
token: secret,
|
|
|
|
password: hash,
|
2018-11-05 22:24:31 +01:00
|
|
|
isAdmin: config.autoAdmin && usersCount === 0,
|
2018-12-28 18:46:57 +01:00
|
|
|
autoAcceptFollowed: true,
|
2019-04-07 14:50:36 +02:00
|
|
|
autoWatch: false
|
|
|
|
} as User);
|
|
|
|
|
|
|
|
await UserKeypairs.save({
|
|
|
|
id: genId(),
|
2019-04-07 20:35:02 +02:00
|
|
|
publicKey: keyPair[0],
|
|
|
|
privateKey: keyPair[1],
|
2019-04-07 14:50:36 +02:00
|
|
|
userId: account.id
|
2019-04-07 20:35:02 +02:00
|
|
|
} as UserKeypair);
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
await UserServiceLinkings.save({
|
|
|
|
id: genId(),
|
|
|
|
userId: account.id
|
|
|
|
} as UserServiceLinking);
|
2018-06-16 03:40:53 +02:00
|
|
|
|
2018-10-22 22:36:35 +02:00
|
|
|
usersChart.update(account, true);
|
2018-08-18 22:26:34 +02:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
const res = await Users.pack(account, account, {
|
2018-10-16 01:54:36 +02:00
|
|
|
detail: true,
|
|
|
|
includeSecrets: true
|
|
|
|
});
|
|
|
|
|
|
|
|
res.token = secret;
|
|
|
|
|
|
|
|
ctx.body = res;
|
2016-12-28 23:49:51 +01:00
|
|
|
};
|