2018-08-17 04:17:23 -06:00
|
|
|
import rndstr from 'rndstr';
|
2018-11-01 22:47:44 -06:00
|
|
|
import define from '../../define';
|
2019-04-07 06:50:36 -06:00
|
|
|
import { RegistrationTickets } from '../../../../models';
|
|
|
|
import { genId } from '../../../../misc/gen-id';
|
2018-08-17 04:17:23 -06:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
desc: {
|
2021-03-06 06:34:11 -07:00
|
|
|
'ja-JP': '招待コードを発行します。',
|
|
|
|
'en-US': 'Issue an invitation code.'
|
2018-08-17 04:17:23 -06:00
|
|
|
},
|
|
|
|
|
2019-02-22 19:20:58 -07:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2020-02-15 05:33:32 -07:00
|
|
|
requireCredential: true as const,
|
2018-11-14 12:15:42 -07:00
|
|
|
requireModerator: true,
|
2018-08-17 04:17:23 -06:00
|
|
|
|
2021-03-06 06:34:11 -07: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 04:17:23 -06:00
|
|
|
};
|
|
|
|
|
2019-10-28 18:46:51 -06: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 04:17:23 -06:00
|
|
|
|
2021-03-21 06:27:09 -06:00
|
|
|
await RegistrationTickets.insert({
|
2019-04-07 06:50:36 -06:00
|
|
|
id: genId(),
|
2018-08-17 04:17:23 -06:00
|
|
|
createdAt: new Date(),
|
2019-10-28 18:46:51 -06:00
|
|
|
code,
|
2018-08-17 04:17:23 -06:00
|
|
|
});
|
|
|
|
|
2019-02-21 19:46:58 -07:00
|
|
|
return {
|
2019-10-28 18:46:51 -06:00
|
|
|
code,
|
2019-02-21 19:46:58 -07:00
|
|
|
};
|
|
|
|
});
|