2022-02-27 02:07:39 +00:00
|
|
|
import define from '../../../define.js';
|
|
|
|
import { RegistryItems } from '@/models/index.js';
|
|
|
|
import { ApiError } from '../../../error.js';
|
2021-01-11 11:38:34 +00:00
|
|
|
|
|
|
|
export const meta = {
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: true,
|
2021-01-11 11:38:34 +00:00
|
|
|
|
|
|
|
secure: true,
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchKey: {
|
|
|
|
message: 'No such key.',
|
|
|
|
code: 'NO_SUCH_KEY',
|
2021-12-09 14:58:30 +00:00
|
|
|
id: '1fac4e8a-a6cd-4e39-a4a5-3a7e11f1b019',
|
2021-01-11 11:38:34 +00:00
|
|
|
},
|
|
|
|
},
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2021-01-11 11:38:34 +00:00
|
|
|
|
2022-02-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
key: { type: 'string' },
|
|
|
|
scope: { type: 'array', default: [], items: {
|
|
|
|
type: 'string', pattern: /^[a-zA-Z0-9_]+$/.toString().slice(1, -1),
|
|
|
|
} },
|
|
|
|
},
|
|
|
|
required: ['key'],
|
|
|
|
} 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 (ps, user) => {
|
2021-01-11 11:38:34 +00:00
|
|
|
const query = RegistryItems.createQueryBuilder('item')
|
|
|
|
.where('item.domain IS NULL')
|
|
|
|
.andWhere('item.userId = :userId', { userId: user.id })
|
|
|
|
.andWhere('item.key = :key', { key: ps.key })
|
|
|
|
.andWhere('item.scope = :scope', { scope: ps.scope });
|
|
|
|
|
|
|
|
const item = await query.getOne();
|
|
|
|
|
|
|
|
if (item == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchKey);
|
|
|
|
}
|
|
|
|
|
2021-01-17 15:52:41 +00:00
|
|
|
await RegistryItems.remove(item);
|
2021-01-11 11:38:34 +00:00
|
|
|
});
|