2018-08-17 19:17:23 +09:00
|
|
|
import rndstr from 'rndstr';
|
2018-11-02 13:47:44 +09:00
|
|
|
import define from '../../define';
|
2019-04-07 21:50:36 +09:00
|
|
|
import { RegistrationTickets } from '../../../../models';
|
|
|
|
import { genId } from '../../../../misc/gen-id';
|
2018-08-17 19:17:23 +09:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
desc: {
|
2021-03-06 22:34:11 +09:00
|
|
|
'ja-JP': '招待コードを発行します。',
|
|
|
|
'en-US': 'Issue an invitation code.'
|
2018-08-17 19:17:23 +09:00
|
|
|
},
|
|
|
|
|
2019-02-23 11:20:58 +09:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2020-02-15 21:33:32 +09:00
|
|
|
requireCredential: true as const,
|
2018-11-15 04:15:42 +09:00
|
|
|
requireModerator: true,
|
2018-08-17 19:17:23 +09:00
|
|
|
|
2021-03-06 22:34:11 +09:00
|
|
|
params: {},
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
properties: {
|
|
|
|
code: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
description: 'Give this code to the applicant for registration.',
|
|
|
|
example: '2ERUA5VR',
|
|
|
|
maxLength: 8,
|
|
|
|
minLength: 8
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-08-17 19:17:23 +09:00
|
|
|
};
|
|
|
|
|
2019-10-29 09:46:51 +09:00
|
|
|
export default define(meta, async () => {
|
|
|
|
const code = rndstr({
|
|
|
|
length: 8,
|
|
|
|
chars: '2-9A-HJ-NP-Z', // [0-9A-Z] w/o [01IO] (32 patterns)
|
|
|
|
});
|
2018-08-17 19:17:23 +09:00
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
await RegistrationTickets.save({
|
|
|
|
id: genId(),
|
2018-08-17 19:17:23 +09:00
|
|
|
createdAt: new Date(),
|
2019-10-29 09:46:51 +09:00
|
|
|
code,
|
2018-08-17 19:17:23 +09:00
|
|
|
});
|
|
|
|
|
2019-02-22 11:46:58 +09:00
|
|
|
return {
|
2019-10-29 09:46:51 +09:00
|
|
|
code,
|
2019-02-22 11:46:58 +09:00
|
|
|
};
|
|
|
|
});
|