2023-02-16 14:09:41 +00:00
|
|
|
import { Injectable } from '@nestjs/common';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2022-02-27 02:07:39 +00:00
|
|
|
import endpoints from '../endpoints.js';
|
2019-04-25 05:40:42 +00:00
|
|
|
|
|
|
|
export const meta = {
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: false,
|
2019-04-25 05:40:42 +00:00
|
|
|
|
|
|
|
tags: ['meta'],
|
2022-02-19 05:05:32 +00:00
|
|
|
} as const;
|
2019-04-25 05:40:42 +00:00
|
|
|
|
2022-02-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
endpoint: { type: 'string' },
|
2019-04-25 05:40:42 +00:00
|
|
|
},
|
2022-02-19 05:05:32 +00:00
|
|
|
required: ['endpoint'],
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2019-04-25 05:40:42 +00:00
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 18:27:08 +00:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps) => {
|
|
|
|
const ep = endpoints.find(x => x.name === ps.endpoint);
|
|
|
|
if (ep == null) return null;
|
|
|
|
return {
|
2022-09-19 20:32:18 +00:00
|
|
|
params: Object.entries(ep.params.properties ?? {}).map(([k, v]) => ({
|
2022-09-17 18:27:08 +00:00
|
|
|
name: k,
|
2023-02-09 01:46:01 +00:00
|
|
|
type: v.type ? v.type.charAt(0).toUpperCase() + v.type.slice(1) : 'string',
|
2022-09-17 18:27:08 +00:00
|
|
|
})),
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|