2018-08-17 13:17:23 +03:00
|
|
|
import rndstr from 'rndstr';
|
2021-08-19 15:55:45 +03:00
|
|
|
import define from '../../define';
|
|
|
|
import { RegistrationTickets } from '@/models/index';
|
|
|
|
import { genId } from '@/misc/gen-id';
|
2018-08-17 13:17:23 +03:00
|
|
|
|
|
|
|
export const meta = {
|
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,
|
|
|
|
example: '2ERUA5VR',
|
|
|
|
maxLength: 8,
|
2021-12-09 16:58:30 +02:00
|
|
|
minLength: 8,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2018-08-17 13:17:23 +03:00
|
|
|
};
|
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
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
|
|
|
};
|
|
|
|
});
|