sharkey/src/server/api/endpoints/charts/notes.ts
2019-02-24 09:45:27 +09:00

38 lines
918 B
TypeScript

import $ from 'cafy';
import define from '../../define';
import notesChart, { notesLogSchema } from '../../../../services/chart/notes';
import { convertLog } from '../../../../services/chart';
export const meta = {
stability: 'stable',
desc: {
'ja-JP': '投稿のチャートを取得します。'
},
tags: ['charts', 'notes'],
params: {
span: {
validator: $.str.or(['day', 'hour']),
desc: {
'ja-JP': '集計のスパン (day または hour)'
}
},
limit: {
validator: $.optional.num.range(1, 500),
default: 30,
desc: {
'ja-JP': '最大数。例えば 30 を指定したとすると、スパンが"day"の場合は30日分のデータが、スパンが"hour"の場合は30時間分のデータが返ります。'
}
},
},
res: convertLog(notesLogSchema),
};
export default define(meta, async (ps) => {
return await notesChart.getChart(ps.span as any, ps.limit);
});