2023-07-27 00:31:52 -05:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-02-16 08:09:41 -06:00
|
|
|
import { Injectable } from '@nestjs/common';
|
2022-09-17 13:27:08 -05:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2022-02-26 20:07:39 -06:00
|
|
|
import endpoints from '../endpoints.js';
|
2019-04-25 00:40:42 -05:00
|
|
|
|
|
|
|
export const meta = {
|
2022-01-18 07:27:10 -06:00
|
|
|
requireCredential: false,
|
2019-04-25 00:40:42 -05:00
|
|
|
|
|
|
|
tags: ['meta'],
|
2023-12-21 01:57:05 -06:00
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'object',
|
|
|
|
nullable: true,
|
|
|
|
properties: {
|
|
|
|
params: {
|
|
|
|
type: 'array',
|
|
|
|
items: {
|
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
name: { type: 'string' },
|
|
|
|
type: { type: 'string' },
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2022-02-18 23:05:32 -06:00
|
|
|
} as const;
|
2019-04-25 00:40:42 -05:00
|
|
|
|
2022-02-19 22:15:40 -06:00
|
|
|
export const paramDef = {
|
2022-02-18 23:05:32 -06:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
endpoint: { type: 'string' },
|
2019-04-25 00:40:42 -05:00
|
|
|
},
|
2022-02-18 23:05:32 -06:00
|
|
|
required: ['endpoint'],
|
2022-01-18 07:27:10 -06:00
|
|
|
} as const;
|
2019-04-25 00:40:42 -05:00
|
|
|
|
2022-09-17 13:27:08 -05:00
|
|
|
@Injectable()
|
2023-08-17 07:20:58 -05:00
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
2022-09-17 13:27:08 -05:00
|
|
|
constructor(
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps) => {
|
|
|
|
const ep = endpoints.find(x => x.name === ps.endpoint);
|
|
|
|
if (ep == null) return null;
|
|
|
|
return {
|
2022-09-19 15:32:18 -05:00
|
|
|
params: Object.entries(ep.params.properties ?? {}).map(([k, v]) => ({
|
2022-09-17 13:27:08 -05:00
|
|
|
name: k,
|
2023-02-08 19:46:01 -06:00
|
|
|
type: v.type ? v.type.charAt(0).toUpperCase() + v.type.slice(1) : 'string',
|
2022-09-17 13:27:08 -05:00
|
|
|
})),
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|