f6154dc0af
Co-authored-by: MeiMei <30769358+mei23@users.noreply.github.com> Co-authored-by: Satsuki Yanagi <17376330+u1-liquid@users.noreply.github.com>
64 lines
1.5 KiB
TypeScript
64 lines
1.5 KiB
TypeScript
import * as Koa from 'koa';
|
|
import { fetchMeta } from '../../../misc/fetch-meta';
|
|
import * as recaptcha from 'recaptcha-promise';
|
|
import { Users, RegistrationTickets } from '../../../models';
|
|
import { signup } from '../common/signup';
|
|
|
|
export default async (ctx: Koa.Context) => {
|
|
const body = ctx.request.body;
|
|
|
|
const instance = await fetchMeta(true);
|
|
|
|
// Verify recaptcha
|
|
// ただしテスト時はこの機構は障害となるため無効にする
|
|
if (process.env.NODE_ENV !== 'test' && instance.enableRecaptcha && instance.recaptchaSecretKey) {
|
|
recaptcha.init({
|
|
secret_key: instance.recaptchaSecretKey
|
|
});
|
|
|
|
const success = await recaptcha(body['g-recaptcha-response']);
|
|
|
|
if (!success) {
|
|
ctx.throw(400, 'recaptcha-failed');
|
|
}
|
|
}
|
|
|
|
const username = body['username'];
|
|
const password = body['password'];
|
|
const host: string | null = process.env.NODE_ENV === 'test' ? (body['host'] || null) : null;
|
|
const invitationCode = body['invitationCode'];
|
|
|
|
if (instance && instance.disableRegistration) {
|
|
if (invitationCode == null || typeof invitationCode != 'string') {
|
|
ctx.status = 400;
|
|
return;
|
|
}
|
|
|
|
const ticket = await RegistrationTickets.findOne({
|
|
code: invitationCode
|
|
});
|
|
|
|
if (ticket == null) {
|
|
ctx.status = 400;
|
|
return;
|
|
}
|
|
|
|
RegistrationTickets.delete(ticket.id);
|
|
}
|
|
|
|
try {
|
|
const { account, secret } = await signup(username, password, host);
|
|
|
|
const res = await Users.pack(account, account, {
|
|
detail: true,
|
|
includeSecrets: true
|
|
});
|
|
|
|
(res as any).token = secret;
|
|
|
|
ctx.body = res;
|
|
} catch (e) {
|
|
ctx.throw(400, e);
|
|
}
|
|
};
|