sharkey/src/server/api/endpoints/charts/notes.ts

38 lines
918 B
TypeScript
Raw Normal View History

2018-10-21 09:20:11 +09:00
import $ from 'cafy';
2018-11-02 13:47:44 +09:00
import define from '../../define';
2019-02-24 09:45:27 +09:00
import notesChart, { notesLogSchema } from '../../../../services/chart/notes';
import { convertLog } from '../../../../services/chart';
2018-10-21 09:20:11 +09:00
export const meta = {
2018-11-29 06:06:07 +09:00
stability: 'stable',
2018-10-21 09:20:11 +09:00
desc: {
2018-10-23 05:36:35 +09:00
'ja-JP': '投稿のチャートを取得します。'
2018-10-21 09:20:11 +09:00
},
tags: ['charts', 'notes'],
2018-10-21 09:20:11 +09:00
params: {
2018-11-02 03:32:24 +09:00
span: {
validator: $.str.or(['day', 'hour']),
2018-10-21 09:20:11 +09:00
desc: {
2018-10-22 17:06:53 +09:00
'ja-JP': '集計のスパン (day または hour)'
2018-10-21 09:20:11 +09:00
}
2018-11-02 03:32:24 +09:00
},
2018-10-21 09:20:11 +09:00
2018-11-02 03:32:24 +09:00
limit: {
2019-02-13 16:33:07 +09:00
validator: $.optional.num.range(1, 500),
2018-10-21 09:20:11 +09:00
default: 30,
desc: {
'ja-JP': '最大数。例えば 30 を指定したとすると、スパンが"day"の場合は30日分のデータが、スパンが"hour"の場合は30時間分のデータが返ります。'
}
2018-11-02 03:32:24 +09:00
},
},
2019-02-24 09:45:27 +09:00
res: convertLog(notesLogSchema),
2018-10-21 09:20:11 +09:00
};
export default define(meta, async (ps) => {
return await notesChart.getChart(ps.span as any, ps.limit);
});