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

148 lines
2.8 KiB
TypeScript
Raw Normal View History

2017-11-08 07:43:47 -07:00
import * as uuid from 'uuid';
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';
2017-01-02 14:03:19 -07:00
import 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';
2016-12-28 15:49:51 -07:00
recaptcha.init({
secret_key: config.recaptcha.secret_key
2016-12-28 15:49:51 -07:00
});
2017-11-08 07:43:47 -07:00
const home = {
left: [
'profile',
'calendar',
'activity',
2018-02-22 09:27:02 -07:00
'rss',
2017-11-08 07:43:47 -07:00
'trends',
'photo-stream',
'version'
],
right: [
'broadcast',
'notifications',
2018-02-22 09:27:02 -07:00
'users',
'polls',
2017-11-08 07:43:47 -07:00
'server',
'donation',
'nav',
'tips'
]
};
2018-04-12 15:06:18 -06:00
export default async (ctx: Koa.Context) => {
2016-12-28 15:49:51 -07:00
// Verify recaptcha
2017-01-16 16:26:59 -07:00
// ただしテスト時はこの機構は障害となるため無効にする
if (process.env.NODE_ENV !== 'test') {
2018-04-12 18:44:00 -06:00
const success = await recaptcha(ctx.request.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-04-12 18:44:00 -06:00
const username = ctx.request.body['username'];
const password = ctx.request.body['password'];
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;
}
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
}, {
limit: 1
});
// 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
2017-11-08 07:43:47 -07:00
//#region Construct home data
const homeData = [];
home.left.forEach(widget => {
homeData.push({
name: widget,
id: uuid(),
place: 'left',
data: {}
});
});
home.right.forEach(widget => {
homeData.push({
name: widget,
id: uuid(),
place: 'right',
data: {}
});
});
//#endregion
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,
driveCapacity: 1024 * 1024 * 128, // 128MiB
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-03-28 23:48:47 -06:00
hostLower: null,
2018-04-07 12:58:11 -06: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
},
clientSettings: {
home: homeData
2017-02-21 20:43:15 -07:00
}
2016-12-28 15:49:51 -07:00
});
// Response
2018-04-12 15:06:18 -06:00
ctx.body = await pack(account);
2016-12-28 15:49:51 -07:00
};