|
|
|
@@ -1,6 +1,7 @@
|
|
|
|
|
import { Brackets } from 'typeorm';
|
|
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
|
import type { UsersRepository, FollowingsRepository } from '@/models/index.js';
|
|
|
|
|
import type { Config } from '@/config.js';
|
|
|
|
|
import type { User } from '@/models/entities/User.js';
|
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
|
import { UserEntityService } from '@/core/entities/UserEntityService.js';
|
|
|
|
@@ -53,6 +54,9 @@ export const paramDef = {
|
|
|
|
|
@Injectable()
|
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
|
constructor(
|
|
|
|
|
@Inject(DI.config)
|
|
|
|
|
private config: Config,
|
|
|
|
|
|
|
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
|
private usersRepository: UsersRepository,
|
|
|
|
|
|
|
|
|
@@ -62,79 +66,76 @@ export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
|
private userEntityService: UserEntityService,
|
|
|
|
|
) {
|
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
|
const activeThreshold = new Date(Date.now() - (1000 * 60 * 60 * 24 * 30)); // 30日
|
|
|
|
|
|
|
|
|
|
if (ps.host) {
|
|
|
|
|
const q = this.usersRepository.createQueryBuilder('user')
|
|
|
|
|
.where('user.isSuspended = FALSE')
|
|
|
|
|
.andWhere('user.host LIKE :host', { host: sqlLikeEscape(ps.host.toLowerCase()) + '%' });
|
|
|
|
|
|
|
|
|
|
const setUsernameAndHostQuery = (query = this.usersRepository.createQueryBuilder('user')) => {
|
|
|
|
|
if (ps.username) {
|
|
|
|
|
q.andWhere('user.usernameLower LIKE :username', { username: sqlLikeEscape(ps.username.toLowerCase()) + '%' });
|
|
|
|
|
query.andWhere('user.usernameLower LIKE :username', { username: sqlLikeEscape(ps.username.toLowerCase()) + '%' })
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
q.andWhere('user.updatedAt IS NOT NULL');
|
|
|
|
|
q.orderBy('user.updatedAt', 'DESC');
|
|
|
|
|
|
|
|
|
|
const users = await q.take(ps.limit).getMany();
|
|
|
|
|
|
|
|
|
|
return await this.userEntityService.packMany(users, me, { detail: ps.detail });
|
|
|
|
|
} else if (ps.username) {
|
|
|
|
|
let users: User[] = [];
|
|
|
|
|
|
|
|
|
|
if (me) {
|
|
|
|
|
const followingQuery = this.followingsRepository.createQueryBuilder('following')
|
|
|
|
|
.select('following.followeeId')
|
|
|
|
|
.where('following.followerId = :followerId', { followerId: me.id });
|
|
|
|
|
|
|
|
|
|
const query = this.usersRepository.createQueryBuilder('user')
|
|
|
|
|
.where(`user.id IN (${ followingQuery.getQuery() })`)
|
|
|
|
|
.andWhere('user.id != :meId', { meId: me.id })
|
|
|
|
|
.andWhere('user.isSuspended = FALSE')
|
|
|
|
|
.andWhere('user.usernameLower LIKE :username', { username: sqlLikeEscape(ps.username.toLowerCase()) + '%' })
|
|
|
|
|
.andWhere(new Brackets(qb => { qb
|
|
|
|
|
.where('user.updatedAt IS NULL')
|
|
|
|
|
.orWhere('user.updatedAt > :activeThreshold', { activeThreshold: activeThreshold });
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
query.setParameters(followingQuery.getParameters());
|
|
|
|
|
|
|
|
|
|
users = await query
|
|
|
|
|
.orderBy('user.usernameLower', 'ASC')
|
|
|
|
|
.take(ps.limit)
|
|
|
|
|
.getMany();
|
|
|
|
|
|
|
|
|
|
if (users.length < ps.limit) {
|
|
|
|
|
const otherQuery = await this.usersRepository.createQueryBuilder('user')
|
|
|
|
|
.where(`user.id NOT IN (${ followingQuery.getQuery() })`)
|
|
|
|
|
.andWhere('user.id != :meId', { meId: me.id })
|
|
|
|
|
.andWhere('user.isSuspended = FALSE')
|
|
|
|
|
.andWhere('user.usernameLower LIKE :username', { username: sqlLikeEscape(ps.username.toLowerCase()) + '%' })
|
|
|
|
|
.andWhere('user.updatedAt IS NOT NULL');
|
|
|
|
|
|
|
|
|
|
otherQuery.setParameters(followingQuery.getParameters());
|
|
|
|
|
|
|
|
|
|
const otherUsers = await otherQuery
|
|
|
|
|
.orderBy('user.updatedAt', 'DESC')
|
|
|
|
|
.take(ps.limit - users.length)
|
|
|
|
|
.getMany();
|
|
|
|
|
|
|
|
|
|
users = users.concat(otherUsers);
|
|
|
|
|
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()) + '%'
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
users = await this.usersRepository.createQueryBuilder('user')
|
|
|
|
|
.where('user.isSuspended = FALSE')
|
|
|
|
|
.andWhere('user.usernameLower LIKE :username', { username: sqlLikeEscape(ps.username.toLowerCase()) + '%' })
|
|
|
|
|
.andWhere('user.updatedAt IS NOT NULL')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return query;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const activeThreshold = new Date(Date.now() - (1000 * 60 * 60 * 24 * 30)); // 30日
|
|
|
|
|
|
|
|
|
|
let users: User[] = [];
|
|
|
|
|
|
|
|
|
|
if (me) {
|
|
|
|
|
const followingQuery = this.followingsRepository.createQueryBuilder('following')
|
|
|
|
|
.select('following.followeeId')
|
|
|
|
|
.where('following.followerId = :followerId', { followerId: me.id });
|
|
|
|
|
|
|
|
|
|
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 });
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
query.setParameters(followingQuery.getParameters());
|
|
|
|
|
|
|
|
|
|
users = await query
|
|
|
|
|
.orderBy('user.usernameLower', 'ASC')
|
|
|
|
|
.take(ps.limit)
|
|
|
|
|
.getMany();
|
|
|
|
|
|
|
|
|
|
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');
|
|
|
|
|
|
|
|
|
|
otherQuery.setParameters(followingQuery.getParameters());
|
|
|
|
|
|
|
|
|
|
const otherUsers = await otherQuery
|
|
|
|
|
.orderBy('user.updatedAt', 'DESC')
|
|
|
|
|
.take(ps.limit - users.length)
|
|
|
|
|
.getMany();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return await this.userEntityService.packMany(users, me, { detail: !!ps.detail });
|
|
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return [];
|
|
|
|
|
return await this.userEntityService.packMany(users, me, { detail: !!ps.detail });
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|