2022-09-17 18:27:08 +00:00
|
|
|
import { In, IsNull } from 'typeorm';
|
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2022-09-20 20:33:11 +00:00
|
|
|
import type { UsersRepository } from '@/models/index.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import type { User } from '@/models/entities/User.js';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { UserEntityService } from '@/core/entities/UserEntityService.js';
|
|
|
|
import { ResolveUserService } from '@/core/remote/ResolveUserService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-02-27 02:07:39 +00:00
|
|
|
import { ApiError } from '../../error.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { ApiLoggerService } from '../../ApiLoggerService.js';
|
|
|
|
import type { FindOptionsWhere } from 'typeorm';
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
export const meta = {
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['users'],
|
|
|
|
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: false,
|
2018-03-27 07:51:12 +00:00
|
|
|
|
2022-06-10 05:25:20 +00:00
|
|
|
description: 'Show the properties of a user.',
|
|
|
|
|
2019-02-23 02:20:58 +00:00
|
|
|
res: {
|
2022-01-18 13:27:10 +00:00
|
|
|
optional: false, nullable: false,
|
|
|
|
oneOf: [
|
|
|
|
{
|
|
|
|
type: 'object',
|
|
|
|
ref: 'UserDetailed',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'array',
|
|
|
|
items: {
|
|
|
|
type: 'object',
|
|
|
|
ref: 'UserDetailed',
|
2022-04-05 15:04:25 +00:00
|
|
|
},
|
2022-01-18 13:27:10 +00:00
|
|
|
},
|
2022-04-05 15:04:25 +00:00
|
|
|
],
|
2019-02-23 02:20:58 +00:00
|
|
|
},
|
|
|
|
|
2019-02-22 02:46:58 +00:00
|
|
|
errors: {
|
|
|
|
failedToResolveRemoteUser: {
|
|
|
|
message: 'Failed to resolve remote user.',
|
|
|
|
code: 'FAILED_TO_RESOLVE_REMOTE_USER',
|
|
|
|
id: 'ef7b9be4-9cba-4e6f-ab41-90ed171c7d3c',
|
2022-01-18 13:27:10 +00:00
|
|
|
kind: 'server',
|
2019-02-22 02:46:58 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
noSuchUser: {
|
|
|
|
message: 'No such user.',
|
|
|
|
code: 'NO_SUCH_USER',
|
2021-12-09 14:58:30 +00:00
|
|
|
id: '4362f8dc-731f-4ad8-a694-be5a88922a24',
|
2019-02-22 02:46:58 +00:00
|
|
|
},
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2018-11-01 18:32:24 +00:00
|
|
|
|
2022-02-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00:00
|
|
|
type: 'object',
|
2022-04-03 04:57:26 +00:00
|
|
|
anyOf: [
|
|
|
|
{
|
|
|
|
properties: {
|
|
|
|
userId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['userId'],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
properties: {
|
|
|
|
userIds: { type: 'array', uniqueItems: true, items: {
|
|
|
|
type: 'string', format: 'misskey:id',
|
|
|
|
} },
|
|
|
|
},
|
|
|
|
required: ['userIds'],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
properties: {
|
|
|
|
username: { type: 'string' },
|
|
|
|
host: {
|
|
|
|
type: 'string',
|
|
|
|
nullable: true,
|
|
|
|
description: 'The local host is represented with `null`.',
|
|
|
|
},
|
|
|
|
},
|
2022-04-05 15:04:25 +00:00
|
|
|
required: ['username'],
|
2022-04-03 04:57:26 +00:00
|
|
|
},
|
|
|
|
],
|
2022-02-19 05:05:32 +00:00
|
|
|
} as const;
|
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// 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.usersRepository)
|
|
|
|
private usersRepository: UsersRepository,
|
|
|
|
|
|
|
|
private userEntityService: UserEntityService,
|
|
|
|
private resolveUserService: ResolveUserService,
|
|
|
|
private apiLoggerService: ApiLoggerService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
let user;
|
|
|
|
|
|
|
|
const isAdminOrModerator = me && (me.isAdmin || me.isModerator);
|
|
|
|
|
|
|
|
if (ps.userIds) {
|
|
|
|
if (ps.userIds.length === 0) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
const users = await this.usersRepository.findBy(isAdminOrModerator ? {
|
|
|
|
id: In(ps.userIds),
|
|
|
|
} : {
|
|
|
|
id: In(ps.userIds),
|
|
|
|
isSuspended: false,
|
|
|
|
});
|
|
|
|
|
|
|
|
// リクエストされた通りに並べ替え
|
|
|
|
const _users: User[] = [];
|
|
|
|
for (const id of ps.userIds) {
|
|
|
|
_users.push(users.find(x => x.id === id)!);
|
|
|
|
}
|
|
|
|
|
|
|
|
return await Promise.all(_users.map(u => this.userEntityService.pack(u, me, {
|
|
|
|
detail: true,
|
|
|
|
})));
|
|
|
|
} else {
|
|
|
|
// Lookup user
|
|
|
|
if (typeof ps.host === 'string' && typeof ps.username === 'string') {
|
|
|
|
user = await this.resolveUserService.resolveUser(ps.username, ps.host).catch(err => {
|
|
|
|
this.apiLoggerService.logger.warn(`failed to resolve remote user: ${err}`);
|
|
|
|
throw new ApiError(meta.errors.failedToResolveRemoteUser);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
const q: FindOptionsWhere<User> = ps.userId != null
|
|
|
|
? { id: ps.userId }
|
|
|
|
: { usernameLower: ps.username!.toLowerCase(), host: IsNull() };
|
|
|
|
|
|
|
|
user = await this.usersRepository.findOneBy(q);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (user == null || (!isAdminOrModerator && user.isSuspended)) {
|
|
|
|
throw new ApiError(meta.errors.noSuchUser);
|
|
|
|
}
|
|
|
|
|
|
|
|
return await this.userEntityService.pack(user, me, {
|
|
|
|
detail: true,
|
|
|
|
});
|
|
|
|
}
|
2019-02-22 02:46:58 +00:00
|
|
|
});
|
2018-04-25 13:37:08 +00:00
|
|
|
}
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|