jormungandr-bite/src/server/api/private/signup.ts

147 lines
3.1 KiB
TypeScript
Raw Normal View History

2018-04-12 15:06:18 -06:00
import * as Koa from 'koa';
2017-01-17 22:19:50 -07:00
import * as bcrypt from 'bcryptjs';
2018-03-28 10:20:40 -06:00
import { generate as generateKeypair } from '../../../crypto_key';
2018-06-17 18:54:53 -06:00
const recaptcha = require('recaptcha-promise');
2018-03-29 05:32:18 -06:00
import User, { IUser, validateUsername, validatePassword, pack } from '../../../models/user';
2017-08-28 08:47:43 -06:00
import generateUserToken from '../common/generate-native-user-token';
2018-04-01 22:15:53 -06:00
import config from '../../../config';
2018-06-15 19:40:53 -06:00
import Meta from '../../../models/meta';
2018-08-17 04:17:23 -06:00
import RegistrationTicket from '../../../models/registration-tickets';
2018-10-22 14:36:35 -06:00
import usersChart from '../../../chart/users';
2016-12-28 15:49:51 -07:00
2018-07-18 09:04:09 -06:00
if (config.recaptcha) {
recaptcha.init({
secret_key: config.recaptcha.secret_key
});
}
2016-12-28 15:49:51 -07:00
2018-04-12 15:06:18 -06:00
export default async (ctx: Koa.Context) => {
2018-07-22 22:56:25 -06:00
const body = ctx.request.body as any;
2016-12-28 15:49:51 -07:00
// Verify recaptcha
2017-01-16 16:26:59 -07:00
// ただしテスト時はこの機構は障害となるため無効にする
2018-07-18 09:04:09 -06:00
if (process.env.NODE_ENV !== 'test' && config.recaptcha != null) {
2018-07-22 22:56:25 -06:00
const success = await recaptcha(body['g-recaptcha-response']);
2016-12-28 15:49:51 -07:00
2017-01-16 16:26:59 -07:00
if (!success) {
2018-04-12 15:06:18 -06:00
ctx.throw(400, 'recaptcha-failed');
2017-01-16 16:26:59 -07:00
return;
}
2016-12-28 15:49:51 -07:00
}
2018-07-22 22:56:25 -06:00
const username = body['username'];
const password = body['password'];
2018-08-17 04:17:23 -06:00
const invitationCode = body['invitationCode'];
const meta = await Meta.findOne({});
2018-08-17 12:36:13 -06:00
if (meta && meta.disableRegistration) {
2018-08-17 04:17:23 -06: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 15:49:51 -07:00
// Validate username
if (!validateUsername(username)) {
2018-04-12 15:06:18 -06:00
ctx.status = 400;
2016-12-28 15:49:51 -07:00
return;
}
2017-01-16 19:37:11 -07:00
// Validate password
2017-02-22 03:39:34 -07:00
if (!validatePassword(password)) {
2018-04-12 15:06:18 -06:00
ctx.status = 400;
2017-01-16 19:37:11 -07:00
return;
}
2018-11-05 14:24:31 -07:00
const usersCount = await User.count({});
2016-12-28 15:49:51 -07:00
// Fetch exist user that same username
const usernameExist = await User
.count({
2018-03-28 23:48:47 -06:00
usernameLower: username.toLowerCase(),
2018-03-27 01:51:12 -06:00
host: null
2016-12-28 15:49:51 -07:00
}, {
2018-07-22 22:56:25 -06:00
limit: 1
});
2016-12-28 15:49:51 -07:00
// Check username already used
if (usernameExist !== 0) {
2018-04-12 15:06:18 -06:00
ctx.status = 400;
2016-12-28 15:49:51 -07:00
return;
}
// Generate hash of password
2017-11-07 22:58:48 -07:00
const salt = await bcrypt.genSalt(8);
const hash = await bcrypt.hash(password, salt);
2016-12-28 15:49:51 -07:00
// Generate secret
2017-08-28 08:47:43 -06:00
const secret = generateUserToken();
2016-12-28 15:49:51 -07:00
// Create account
2017-09-16 02:31:37 -06:00
const account: IUser = await User.insert({
2018-03-28 23:48:47 -06:00
avatarId: null,
bannerId: null,
createdAt: new Date(),
2017-02-21 20:43:15 -07:00
description: null,
2018-03-28 23:48:47 -06:00
followersCount: 0,
followingCount: 0,
name: null,
2018-04-07 11:30:37 -06:00
notesCount: 0,
2016-12-28 15:49:51 -07:00
username: username,
2018-03-28 23:48:47 -06:00
usernameLower: username.toLowerCase(),
2018-03-26 21:02:43 -06:00
host: null,
2018-04-07 12:58:11 -06:00
keypair: generateKeypair(),
token: secret,
email: null,
password: hash,
2018-11-05 14:24:31 -07:00
isAdmin: config.autoAdmin && usersCount === 0,
2018-04-07 12:58:11 -06:00
profile: {
bio: null,
birthday: null,
blood: null,
gender: null,
handedness: null,
height: null,
location: null,
weight: null
},
settings: {
2018-08-16 09:04:07 -06:00
autoWatch: false
2017-02-21 20:43:15 -07:00
}
2016-12-28 15:49:51 -07:00
});
2018-06-15 19:40:53 -06:00
//#region Increment users count
Meta.update({}, {
$inc: {
'stats.usersCount': 1,
'stats.originalUsersCount': 1
}
}, { upsert: true });
//#endregion
2018-10-22 14:36:35 -06:00
usersChart.update(account, true);
2018-08-18 14:26:34 -06:00
2018-10-15 17:54:36 -06:00
const res = await pack(account, account, {
detail: true,
includeSecrets: true
});
res.token = secret;
ctx.body = res;
2016-12-28 15:49:51 -07:00
};