2018-10-21 03:20:11 +03:00
|
|
|
import $ from 'cafy';
|
2021-08-19 15:55:45 +03:00
|
|
|
import define from '../../define';
|
|
|
|
import { convertLog } from '@/services/chart/core';
|
|
|
|
import { driveChart } from '@/services/chart/index';
|
2018-10-21 03:20:11 +03:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 04:20:58 +02:00
|
|
|
tags: ['charts', 'drive'],
|
|
|
|
|
2018-10-21 03:20:11 +03:00
|
|
|
params: {
|
2018-11-01 20:32:24 +02:00
|
|
|
span: {
|
|
|
|
validator: $.str.or(['day', 'hour']),
|
|
|
|
},
|
2018-10-21 03:20:11 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
limit: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.num.range(1, 500),
|
2018-10-21 03:20:11 +03:00
|
|
|
default: 30,
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2020-03-06 18:04:36 +02:00
|
|
|
|
|
|
|
offset: {
|
2020-03-07 04:23:31 +02:00
|
|
|
validator: $.optional.nullable.num,
|
|
|
|
default: null,
|
2020-03-06 18:04:36 +02:00
|
|
|
},
|
2019-02-23 04:20:58 +02:00
|
|
|
},
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
res: convertLog(driveChart.schema),
|
2018-10-21 03:20:11 +03:00
|
|
|
};
|
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
export default define(meta, async (ps) => {
|
2020-03-07 04:23:31 +02:00
|
|
|
return await driveChart.getChart(ps.span as any, ps.limit!, ps.offset ? new Date(ps.offset) : null);
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|