mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 14:53:08 +02:00
94 lines
1.9 KiB
TypeScript
94 lines
1.9 KiB
TypeScript
|
import * as express from 'express';
|
||
|
import * as bcrypt from 'bcrypt';
|
||
|
import rndstr from 'rndstr';
|
||
|
const recaptcha = require('recaptcha-promise');
|
||
|
import User from '../models/user';
|
||
|
import { validateUsername } from '../models/user';
|
||
|
import serialize from '../serializers/user';
|
||
|
|
||
|
recaptcha.init({
|
||
|
secret_key: config.recaptcha.secretKey
|
||
|
});
|
||
|
|
||
|
export default async (req: express.Request, res: express.Response) => {
|
||
|
// Verify recaptcha
|
||
|
const success = await recaptcha(req.body['g-recaptcha-response']);
|
||
|
|
||
|
if (!success) {
|
||
|
res.status(400).send('recaptcha-failed');
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
const username = req.body['username'];
|
||
|
const password = req.body['password'];
|
||
|
const name = '名無し';
|
||
|
|
||
|
// Validate username
|
||
|
if (!validateUsername(username)) {
|
||
|
res.sendStatus(400);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
// 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
|
||
|
const salt = bcrypt.genSaltSync(14);
|
||
|
const hash = bcrypt.hashSync(password, salt);
|
||
|
|
||
|
// Generate secret
|
||
|
const secret = rndstr('a-zA-Z0-9', 32);
|
||
|
|
||
|
// Create account
|
||
|
const inserted = await User.insert({
|
||
|
token: secret,
|
||
|
avatar_id: null,
|
||
|
banner_id: null,
|
||
|
birthday: null,
|
||
|
created_at: new Date(),
|
||
|
bio: null,
|
||
|
email: null,
|
||
|
followers_count: 0,
|
||
|
following_count: 0,
|
||
|
links: null,
|
||
|
location: null,
|
||
|
name: name,
|
||
|
password: hash,
|
||
|
posts_count: 0,
|
||
|
likes_count: 0,
|
||
|
liked_count: 0,
|
||
|
drive_capacity: 1073741824, // 1GB
|
||
|
username: username,
|
||
|
username_lower: username.toLowerCase()
|
||
|
});
|
||
|
|
||
|
const account = inserted.ops[0];
|
||
|
|
||
|
// 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
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
};
|