2021-11-12 19:47:04 +09:00
|
|
|
import ms from 'ms';
|
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, FollowingsRepository } from '@/models/index.js';
|
2022-09-18 03:27:08 +09:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { QueryService } from '@/core/QueryService.js';
|
|
|
|
import { UserEntityService } from '@/core/entities/UserEntityService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2018-11-21 23:44:59 +09:00
|
|
|
|
2018-07-17 04:36:44 +09:00
|
|
|
export const meta = {
|
2019-02-23 11:20:58 +09:00
|
|
|
tags: ['users'],
|
|
|
|
|
2022-01-18 22:27:10 +09:00
|
|
|
requireCredential: true,
|
2018-07-17 04:36:44 +09:00
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
kind: 'read:account',
|
2018-11-02 12:49:08 +09:00
|
|
|
|
2022-06-10 14:25:20 +09:00
|
|
|
description: 'Show users that the authenticated user might be interested to follow.',
|
|
|
|
|
2019-02-24 19:42:26 +09:00
|
|
|
res: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2019-02-24 19:42:26 +09:00
|
|
|
items: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
ref: 'UserDetailed',
|
2021-12-09 23:58:30 +09:00
|
|
|
},
|
2019-02-24 19:42:26 +09:00
|
|
|
},
|
2022-01-18 22:27:10 +09:00
|
|
|
} as const;
|
2018-07-17 04:36:44 +09:00
|
|
|
|
2022-02-20 13:15:40 +09:00
|
|
|
export const paramDef = {
|
2022-02-19 14:05:32 +09:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 },
|
|
|
|
offset: { type: 'integer', default: 0 },
|
|
|
|
},
|
|
|
|
required: [],
|
|
|
|
} 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-21 23:44:59 +09:00
|
|
|
|
2022-09-18 03:27:08 +09:00
|
|
|
@Inject(DI.followingsRepository)
|
|
|
|
private followingsRepository: FollowingsRepository,
|
|
|
|
|
|
|
|
private userEntityService: UserEntityService,
|
|
|
|
private queryService: QueryService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const query = this.usersRepository.createQueryBuilder('user')
|
|
|
|
.where('user.isLocked = FALSE')
|
|
|
|
.andWhere('user.isExplorable = TRUE')
|
|
|
|
.andWhere('user.host IS NULL')
|
|
|
|
.andWhere('user.updatedAt >= :date', { date: new Date(Date.now() - ms('7days')) })
|
|
|
|
.andWhere('user.id != :meId', { meId: me.id })
|
|
|
|
.orderBy('user.followersCount', 'DESC');
|
2018-10-10 02:08:26 +09:00
|
|
|
|
2022-09-18 03:27:08 +09:00
|
|
|
this.queryService.generateMutedUserQueryForUsers(query, me);
|
|
|
|
this.queryService.generateBlockQueryForUsers(query, me);
|
|
|
|
this.queryService.generateBlockedUserQuery(query, me);
|
2019-02-22 11:46:58 +09:00
|
|
|
|
2022-09-18 03:27:08 +09:00
|
|
|
const followingQuery = this.followingsRepository.createQueryBuilder('following')
|
|
|
|
.select('following.followeeId')
|
|
|
|
.where('following.followerId = :followerId', { followerId: me.id });
|
2018-10-06 16:03:18 +09:00
|
|
|
|
2022-09-18 03:27:08 +09:00
|
|
|
query
|
|
|
|
.andWhere(`user.id NOT IN (${ followingQuery.getQuery() })`);
|
2019-02-22 11:46:58 +09:00
|
|
|
|
2022-09-18 03:27:08 +09:00
|
|
|
query.setParameters(followingQuery.getParameters());
|
2019-02-22 11:46:58 +09:00
|
|
|
|
2022-09-18 03:27:08 +09:00
|
|
|
const users = await query.take(ps.limit).skip(ps.offset).getMany();
|
|
|
|
|
|
|
|
return await this.userEntityService.packMany(users, me, { detail: true });
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|