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