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

144 lines
3 KiB
TypeScript
Raw Normal View History

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