misskey/src/server/api/private/signup.ts

141 lines
3.1 KiB
TypeScript
Raw Normal View History

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';
2018-03-28 18:20:40 +02:00
import { generate as generateKeypair } from '../../../crypto_key';
2018-03-29 13:32:18 +02:00
import User, { IUser, validateUsername, validatePassword, pack } from '../../../models/user';
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-06-16 03:40:53 +02:00
import Meta from '../../../models/meta';
2018-08-17 12:17:23 +02:00
import RegistrationTicket from '../../../models/registration-tickets';
import usersChart from '../../../services/chart/users';
import fetchMeta from '../../../misc/fetch-meta';
import * as recaptcha from 'recaptcha-promise';
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;
const instance = await fetchMeta();
2016-12-28 23:49:51 +01:00
// Verify recaptcha
2017-01-17 00:26:59 +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'];
2018-08-17 12:17:23 +02:00
const invitationCode = body['invitationCode'];
if (instance && instance.disableRegistration) {
2018-08-17 12:17:23 +02:00
if (invitationCode == null || typeof invitationCode != 'string') {
ctx.status = 400;
return;
}
const ticket = await RegistrationTicket.findOne({
code: invitationCode
});
if (ticket == null) {
ctx.status = 400;
return;
}
RegistrationTicket.remove({
_id: ticket._id
});
}
2016-12-28 23:49:51 +01:00
// Validate username
if (!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
2017-02-22 11:39:34 +01:00
if (!validatePassword(password)) {
2018-04-12 23:06:18 +02:00
ctx.status = 400;
2017-01-17 03:37:11 +01:00
return;
}
2018-11-05 22:24:31 +01:00
const usersCount = await User.count({});
2016-12-28 23:49:51 +01:00
// Fetch exist user that same username
const usernameExist = await User
.count({
2018-03-29 07:48:47 +02:00
usernameLower: username.toLowerCase(),
2018-03-27 09:51:12 +02:00
host: null
2016-12-28 23:49:51 +01:00
}, {
2018-11-05 22:25:35 +01:00
limit: 1
});
2016-12-28 23:49:51 +01:00
// Check username already used
if (usernameExist !== 0) {
2018-04-12 23:06:18 +02:00
ctx.status = 400;
2016-12-28 23:49:51 +01:00
return;
}
// 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
// Create account
2017-09-16 10:31:37 +02:00
const account: IUser = await User.insert({
2018-03-29 07:48:47 +02:00
avatarId: null,
bannerId: null,
createdAt: new Date(),
2017-02-22 04:43:15 +01:00
description: null,
2018-03-29 07:48:47 +02:00
followersCount: 0,
followingCount: 0,
name: null,
2018-04-07 19:30:37 +02:00
notesCount: 0,
2016-12-28 23:49:51 +01:00
username: username,
2018-03-29 07:48:47 +02:00
usernameLower: username.toLowerCase(),
2018-03-27 05:02:43 +02:00
host: null,
2018-04-07 20:58:11 +02:00
keypair: generateKeypair(),
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,
2018-04-07 20:58:11 +02:00
profile: {
bio: null,
birthday: null,
2018-11-05 22:25:35 +01:00
location: null
2018-04-07 20:58:11 +02:00
},
settings: {
2018-08-16 17:04:07 +02:00
autoWatch: false
2017-02-22 04:43:15 +01:00
}
2016-12-28 23:49:51 +01:00
});
2018-06-16 03:40:53 +02:00
//#region Increment users count
Meta.update({}, {
$inc: {
'stats.usersCount': 1,
'stats.originalUsersCount': 1
}
}, { upsert: true });
//#endregion
2018-10-22 22:36:35 +02:00
usersChart.update(account, true);
2018-08-18 22:26:34 +02:00
2018-10-16 01:54:36 +02:00
const res = await pack(account, account, {
detail: true,
includeSecrets: true
});
res.token = secret;
ctx.body = res;
2016-12-28 23:49:51 +01:00
};