2022-02-26 20:07:39 -06:00
|
|
|
import define from '../../../define.js';
|
|
|
|
import { RegistryItems } from '@/models/index.js';
|
2021-01-11 05:38:34 -06:00
|
|
|
|
|
|
|
export const meta = {
|
2022-01-18 07:27:10 -06:00
|
|
|
requireCredential: true,
|
2021-01-11 05:38:34 -06:00
|
|
|
|
|
|
|
secure: true,
|
2022-02-18 23:05:32 -06:00
|
|
|
} as const;
|
2021-01-11 05:38:34 -06:00
|
|
|
|
2022-02-19 22:15:40 -06:00
|
|
|
export const paramDef = {
|
2022-02-18 23:05:32 -06:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
scope: { type: 'array', default: [], items: {
|
|
|
|
type: 'string', pattern: /^[a-zA-Z0-9_]+$/.toString().slice(1, -1),
|
|
|
|
} },
|
2021-12-09 08:58:30 -06:00
|
|
|
},
|
2022-02-18 23:05:32 -06:00
|
|
|
required: [],
|
2022-01-18 07:27:10 -06:00
|
|
|
} as const;
|
2021-01-11 05:38:34 -06:00
|
|
|
|
2022-01-02 11:12:50 -06:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-18 23:05:32 -06:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2021-01-11 05:38:34 -06:00
|
|
|
const query = RegistryItems.createQueryBuilder('item')
|
|
|
|
.select('item.key')
|
|
|
|
.where('item.domain IS NULL')
|
|
|
|
.andWhere('item.userId = :userId', { userId: user.id })
|
|
|
|
.andWhere('item.scope = :scope', { scope: ps.scope });
|
|
|
|
|
|
|
|
const items = await query.getMany();
|
|
|
|
|
|
|
|
return items.map(x => x.key);
|
|
|
|
});
|