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