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