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