2022-06-14 09:01:23 +00:00
|
|
|
import { Brackets } from 'typeorm';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2022-09-20 20:33:11 +00:00
|
|
|
import type { UsersRepository, UserProfilesRepository } 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 { DI } from '@/di-symbols.js';
|
2023-01-08 23:58:16 +00:00
|
|
|
import { sqlLikeEscape } from '@/misc/sql-like-escape.js';
|
2018-08-06 09:28:27 +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-08-06 09:28:27 +00:00
|
|
|
|
2022-06-10 05:25:20 +00:00
|
|
|
description: 'Search for users.',
|
|
|
|
|
2019-02-24 10:42:26 +00:00
|
|
|
res: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2019-02-24 10:42:26 +00:00
|
|
|
items: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2019-04-23 13:35:26 +00:00
|
|
|
ref: 'User',
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
2019-02-24 10:42:26 +00:00
|
|
|
},
|
2022-01-18 13:27:10 +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: {
|
|
|
|
query: { type: 'string' },
|
|
|
|
offset: { type: 'integer', default: 0 },
|
|
|
|
limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 },
|
2022-06-14 09:01:23 +00:00
|
|
|
origin: { type: 'string', enum: ['local', 'remote', 'combined'], default: 'combined' },
|
2022-02-19 05:05:32 +00:00
|
|
|
detail: { type: 'boolean', default: true },
|
|
|
|
},
|
|
|
|
required: ['query'],
|
|
|
|
} 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,
|
|
|
|
|
|
|
|
@Inject(DI.userProfilesRepository)
|
|
|
|
private userProfilesRepository: UserProfilesRepository,
|
|
|
|
|
|
|
|
private userEntityService: UserEntityService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const activeThreshold = new Date(Date.now() - (1000 * 60 * 60 * 24 * 30)); // 30日
|
|
|
|
|
|
|
|
const isUsername = ps.query.startsWith('@');
|
|
|
|
|
|
|
|
let users: User[] = [];
|
|
|
|
|
|
|
|
if (isUsername) {
|
|
|
|
const usernameQuery = this.usersRepository.createQueryBuilder('user')
|
2023-01-08 11:32:17 +00:00
|
|
|
.where('user.usernameLower LIKE :username', { username: sqlLikeEscape(ps.query.replace('@', '').toLowerCase()) + '%' })
|
2022-09-17 18:27:08 +00:00
|
|
|
.andWhere(new Brackets(qb => { qb
|
|
|
|
.where('user.updatedAt IS NULL')
|
|
|
|
.orWhere('user.updatedAt > :activeThreshold', { activeThreshold: activeThreshold });
|
|
|
|
}))
|
|
|
|
.andWhere('user.isSuspended = FALSE');
|
|
|
|
|
|
|
|
if (ps.origin === 'local') {
|
|
|
|
usernameQuery.andWhere('user.host IS NULL');
|
|
|
|
} else if (ps.origin === 'remote') {
|
|
|
|
usernameQuery.andWhere('user.host IS NOT NULL');
|
|
|
|
}
|
|
|
|
|
|
|
|
users = await usernameQuery
|
|
|
|
.orderBy('user.updatedAt', 'DESC', 'NULLS LAST')
|
|
|
|
.take(ps.limit)
|
|
|
|
.skip(ps.offset)
|
|
|
|
.getMany();
|
|
|
|
} else {
|
|
|
|
const nameQuery = this.usersRepository.createQueryBuilder('user')
|
2023-07-07 22:08:16 +00:00
|
|
|
.where(new Brackets(qb => {
|
2023-01-08 11:32:17 +00:00
|
|
|
qb.where('user.name ILIKE :query', { query: '%' + sqlLikeEscape(ps.query) + '%' });
|
2022-09-17 18:27:08 +00:00
|
|
|
|
|
|
|
// Also search username if it qualifies as username
|
|
|
|
if (this.userEntityService.validateLocalUsername(ps.query)) {
|
2023-01-08 11:32:17 +00:00
|
|
|
qb.orWhere('user.usernameLower LIKE :username', { username: '%' + sqlLikeEscape(ps.query.toLowerCase()) + '%' });
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|
|
|
|
}))
|
|
|
|
.andWhere(new Brackets(qb => { qb
|
|
|
|
.where('user.updatedAt IS NULL')
|
|
|
|
.orWhere('user.updatedAt > :activeThreshold', { activeThreshold: activeThreshold });
|
|
|
|
}))
|
|
|
|
.andWhere('user.isSuspended = FALSE');
|
|
|
|
|
|
|
|
if (ps.origin === 'local') {
|
|
|
|
nameQuery.andWhere('user.host IS NULL');
|
|
|
|
} else if (ps.origin === 'remote') {
|
|
|
|
nameQuery.andWhere('user.host IS NOT NULL');
|
|
|
|
}
|
|
|
|
|
|
|
|
users = await nameQuery
|
|
|
|
.orderBy('user.updatedAt', 'DESC', 'NULLS LAST')
|
|
|
|
.take(ps.limit)
|
|
|
|
.skip(ps.offset)
|
|
|
|
.getMany();
|
|
|
|
|
|
|
|
if (users.length < ps.limit) {
|
|
|
|
const profQuery = this.userProfilesRepository.createQueryBuilder('prof')
|
|
|
|
.select('prof.userId')
|
2023-01-08 11:32:17 +00:00
|
|
|
.where('prof.description ILIKE :query', { query: '%' + sqlLikeEscape(ps.query) + '%' });
|
2022-09-17 18:27:08 +00:00
|
|
|
|
|
|
|
if (ps.origin === 'local') {
|
|
|
|
profQuery.andWhere('prof.userHost IS NULL');
|
|
|
|
} else if (ps.origin === 'remote') {
|
|
|
|
profQuery.andWhere('prof.userHost IS NOT NULL');
|
|
|
|
}
|
|
|
|
|
|
|
|
const query = this.usersRepository.createQueryBuilder('user')
|
|
|
|
.where(`user.id IN (${ profQuery.getQuery() })`)
|
|
|
|
.andWhere(new Brackets(qb => { qb
|
|
|
|
.where('user.updatedAt IS NULL')
|
|
|
|
.orWhere('user.updatedAt > :activeThreshold', { activeThreshold: activeThreshold });
|
|
|
|
}))
|
|
|
|
.andWhere('user.isSuspended = FALSE')
|
|
|
|
.setParameters(profQuery.getParameters());
|
|
|
|
|
|
|
|
users = users.concat(await query
|
|
|
|
.orderBy('user.updatedAt', 'DESC', 'NULLS LAST')
|
|
|
|
.take(ps.limit)
|
|
|
|
.skip(ps.offset)
|
|
|
|
.getMany(),
|
|
|
|
);
|
2022-05-14 06:24:44 +00:00
|
|
|
}
|
2021-10-17 07:26:35 +00:00
|
|
|
}
|
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
return await this.userEntityService.packMany(users, me, { detail: ps.detail });
|
|
|
|
});
|
2018-08-06 09:28:27 +00:00
|
|
|
}
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|