rudeshark.net/src/server/api/endpoints/charts/users.ts

38 lines
924 B
TypeScript
Raw Normal View History

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