2023-07-27 05:31:52 +00:00
|
|
|
/*
|
2024-02-13 15:59:27 +00:00
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 05:31:52 +00:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2023-09-15 05:28:29 +00:00
|
|
|
import type { SigninsRepository } from '@/models/_.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { QueryService } from '@/core/QueryService.js';
|
|
|
|
import { SigninEntityService } from '@/core/entities/SigninEntityService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2018-07-16 19:36:44 +00:00
|
|
|
export const meta = {
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: true,
|
2018-11-01 18:32:24 +00:00
|
|
|
secure: true,
|
2023-12-03 03:45:18 +00:00
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
items: {
|
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
ref: 'Signin',
|
|
|
|
},
|
|
|
|
},
|
2022-02-19 05:05:32 +00:00
|
|
|
} as const;
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2022-02-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 },
|
|
|
|
sinceId: { type: 'string', format: 'misskey:id' },
|
|
|
|
untilId: { type: 'string', format: 'misskey:id' },
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
2022-02-19 05:05:32 +00:00
|
|
|
required: [],
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2018-11-01 18:32:24 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
@Injectable()
|
2023-08-17 12:20:58 +00:00
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
2022-09-17 18:27:08 +00:00
|
|
|
constructor(
|
|
|
|
@Inject(DI.signinsRepository)
|
|
|
|
private signinsRepository: SigninsRepository,
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
private signinEntityService: SigninEntityService,
|
|
|
|
private queryService: QueryService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const query = this.queryService.makePaginationQuery(this.signinsRepository.createQueryBuilder('signin'), ps.sinceId, ps.untilId)
|
|
|
|
.andWhere('signin.userId = :meId', { meId: me.id });
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2023-07-08 07:53:07 +00:00
|
|
|
const history = await query.limit(ps.limit).getMany();
|
2022-09-17 18:27:08 +00:00
|
|
|
|
|
|
|
return await Promise.all(history.map(record => this.signinEntityService.pack(record)));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|