2018-08-17 10:17:23 +00:00
|
|
|
import rndstr from 'rndstr';
|
2022-02-27 02:07:39 +00:00
|
|
|
import define from '../../define.js';
|
|
|
|
import { RegistrationTickets } from '@/models/index.js';
|
|
|
|
import { genId } from '@/misc/gen-id.js';
|
2018-08-17 10:17:23 +00:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: true,
|
2018-11-14 19:15:42 +00:00
|
|
|
requireModerator: true,
|
2018-08-17 10:17:23 +00:00
|
|
|
|
2021-03-06 13:34:11 +00:00
|
|
|
res: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 13:34:11 +00:00
|
|
|
properties: {
|
|
|
|
code: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 13:34:11 +00:00
|
|
|
example: '2ERUA5VR',
|
|
|
|
maxLength: 8,
|
2021-12-09 14:58:30 +00:00
|
|
|
minLength: 8,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2018-08-17 10:17:23 +00:00
|
|
|
|
2022-02-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00:00
|
|
|
type: 'object',
|
|
|
|
properties: {},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 05:05:32 +00:00
|
|
|
export default define(meta, paramDef, async () => {
|
2019-10-29 00:46:51 +00:00
|
|
|
const code = rndstr({
|
|
|
|
length: 8,
|
|
|
|
chars: '2-9A-HJ-NP-Z', // [0-9A-Z] w/o [01IO] (32 patterns)
|
|
|
|
});
|
2018-08-17 10:17:23 +00:00
|
|
|
|
2021-03-21 12:27:09 +00:00
|
|
|
await RegistrationTickets.insert({
|
2019-04-07 12:50:36 +00:00
|
|
|
id: genId(),
|
2018-08-17 10:17:23 +00:00
|
|
|
createdAt: new Date(),
|
2019-10-29 00:46:51 +00:00
|
|
|
code,
|
2018-08-17 10:17:23 +00:00
|
|
|
});
|
|
|
|
|
2019-02-22 02:46:58 +00:00
|
|
|
return {
|
2019-10-29 00:46:51 +00:00
|
|
|
code,
|
2019-02-22 02:46:58 +00:00
|
|
|
};
|
|
|
|
});
|