2018-04-12 23:06:18 +02:00
|
|
|
import * as Koa from 'koa';
|
2019-04-24 01:11:19 +02:00
|
|
|
import { fetchMeta } from '../../../misc/fetch-meta';
|
2020-04-28 07:29:33 +02:00
|
|
|
import { verify } from 'hcaptcha';
|
2019-02-03 14:21:55 +01:00
|
|
|
import * as recaptcha from 'recaptcha-promise';
|
2020-01-29 20:37:25 +01:00
|
|
|
import { Users, RegistrationTickets } from '../../../models';
|
|
|
|
import { signup } from '../common/signup';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2019-11-24 09:09:32 +01:00
|
|
|
export default async (ctx: Koa.Context) => {
|
|
|
|
const body = ctx.request.body;
|
2018-07-23 06:56:25 +02:00
|
|
|
|
2019-04-24 01:11:19 +02:00
|
|
|
const instance = await fetchMeta(true);
|
2018-11-06 16:08:21 +01:00
|
|
|
|
2020-04-28 07:29:33 +02:00
|
|
|
// Verify *Captcha
|
2017-01-17 00:26:59 +01:00
|
|
|
// ただしテスト時はこの機構は障害となるため無効にする
|
2020-05-02 03:28:45 +02:00
|
|
|
if (process.env.NODE_ENV !== 'test') {
|
2020-05-02 03:31:37 +02:00
|
|
|
if (instance.enableHcaptcha && instance.hcaptchaSecretKey) {
|
2020-05-02 03:28:45 +02:00
|
|
|
const success = await verify(instance.hcaptchaSecretKey, body['hcaptcha-response']).then(
|
|
|
|
({ success }) => success,
|
|
|
|
() => false,
|
|
|
|
);
|
|
|
|
|
|
|
|
if (!success) {
|
|
|
|
ctx.throw(400, 'hcaptcha-failed');
|
|
|
|
}
|
2020-04-28 07:29:33 +02:00
|
|
|
}
|
2018-11-06 16:08:21 +01:00
|
|
|
|
2020-05-02 03:28:45 +02:00
|
|
|
if (instance.enableRecaptcha && instance.recaptchaSecretKey) {
|
|
|
|
recaptcha.init({
|
|
|
|
secret_key: instance.recaptchaSecretKey
|
|
|
|
});
|
|
|
|
|
|
|
|
const success = await recaptcha(body['g-recaptcha-response']);
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2020-05-02 03:28:45 +02:00
|
|
|
if (!success) {
|
|
|
|
ctx.throw(400, 'recaptcha-failed');
|
|
|
|
}
|
2017-01-17 00:26:59 +01:00
|
|
|
}
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
2018-07-23 06:56:25 +02:00
|
|
|
const username = body['username'];
|
|
|
|
const password = body['password'];
|
2019-04-13 08:18:12 +02:00
|
|
|
const host: string | null = process.env.NODE_ENV === 'test' ? (body['host'] || null) : null;
|
2018-08-17 12:17:23 +02:00
|
|
|
const invitationCode = body['invitationCode'];
|
|
|
|
|
2018-11-05 23:14:43 +01:00
|
|
|
if (instance && instance.disableRegistration) {
|
2018-08-17 12:17:23 +02:00
|
|
|
if (invitationCode == null || typeof invitationCode != 'string') {
|
|
|
|
ctx.status = 400;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
const ticket = await RegistrationTickets.findOne({
|
2018-08-17 12:17:23 +02:00
|
|
|
code: invitationCode
|
|
|
|
});
|
|
|
|
|
|
|
|
if (ticket == null) {
|
|
|
|
ctx.status = 400;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
RegistrationTickets.delete(ticket.id);
|
2018-08-17 12:17:23 +02:00
|
|
|
}
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
try {
|
|
|
|
const { account, secret } = await signup(username, password, host);
|
2019-04-11 18:52:25 +02:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
const res = await Users.pack(account, account, {
|
|
|
|
detail: true,
|
|
|
|
includeSecrets: true
|
2019-07-09 20:47:07 +02:00
|
|
|
});
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
(res as any).token = secret;
|
2018-06-16 03:40:53 +02:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
ctx.body = res;
|
|
|
|
} catch (e) {
|
|
|
|
ctx.throw(400, e);
|
|
|
|
}
|
2016-12-28 23:49:51 +01:00
|
|
|
};
|