2017-11-08 14:43:47 +00:00
|
|
|
import * as uuid from 'uuid';
|
2016-12-28 22:49:51 +00:00
|
|
|
import * as express from 'express';
|
2017-01-18 05:19:50 +00:00
|
|
|
import * as bcrypt from 'bcryptjs';
|
2018-03-28 16:20:40 +00:00
|
|
|
import { generate as generateKeypair } from '../../../crypto_key';
|
2017-01-02 21:03:19 +00:00
|
|
|
import recaptcha = require('recaptcha-promise');
|
2018-03-29 11:32:18 +00:00
|
|
|
import User, { IUser, validateUsername, validatePassword, pack } from '../../../models/user';
|
2017-08-28 14:47:43 +00:00
|
|
|
import generateUserToken from '../common/generate-native-user-token';
|
2018-04-02 04:15:53 +00:00
|
|
|
import config from '../../../config';
|
2016-12-28 22:49:51 +00:00
|
|
|
|
|
|
|
recaptcha.init({
|
2017-11-22 20:43:00 +00:00
|
|
|
secret_key: config.recaptcha.secret_key
|
2016-12-28 22:49:51 +00:00
|
|
|
});
|
|
|
|
|
2017-11-08 14:43:47 +00:00
|
|
|
const home = {
|
|
|
|
left: [
|
|
|
|
'profile',
|
|
|
|
'calendar',
|
|
|
|
'activity',
|
2018-02-22 16:27:02 +00:00
|
|
|
'rss',
|
2017-11-08 14:43:47 +00:00
|
|
|
'trends',
|
|
|
|
'photo-stream',
|
|
|
|
'version'
|
|
|
|
],
|
|
|
|
right: [
|
|
|
|
'broadcast',
|
|
|
|
'notifications',
|
2018-02-22 16:27:02 +00:00
|
|
|
'users',
|
|
|
|
'polls',
|
2017-11-08 14:43:47 +00:00
|
|
|
'server',
|
|
|
|
'donation',
|
|
|
|
'nav',
|
|
|
|
'tips'
|
|
|
|
]
|
|
|
|
};
|
|
|
|
|
2016-12-28 22:49:51 +00:00
|
|
|
export default async (req: express.Request, res: express.Response) => {
|
|
|
|
// Verify recaptcha
|
2017-01-16 23:26:59 +00:00
|
|
|
// ただしテスト時はこの機構は障害となるため無効にする
|
|
|
|
if (process.env.NODE_ENV !== 'test') {
|
|
|
|
const success = await recaptcha(req.body['g-recaptcha-response']);
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2017-01-16 23:26:59 +00:00
|
|
|
if (!success) {
|
|
|
|
res.status(400).send('recaptcha-failed');
|
|
|
|
return;
|
|
|
|
}
|
2016-12-28 22:49:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const username = req.body['username'];
|
|
|
|
const password = req.body['password'];
|
|
|
|
|
|
|
|
// Validate username
|
|
|
|
if (!validateUsername(username)) {
|
|
|
|
res.sendStatus(400);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-01-17 02:37:11 +00:00
|
|
|
// Validate password
|
2017-02-22 10:39:34 +00:00
|
|
|
if (!validatePassword(password)) {
|
2017-01-17 02:37:11 +00:00
|
|
|
res.sendStatus(400);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-12-28 22:49:51 +00:00
|
|
|
// Fetch exist user that same username
|
|
|
|
const usernameExist = await User
|
|
|
|
.count({
|
2018-03-29 05:48:47 +00:00
|
|
|
usernameLower: username.toLowerCase(),
|
2018-03-27 07:51:12 +00:00
|
|
|
host: null
|
2016-12-28 22:49:51 +00:00
|
|
|
}, {
|
|
|
|
limit: 1
|
|
|
|
});
|
|
|
|
|
|
|
|
// Check username already used
|
|
|
|
if (usernameExist !== 0) {
|
|
|
|
res.sendStatus(400);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Generate hash of password
|
2017-11-08 05:58:48 +00:00
|
|
|
const salt = await bcrypt.genSalt(8);
|
|
|
|
const hash = await bcrypt.hash(password, salt);
|
2016-12-28 22:49:51 +00:00
|
|
|
|
|
|
|
// Generate secret
|
2017-08-28 14:47:43 +00:00
|
|
|
const secret = generateUserToken();
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2017-11-08 14:43:47 +00: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 22:49:51 +00:00
|
|
|
// Create account
|
2017-09-16 08:31:37 +00:00
|
|
|
const account: IUser = await User.insert({
|
2018-03-29 05:48:47 +00:00
|
|
|
avatarId: null,
|
|
|
|
bannerId: null,
|
|
|
|
createdAt: new Date(),
|
2017-02-22 03:43:15 +00:00
|
|
|
description: null,
|
2018-03-29 05:48:47 +00:00
|
|
|
followersCount: 0,
|
|
|
|
followingCount: 0,
|
2018-04-05 16:37:24 +00:00
|
|
|
name: null,
|
2018-04-07 17:30:37 +00:00
|
|
|
notesCount: 0,
|
2018-03-30 12:55:23 +00:00
|
|
|
driveCapacity: 1024 * 1024 * 128, // 128MiB
|
2016-12-28 22:49:51 +00:00
|
|
|
username: username,
|
2018-03-29 05:48:47 +00:00
|
|
|
usernameLower: username.toLowerCase(),
|
2018-03-27 03:02:43 +00:00
|
|
|
host: null,
|
2018-03-29 05:48:47 +00:00
|
|
|
hostLower: null,
|
2018-04-07 18:58:11 +00: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-22 03:43:15 +00:00
|
|
|
}
|
2016-12-28 22:49:51 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// Response
|
2018-02-01 23:21:30 +00:00
|
|
|
res.send(await pack(account));
|
2016-12-28 22:49:51 +00:00
|
|
|
};
|