misskey/src/api/private/signup.ts

110 lines
2.3 KiB
TypeScript
Raw Normal View History

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';
2016-12-28 22:49:51 +00:00
import rndstr from 'rndstr';
2017-01-02 21:03:19 +00:00
import recaptcha = require('recaptcha-promise');
2016-12-28 22:49:51 +00:00
import User from '../models/user';
2017-02-22 10:39:34 +00:00
import { validateUsername, validatePassword } from '../models/user';
2016-12-28 22:49:51 +00:00
import serialize from '../serializers/user';
2017-01-16 23:26:59 +00:00
import config from '../../conf';
2016-12-28 22:49:51 +00:00
recaptcha.init({
secret_key: config.recaptcha.secretKey
});
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'];
const name = '名無し';
// 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({
username_lower: username.toLowerCase()
}, {
limit: 1
});
// Check username already used
if (usernameExist !== 0) {
res.sendStatus(400);
return;
}
// Generate hash of password
2017-01-18 05:19:50 +00:00
const salt = bcrypt.genSaltSync(8);
2016-12-28 22:49:51 +00:00
const hash = bcrypt.hashSync(password, salt);
// Generate secret
2017-04-14 11:45:37 +00:00
const secret = `!${rndstr('a-zA-Z0-9', 32)}`;
2016-12-28 22:49:51 +00:00
// Create account
2017-01-17 01:39:21 +00:00
const account = await User.insert({
2016-12-28 22:49:51 +00:00
token: secret,
avatar_id: null,
banner_id: null,
created_at: new Date(),
2017-02-22 03:43:15 +00:00
description: null,
2016-12-28 22:49:51 +00:00
email: null,
followers_count: 0,
following_count: 0,
links: null,
name: name,
password: hash,
posts_count: 0,
likes_count: 0,
liked_count: 0,
drive_capacity: 1073741824, // 1GB
username: username,
2017-02-22 03:43:15 +00:00
username_lower: username.toLowerCase(),
profile: {
bio: null,
birthday: null,
blood: null,
gender: null,
handedness: null,
height: null,
location: null,
weight: null
}
2016-12-28 22:49:51 +00:00
});
// Response
res.send(await serialize(account));
// 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
}
});
}
};