Sharkey/src/server/api/endpoints/i/signin_history.ts

62 lines
1.1 KiB
TypeScript
Raw Normal View History

2018-11-01 20:32:24 +02:00
import $ from 'cafy'; import ID, { transform } from '../../../../misc/cafy-id';
2018-03-29 14:32:18 +03:00
import Signin, { pack } from '../../../../models/signin';
2018-11-02 06:47:44 +02:00
import define from '../../define';
2016-12-29 00:49:51 +02:00
2018-07-16 22:36:44 +03:00
export const meta = {
requireCredential: true,
2018-11-01 20:32:24 +02:00
secure: true,
2016-12-29 00:49:51 +02:00
2018-11-01 20:32:24 +02:00
params: {
limit: {
validator: $.num.optional.range(1, 100),
default: 10
},
2016-12-29 00:49:51 +02:00
2018-11-01 20:32:24 +02:00
sinceId: {
validator: $.type(ID).optional,
transform: transform,
},
untilId: {
validator: $.type(ID).optional,
transform: transform,
}
}
};
2018-11-02 06:47:44 +02:00
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
2018-03-29 08:48:47 +03:00
// Check if both of sinceId and untilId is specified
2018-11-01 20:32:24 +02:00
if (ps.sinceId && ps.untilId) {
2018-03-29 08:48:47 +03:00
return rej('cannot set sinceId and untilId');
2016-12-29 00:49:51 +02:00
}
const query = {
2018-03-29 08:48:47 +03:00
userId: user._id
2017-03-03 01:56:07 +02:00
} as any;
2016-12-29 00:49:51 +02:00
const sort = {
_id: -1
};
2018-11-01 20:32:24 +02:00
if (ps.sinceId) {
2016-12-29 00:49:51 +02:00
sort._id = 1;
query._id = {
2018-11-01 20:32:24 +02:00
$gt: ps.sinceId
2016-12-29 00:49:51 +02:00
};
2018-11-01 20:32:24 +02:00
} else if (ps.untilId) {
2016-12-29 00:49:51 +02:00
query._id = {
2018-11-01 20:32:24 +02:00
$lt: ps.untilId
2016-12-29 00:49:51 +02:00
};
}
const history = await Signin
2017-01-17 04:11:22 +02:00
.find(query, {
2018-11-01 20:32:24 +02:00
limit: ps.limit,
2016-12-29 00:49:51 +02:00
sort: sort
2017-01-17 04:11:22 +02:00
});
2016-12-29 00:49:51 +02:00
// Serialize
2018-11-01 20:32:24 +02:00
res(await Promise.all(history.map(record => pack(record))));
2018-11-02 06:47:44 +02:00
}));