2018-04-12 16:06:18 -05:00
|
|
|
import * as Koa from 'koa';
|
2017-01-17 23:19:50 -06:00
|
|
|
import * as bcrypt from 'bcryptjs';
|
2018-03-28 11:20:40 -05:00
|
|
|
import { generate as generateKeypair } from '../../../crypto_key';
|
2017-01-02 15:03:19 -06:00
|
|
|
import recaptcha = require('recaptcha-promise');
|
2018-03-29 06:32:18 -05:00
|
|
|
import User, { IUser, validateUsername, validatePassword, pack } from '../../../models/user';
|
2017-08-28 09:47:43 -05:00
|
|
|
import generateUserToken from '../common/generate-native-user-token';
|
2018-04-01 23:15:53 -05:00
|
|
|
import config from '../../../config';
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
recaptcha.init({
|
2017-11-22 14:43:00 -06:00
|
|
|
secret_key: config.recaptcha.secret_key
|
2016-12-28 16:49:51 -06:00
|
|
|
});
|
|
|
|
|
2018-04-12 16:06:18 -05:00
|
|
|
export default async (ctx: Koa.Context) => {
|
2016-12-28 16:49:51 -06:00
|
|
|
// Verify recaptcha
|
2017-01-16 17:26:59 -06:00
|
|
|
// ただしテスト時はこの機構は障害となるため無効にする
|
|
|
|
if (process.env.NODE_ENV !== 'test') {
|
2018-04-12 19:44:00 -05:00
|
|
|
const success = await recaptcha(ctx.request.body['g-recaptcha-response']);
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2017-01-16 17:26:59 -06:00
|
|
|
if (!success) {
|
2018-04-12 16:06:18 -05:00
|
|
|
ctx.throw(400, 'recaptcha-failed');
|
2017-01-16 17:26:59 -06:00
|
|
|
return;
|
|
|
|
}
|
2016-12-28 16:49:51 -06:00
|
|
|
}
|
|
|
|
|
2018-04-12 19:44:00 -05:00
|
|
|
const username = ctx.request.body['username'];
|
|
|
|
const password = ctx.request.body['password'];
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
// Validate username
|
|
|
|
if (!validateUsername(username)) {
|
2018-04-12 16:06:18 -05:00
|
|
|
ctx.status = 400;
|
2016-12-28 16:49:51 -06:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-01-16 20:37:11 -06:00
|
|
|
// Validate password
|
2017-02-22 04:39:34 -06:00
|
|
|
if (!validatePassword(password)) {
|
2018-04-12 16:06:18 -05:00
|
|
|
ctx.status = 400;
|
2017-01-16 20:37:11 -06:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-12-28 16:49:51 -06:00
|
|
|
// Fetch exist user that same username
|
|
|
|
const usernameExist = await User
|
|
|
|
.count({
|
2018-03-29 00:48:47 -05:00
|
|
|
usernameLower: username.toLowerCase(),
|
2018-03-27 02:51:12 -05:00
|
|
|
host: null
|
2016-12-28 16:49:51 -06:00
|
|
|
}, {
|
|
|
|
limit: 1
|
|
|
|
});
|
|
|
|
|
|
|
|
// Check username already used
|
|
|
|
if (usernameExist !== 0) {
|
2018-04-12 16:06:18 -05:00
|
|
|
ctx.status = 400;
|
2016-12-28 16:49:51 -06:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Generate hash of password
|
2017-11-07 23:58:48 -06:00
|
|
|
const salt = await bcrypt.genSalt(8);
|
|
|
|
const hash = await bcrypt.hash(password, salt);
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
// Generate secret
|
2017-08-28 09:47:43 -05:00
|
|
|
const secret = generateUserToken();
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
// Create account
|
2017-09-16 03:31:37 -05:00
|
|
|
const account: IUser = await User.insert({
|
2018-03-29 00:48:47 -05:00
|
|
|
avatarId: null,
|
|
|
|
bannerId: null,
|
|
|
|
createdAt: new Date(),
|
2017-02-21 21:43:15 -06:00
|
|
|
description: null,
|
2018-03-29 00:48:47 -05:00
|
|
|
followersCount: 0,
|
|
|
|
followingCount: 0,
|
2018-04-05 11:37:24 -05:00
|
|
|
name: null,
|
2018-04-07 12:30:37 -05:00
|
|
|
notesCount: 0,
|
2018-03-30 07:55:23 -05:00
|
|
|
driveCapacity: 1024 * 1024 * 128, // 128MiB
|
2016-12-28 16:49:51 -06:00
|
|
|
username: username,
|
2018-03-29 00:48:47 -05:00
|
|
|
usernameLower: username.toLowerCase(),
|
2018-03-26 22:02:43 -05:00
|
|
|
host: null,
|
2018-04-07 13:58:11 -05:00
|
|
|
keypair: generateKeypair(),
|
|
|
|
token: secret,
|
|
|
|
email: null,
|
|
|
|
links: null,
|
|
|
|
password: hash,
|
|
|
|
profile: {
|
|
|
|
bio: null,
|
|
|
|
birthday: null,
|
|
|
|
blood: null,
|
|
|
|
gender: null,
|
|
|
|
handedness: null,
|
|
|
|
height: null,
|
|
|
|
location: null,
|
|
|
|
weight: null
|
|
|
|
},
|
|
|
|
settings: {
|
|
|
|
autoWatch: true
|
2017-02-21 21:43:15 -06:00
|
|
|
}
|
2016-12-28 16:49:51 -06:00
|
|
|
});
|
|
|
|
|
|
|
|
// Response
|
2018-04-12 16:06:18 -05:00
|
|
|
ctx.body = await pack(account);
|
2016-12-28 16:49:51 -06:00
|
|
|
};
|