2023-07-27 05:31:52 +00:00
|
|
|
/*
|
2024-02-13 15:59:27 +00:00
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 05:31:52 +00:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2023-11-03 04:23:03 +00:00
|
|
|
import { RegistryApiService } from '@/core/RegistryApiService.js';
|
2022-02-27 02:07:39 +00:00
|
|
|
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,
|
2023-12-27 06:08:59 +00:00
|
|
|
kind: 'read:account',
|
2021-01-11 11:38:34 +00:00
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchKey: {
|
|
|
|
message: 'No such key.',
|
|
|
|
code: 'NO_SUCH_KEY',
|
2021-12-09 14:58:30 +00:00
|
|
|
id: '97a1e8e7-c0f7-47d2-957a-92e61256e01a',
|
2021-01-11 11:38:34 +00:00
|
|
|
},
|
|
|
|
},
|
2023-12-21 07:57:05 +00:00
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'object',
|
2024-02-13 15:50:11 +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),
|
|
|
|
} },
|
2023-11-03 04:23:03 +00:00
|
|
|
domain: { type: 'string', nullable: true },
|
2022-02-19 05:05:32 +00:00
|
|
|
},
|
2023-11-03 04:23:03 +00:00
|
|
|
required: ['key', 'scope'],
|
2022-02-19 05:05:32 +00:00
|
|
|
} as const;
|
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
@Injectable()
|
2023-08-17 12:20:58 +00:00
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
2022-09-17 18:27:08 +00:00
|
|
|
constructor(
|
2023-11-03 04:23:03 +00:00
|
|
|
private registryApiService: RegistryApiService,
|
2022-09-17 18:27:08 +00:00
|
|
|
) {
|
2023-11-03 04:23:03 +00:00
|
|
|
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);
|
2022-09-17 18:27:08 +00:00
|
|
|
|
|
|
|
if (item == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchKey);
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
updatedAt: item.updatedAt,
|
|
|
|
value: item.value,
|
|
|
|
};
|
|
|
|
});
|
2021-01-11 11:38:34 +00:00
|
|
|
}
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|