2022-09-17 18:27:08 +00:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2022-09-20 20:33:11 +00:00
|
|
|
import type { UserIpsRepository } from '@/models/index.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-07-02 06:12:11 +00:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['admin'],
|
|
|
|
|
|
|
|
requireCredential: true,
|
2023-01-12 12:02:26 +00:00
|
|
|
requireModerator: true,
|
2022-07-02 06:12:11 +00:00
|
|
|
} as const;
|
|
|
|
|
|
|
|
export const paramDef = {
|
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
userId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['userId'],
|
|
|
|
} as const;
|
|
|
|
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 18:27:08 +00:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.userIpsRepository)
|
|
|
|
private userIpsRepository: UserIpsRepository,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const ips = await this.userIpsRepository.find({
|
|
|
|
where: { userId: ps.userId },
|
|
|
|
order: { createdAt: 'DESC' },
|
|
|
|
take: 30,
|
|
|
|
});
|
2022-07-02 06:12:11 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
return ips.map(x => ({
|
|
|
|
ip: x.ip,
|
|
|
|
createdAt: x.createdAt.toISOString(),
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|