2019-02-05 04:48:08 +02:00
|
|
|
import $ from 'cafy';
|
2021-08-19 12:33:41 +03:00
|
|
|
import { ID } from '@/misc/cafy-id.js';
|
|
|
|
import define from '../../define.js';
|
|
|
|
import { Signins } from '@/models/index.js';
|
|
|
|
import { makePaginationQuery } from '../../common/make-pagination-query.js';
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2018-07-16 22:36:44 +03:00
|
|
|
export const meta = {
|
2020-02-15 14:33:32 +02:00
|
|
|
requireCredential: true as const,
|
2018-07-16 22:36:44 +03:00
|
|
|
|
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: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2018-11-01 20:32:24 +02:00
|
|
|
default: 10
|
|
|
|
},
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
sinceId: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
untilId: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 20:32:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
export default define(meta, async (ps, user) => {
|
2019-04-07 15:50:36 +03:00
|
|
|
const query = makePaginationQuery(Signins.createQueryBuilder('signin'), ps.sinceId, ps.untilId)
|
|
|
|
.andWhere(`signin.userId = :meId`, { meId: user.id });
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2019-04-12 19:43:22 +03:00
|
|
|
const history = await query.take(ps.limit!).getMany();
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
return await Promise.all(history.map(record => Signins.pack(record)));
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|