2022-02-27 04:07:39 +02:00
|
|
|
import { getJsonSchema } from '@/services/chart/core.js';
|
|
|
|
import { federationChart } from '@/services/chart/index.js';
|
2022-06-25 12:26:31 +03:00
|
|
|
import define from '../../define.js';
|
2018-10-24 00:34:04 +03:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 04:20:58 +02:00
|
|
|
tags: ['charts'],
|
|
|
|
|
2022-02-19 07:05:32 +02:00
|
|
|
res: getJsonSchema(federationChart.schema),
|
2022-06-25 12:26:31 +03:00
|
|
|
|
|
|
|
allowGet: true,
|
|
|
|
cacheSec: 60 * 60,
|
2022-02-19 07:05:32 +02:00
|
|
|
} as const;
|
2020-03-06 18:04:36 +02:00
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
span: { type: 'string', enum: ['day', 'hour'] },
|
|
|
|
limit: { type: 'integer', minimum: 1, maximum: 500, default: 30 },
|
|
|
|
offset: { type: 'integer', nullable: true, default: null },
|
2019-02-23 04:20:58 +02:00
|
|
|
},
|
2022-02-19 07:05:32 +02:00
|
|
|
required: ['span'],
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2018-10-24 00:34:04 +03:00
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 07:05:32 +02:00
|
|
|
export default define(meta, paramDef, async (ps) => {
|
|
|
|
return await federationChart.getChart(ps.span, ps.limit, ps.offset ? new Date(ps.offset) : null);
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|