2022-09-17 20:27:08 +02:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2022-02-27 03:07:39 +01:00
|
|
|
import endpoints from '../endpoints.js';
|
2019-04-25 07:40:42 +02:00
|
|
|
|
|
|
|
export const meta = {
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: false,
|
2019-04-25 07:40:42 +02:00
|
|
|
|
|
|
|
tags: ['meta'],
|
2022-02-19 06:05:32 +01:00
|
|
|
} as const;
|
2019-04-25 07:40:42 +02:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2022-02-19 06:05:32 +01:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
endpoint: { type: 'string' },
|
2019-04-25 07:40:42 +02:00
|
|
|
},
|
2022-02-19 06:05:32 +01:00
|
|
|
required: ['endpoint'],
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2019-04-25 07:40:42 +02:00
|
|
|
|
2022-01-02 18:12:50 +01:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 20:27:08 +02: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 22:32:18 +02:00
|
|
|
params: Object.entries(ep.params.properties ?? {}).map(([k, v]) => ({
|
2022-09-17 20:27:08 +02:00
|
|
|
name: k,
|
2023-02-09 02:46:01 +01:00
|
|
|
type: v.type ? v.type.charAt(0).toUpperCase() + v.type.slice(1) : 'string',
|
2022-09-17 20:27:08 +02:00
|
|
|
})),
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|