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

148 lines
2.8 KiB
TypeScript
Raw Normal View History

2017-11-08 16:43:47 +02:00
import * as uuid from 'uuid';
2016-12-29 00:49:51 +02:00
import * as express from 'express';
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';
2017-01-02 23:03:19 +02:00
import 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';
2016-12-29 00:49:51 +02:00
recaptcha.init({
secret_key: config.recaptcha.secret_key
2016-12-29 00:49:51 +02:00
});
2017-11-08 16:43:47 +02:00
const home = {
left: [
'profile',
'calendar',
'activity',
2018-02-22 18:27:02 +02:00
'rss',
2017-11-08 16:43:47 +02:00
'trends',
'photo-stream',
'version'
],
right: [
'broadcast',
'notifications',
2018-02-22 18:27:02 +02:00
'users',
'polls',
2017-11-08 16:43:47 +02:00
'server',
'donation',
'nav',
'tips'
]
};
2016-12-29 00:49:51 +02:00
export default async (req: express.Request, res: express.Response) => {
// Verify recaptcha
2017-01-17 01:26:59 +02:00
// ただしテスト時はこの機構は障害となるため無効にする
if (process.env.NODE_ENV !== 'test') {
const success = await recaptcha(req.body['g-recaptcha-response']);
2016-12-29 00:49:51 +02:00
2017-01-17 01:26:59 +02:00
if (!success) {
res.status(400).send('recaptcha-failed');
return;
}
2016-12-29 00:49:51 +02:00
}
const username = req.body['username'];
const password = req.body['password'];
// Validate username
if (!validateUsername(username)) {
res.sendStatus(400);
return;
}
2017-01-17 04:37:11 +02:00
// Validate password
2017-02-22 12:39:34 +02:00
if (!validatePassword(password)) {
2017-01-17 04:37:11 +02:00
res.sendStatus(400);
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
}, {
limit: 1
});
// Check username already used
if (usernameExist !== 0) {
res.sendStatus(400);
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
2017-11-08 16:43:47 +02: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-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,
driveCapacity: 1024 * 1024 * 128, // 128MiB
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-03-29 08:48:47 +03:00
hostLower: null,
2018-04-07 21:58:11 +03: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 05:43:15 +02:00
}
2016-12-29 00:49:51 +02:00
});
// Response
2018-02-02 01:21:30 +02:00
res.send(await pack(account));
2016-12-29 00:49:51 +02:00
};