summaryrefslogtreecommitdiff
path: root/packages/backend/src/server/api/endpoints/endpoint.ts
blob: c174126779c812a4ebf6df0754252ccacf0a5a07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import define from '../define.js';
import endpoints from '../endpoints.js';

export const meta = {
	requireCredential: false,

	tags: ['meta'],
} as const;

export const paramDef = {
	type: 'object',
	properties: {
		endpoint: { type: 'string' },
	},
	required: ['endpoint'],
} as const;

// eslint-disable-next-line import/no-default-export
export default define(meta, paramDef, async (ps) => {
	const ep = endpoints.find(x => x.name === ps.endpoint);
	if (ep == null) return null;
	return {
		params: Object.entries(ep.params.properties || {}).map(([k, v]) => ({
			name: k,
			type: v.type.charAt(0).toUpperCase() + v.type.slice(1),
		})),
	};
});