mirror of
https://github.com/paricafe/misskey.git
synced 2025-01-10 20:10:50 -06:00
46 lines
1.2 KiB
TypeScript
46 lines
1.2 KiB
TypeScript
import { Inject, Injectable } from '@nestjs/common';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import type { RegistryItemsRepository } from '@/models/index.js';
|
|
import { DI } from '@/di-symbols.js';
|
|
|
|
export const meta = {
|
|
requireCredential: true,
|
|
|
|
secure: true,
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
scope: { type: 'array', default: [], items: {
|
|
type: 'string', pattern: /^[a-zA-Z0-9_]+$/.toString().slice(1, -1),
|
|
} },
|
|
},
|
|
required: [],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
@Injectable()
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
constructor(
|
|
@Inject(DI.registryItemsRepository)
|
|
private registryItemsRepository: RegistryItemsRepository,
|
|
) {
|
|
super(meta, paramDef, async (ps, me) => {
|
|
const query = this.registryItemsRepository.createQueryBuilder('item')
|
|
.where('item.domain IS NULL')
|
|
.andWhere('item.userId = :userId', { userId: me.id })
|
|
.andWhere('item.scope = :scope', { scope: ps.scope });
|
|
|
|
const items = await query.getMany();
|
|
|
|
const res = {} as Record<string, any>;
|
|
|
|
for (const item of items) {
|
|
res[item.key] = item.value;
|
|
}
|
|
|
|
return res;
|
|
});
|
|
}
|
|
}
|