/* * SPDX-FileCopyrightText: syuilo and misskey-project * SPDX-License-Identifier: AGPL-3.0-only */ import { Inject, Injectable } from '@nestjs/common'; import { Endpoint } from '@/server/api/endpoint-base.js'; import { RegistryApiService } from '@/core/RegistryApiService.js'; import { ApiError } from '../../../error.js'; export const meta = { requireCredential: true, kind: 'read:account', errors: { noSuchKey: { message: 'No such key.', code: 'NO_SUCH_KEY', id: '97a1e8e7-c0f7-47d2-957a-92e61256e01a', }, }, res: { type: 'object', properties: { updatedAt: { type: 'string', optional: false, }, value: { optional: false, }, }, }, } as const; export const paramDef = { type: 'object', properties: { key: { type: 'string' }, scope: { type: 'array', default: [], items: { type: 'string', pattern: /^[a-zA-Z0-9_]+$/.toString().slice(1, -1), } }, domain: { type: 'string', nullable: true }, }, required: ['key', 'scope'], } as const; @Injectable() export default class extends Endpoint { // eslint-disable-line import/no-default-export constructor( private registryApiService: RegistryApiService, ) { super(meta, paramDef, async (ps, me, accessToken) => { const item = await this.registryApiService.getItem(me.id, accessToken != null ? accessToken.id : (ps.domain ?? null), ps.scope, ps.key); if (item == null) { throw new ApiError(meta.errors.noSuchKey); } return { updatedAt: item.updatedAt.toISOString(), value: item.value, }; }); } }