2022-09-18 03:27:08 +09:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2022-09-21 05:33:11 +09:00
|
|
|
import type { UsersRepository, SigninsRepository, UserProfilesRepository } from '@/models/index.js';
|
2022-09-18 03:27:08 +09:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2023-01-12 21:02:26 +09:00
|
|
|
import { RoleService } from '@/core/RoleService.js';
|
|
|
|
import { RoleEntityService } from '@/core/entities/RoleEntityService.js';
|
2018-11-23 08:01:14 +09:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 11:20:58 +09:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2022-01-18 22:27:10 +09:00
|
|
|
requireCredential: true,
|
2018-11-23 08:01:14 +09:00
|
|
|
requireModerator: true,
|
|
|
|
|
2021-03-06 22:34:11 +09:00
|
|
|
res: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'object',
|
|
|
|
nullable: false, optional: false,
|
2021-12-09 23:58:30 +09:00
|
|
|
},
|
2022-01-18 22:27:10 +09:00
|
|
|
} as const;
|
2018-11-23 08:01:14 +09:00
|
|
|
|
2022-02-20 13:15:40 +09:00
|
|
|
export const paramDef = {
|
2022-02-19 14:05:32 +09:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
userId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['userId'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-03 02:12:50 +09:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-18 03:27:08 +09:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
private usersRepository: UsersRepository,
|
2018-11-23 08:01:14 +09:00
|
|
|
|
2022-09-18 03:27:08 +09:00
|
|
|
@Inject(DI.userProfilesRepository)
|
|
|
|
private userProfilesRepository: UserProfilesRepository,
|
2018-11-23 08:01:14 +09:00
|
|
|
|
2022-09-18 03:27:08 +09:00
|
|
|
@Inject(DI.signinsRepository)
|
|
|
|
private signinsRepository: SigninsRepository,
|
2023-01-12 21:02:26 +09:00
|
|
|
|
|
|
|
private roleService: RoleService,
|
|
|
|
private roleEntityService: RoleEntityService,
|
2022-09-18 03:27:08 +09:00
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const [user, profile] = await Promise.all([
|
|
|
|
this.usersRepository.findOneBy({ id: ps.userId }),
|
|
|
|
this.userProfilesRepository.findOneBy({ userId: ps.userId }),
|
|
|
|
]);
|
2018-11-23 08:01:14 +09:00
|
|
|
|
2022-09-18 03:27:08 +09:00
|
|
|
if (user == null || profile == null) {
|
|
|
|
throw new Error('user not found');
|
|
|
|
}
|
2022-06-03 23:14:50 +09:00
|
|
|
|
2023-01-12 21:02:26 +09:00
|
|
|
const isModerator = await this.roleService.isModerator(user);
|
2023-01-15 20:52:53 +09:00
|
|
|
const isSilenced = !(await this.roleService.getUserPolicies(user.id)).canPublicNote;
|
2023-01-12 21:02:26 +09:00
|
|
|
|
2022-09-18 03:27:08 +09:00
|
|
|
const _me = await this.usersRepository.findOneByOrFail({ id: me.id });
|
2023-01-12 21:02:26 +09:00
|
|
|
if (!await this.roleService.isAdministrator(_me) && await this.roleService.isAdministrator(user)) {
|
2022-09-18 03:27:08 +09:00
|
|
|
throw new Error('cannot show info of admin');
|
|
|
|
}
|
2022-06-03 23:14:50 +09:00
|
|
|
|
2022-09-18 03:27:08 +09:00
|
|
|
const signins = await this.signinsRepository.findBy({ userId: user.id });
|
|
|
|
|
2023-01-12 21:02:26 +09:00
|
|
|
const roles = await this.roleService.getUserRoles(user.id);
|
|
|
|
|
2022-09-18 03:27:08 +09:00
|
|
|
return {
|
|
|
|
email: profile.email,
|
|
|
|
emailVerified: profile.emailVerified,
|
|
|
|
autoAcceptFollowed: profile.autoAcceptFollowed,
|
|
|
|
noCrawle: profile.noCrawle,
|
|
|
|
alwaysMarkNsfw: profile.alwaysMarkNsfw,
|
|
|
|
autoSensitive: profile.autoSensitive,
|
|
|
|
carefulBot: profile.carefulBot,
|
|
|
|
injectFeaturedNote: profile.injectFeaturedNote,
|
|
|
|
receiveAnnouncementEmail: profile.receiveAnnouncementEmail,
|
|
|
|
mutedWords: profile.mutedWords,
|
|
|
|
mutedInstances: profile.mutedInstances,
|
|
|
|
mutingNotificationTypes: profile.mutingNotificationTypes,
|
2023-01-12 21:02:26 +09:00
|
|
|
isModerator: isModerator,
|
|
|
|
isSilenced: isSilenced,
|
2022-09-18 03:27:08 +09:00
|
|
|
isSuspended: user.isSuspended,
|
|
|
|
lastActiveDate: user.lastActiveDate,
|
|
|
|
moderationNote: profile.moderationNote,
|
|
|
|
signins,
|
2023-01-15 20:52:53 +09:00
|
|
|
policies: await this.roleService.getUserPolicies(user.id),
|
2023-02-22 14:43:18 +09:00
|
|
|
roles: await this.roleEntityService.packMany(roles, me),
|
2022-09-18 03:27:08 +09:00
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|