2021-10-17 10:26:35 +03:00
|
|
|
import { Brackets } from 'typeorm';
|
2022-09-17 21:27:08 +03:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2022-09-20 23:33:11 +03:00
|
|
|
import type { UsersRepository, FollowingsRepository } from '@/models/index.js';
|
2023-02-22 07:47:51 +02:00
|
|
|
import type { Config } from '@/config.js';
|
2022-09-17 21:27:08 +03: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 { DI } from '@/di-symbols.js';
|
2023-01-09 01:58:16 +02:00
|
|
|
import { sqlLikeEscape } from '@/misc/sql-like-escape.js';
|
2020-01-29 21:37:25 +02:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['users'],
|
|
|
|
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: false,
|
2020-01-29 21:37:25 +02:00
|
|
|
|
2022-06-10 08:25:20 +03:00
|
|
|
description: 'Search for a user by username and/or host.',
|
|
|
|
|
2020-01-29 21:37:25 +02:00
|
|
|
res: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2020-01-29 21:37:25 +02:00
|
|
|
items: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2020-01-29 21:37:25 +02:00
|
|
|
ref: 'User',
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2020-01-29 21:37:25 +02:00
|
|
|
},
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2020-01-29 21:37:25 +02:00
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 },
|
|
|
|
detail: { type: 'boolean', default: true },
|
|
|
|
},
|
2022-04-03 07:57:26 +03:00
|
|
|
anyOf: [
|
2023-02-01 13:04:01 +02:00
|
|
|
{
|
|
|
|
properties: {
|
|
|
|
username: { type: 'string', nullable: true },
|
|
|
|
},
|
|
|
|
required: ['username']
|
|
|
|
},
|
|
|
|
{
|
|
|
|
properties: {
|
|
|
|
host: { type: 'string', nullable: true },
|
|
|
|
},
|
|
|
|
required: ['host']
|
|
|
|
},
|
2022-04-03 07:57:26 +03:00
|
|
|
],
|
2022-02-19 07:05:32 +02:00
|
|
|
} as const;
|
|
|
|
|
2022-02-27 07:10:31 +02:00
|
|
|
// TODO: avatar,bannerをJOINしたいけどエラーになる
|
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 21:27:08 +03:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
2023-02-22 07:47:51 +02:00
|
|
|
@Inject(DI.config)
|
|
|
|
private config: Config,
|
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
private usersRepository: UsersRepository,
|
|
|
|
|
|
|
|
@Inject(DI.followingsRepository)
|
|
|
|
private followingsRepository: FollowingsRepository,
|
|
|
|
|
|
|
|
private userEntityService: UserEntityService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
2023-02-22 07:47:51 +02:00
|
|
|
const setUsernameAndHostQuery = (query = this.usersRepository.createQueryBuilder('user')) => {
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.username) {
|
2023-02-22 07:47:51 +02:00
|
|
|
query.andWhere('user.usernameLower LIKE :username', { username: sqlLikeEscape(ps.username.toLowerCase()) + '%' })
|
2022-09-17 21:27:08 +03:00
|
|
|
}
|
|
|
|
|
2023-02-22 07:47:51 +02:00
|
|
|
if (ps.host) {
|
|
|
|
if (ps.host === this.config.hostname || ps.host === '.') {
|
|
|
|
query.andWhere('user.host IS NULL');
|
|
|
|
} else {
|
|
|
|
query.andWhere('user.host LIKE :host', {
|
|
|
|
host: sqlLikeEscape(ps.host.toLowerCase()) + '%'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2022-09-17 21:27:08 +03:00
|
|
|
|
2023-02-22 07:47:51 +02:00
|
|
|
return query;
|
|
|
|
};
|
2022-09-17 21:27:08 +03:00
|
|
|
|
2023-02-22 07:47:51 +02:00
|
|
|
const activeThreshold = new Date(Date.now() - (1000 * 60 * 60 * 24 * 30)); // 30日
|
2022-09-17 21:27:08 +03:00
|
|
|
|
2023-02-22 07:47:51 +02:00
|
|
|
let users: User[] = [];
|
2022-09-17 21:27:08 +03:00
|
|
|
|
2023-02-22 07:47:51 +02:00
|
|
|
if (me) {
|
|
|
|
const followingQuery = this.followingsRepository.createQueryBuilder('following')
|
|
|
|
.select('following.followeeId')
|
|
|
|
.where('following.followerId = :followerId', { followerId: me.id });
|
2022-09-17 21:27:08 +03:00
|
|
|
|
2023-02-22 07:47:51 +02:00
|
|
|
const query = setUsernameAndHostQuery()
|
|
|
|
.andWhere(`user.id IN (${ followingQuery.getQuery() })`)
|
|
|
|
.andWhere('user.id != :meId', { meId: me.id })
|
|
|
|
.andWhere('user.isSuspended = FALSE')
|
|
|
|
.andWhere(new Brackets(qb => { qb
|
|
|
|
.where('user.updatedAt IS NULL')
|
|
|
|
.orWhere('user.updatedAt > :activeThreshold', { activeThreshold: activeThreshold });
|
|
|
|
}));
|
2022-09-17 21:27:08 +03:00
|
|
|
|
2023-02-22 07:47:51 +02:00
|
|
|
query.setParameters(followingQuery.getParameters());
|
2022-09-17 21:27:08 +03:00
|
|
|
|
2023-02-22 07:47:51 +02:00
|
|
|
users = await query
|
|
|
|
.orderBy('user.usernameLower', 'ASC')
|
|
|
|
.take(ps.limit)
|
|
|
|
.getMany();
|
2022-09-17 21:27:08 +03:00
|
|
|
|
2023-02-22 07:47:51 +02:00
|
|
|
if (users.length < ps.limit) {
|
|
|
|
const otherQuery = setUsernameAndHostQuery()
|
|
|
|
.andWhere(`user.id NOT IN (${ followingQuery.getQuery() })`)
|
|
|
|
.andWhere('user.isSuspended = FALSE')
|
|
|
|
.andWhere('user.updatedAt IS NOT NULL');
|
2022-09-17 21:27:08 +03:00
|
|
|
|
2023-02-22 07:47:51 +02:00
|
|
|
otherQuery.setParameters(followingQuery.getParameters());
|
2022-09-17 21:27:08 +03:00
|
|
|
|
2023-02-22 07:47:51 +02:00
|
|
|
const otherUsers = await otherQuery
|
2022-09-17 21:27:08 +03:00
|
|
|
.orderBy('user.updatedAt', 'DESC')
|
|
|
|
.take(ps.limit - users.length)
|
|
|
|
.getMany();
|
|
|
|
|
2023-02-22 07:47:51 +02:00
|
|
|
users = users.concat(otherUsers);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
const query = setUsernameAndHostQuery()
|
|
|
|
.andWhere('user.isSuspended = FALSE')
|
|
|
|
.andWhere('user.updatedAt IS NOT NULL');
|
|
|
|
|
|
|
|
users = await query
|
|
|
|
.orderBy('user.updatedAt', 'DESC')
|
|
|
|
.take(ps.limit - users.length)
|
|
|
|
.getMany();
|
2021-10-19 18:53:38 +03:00
|
|
|
}
|
2022-02-03 10:21:52 +02:00
|
|
|
|
2023-02-22 07:47:51 +02:00
|
|
|
return await this.userEntityService.packMany(users, me, { detail: !!ps.detail });
|
2022-09-17 21:27:08 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|