2021-11-12 11:47:04 +01:00
|
|
|
import ms from 'ms';
|
2017-03-08 19:50:09 +01:00
|
|
|
import $ from 'cafy';
|
2021-08-19 14:55:45 +02:00
|
|
|
import define from '../../define';
|
|
|
|
import { Users, Followings } from '@/models/index';
|
|
|
|
import { generateMutedUserQueryForUsers } from '../../common/generate-muted-user-query';
|
|
|
|
import { generateBlockedUserQuery, generateBlockQueryForUsers } from '../../common/generate-block-query';
|
2018-11-21 15:44:59 +01:00
|
|
|
|
2018-07-16 21:36:44 +02:00
|
|
|
export const meta = {
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['users'],
|
|
|
|
|
2020-02-15 13:33:32 +01:00
|
|
|
requireCredential: true as const,
|
2018-07-16 21:36:44 +02:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
kind: 'read:account',
|
2018-11-02 04:49:08 +01:00
|
|
|
|
|
|
|
params: {
|
|
|
|
limit: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2021-12-09 15:58:30 +01:00
|
|
|
default: 10,
|
2018-11-02 04:49:08 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
offset: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.num.min(0),
|
2021-12-09 15:58:30 +01:00
|
|
|
default: 0,
|
|
|
|
},
|
2019-02-24 11:42:26 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
2019-06-27 11:04:09 +02:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-02-24 11:42:26 +01:00
|
|
|
items: {
|
2019-06-27 11:04:09 +02:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 15:35:26 +02:00
|
|
|
ref: 'User',
|
2021-12-09 15:58:30 +01:00
|
|
|
},
|
2019-02-24 11:42:26 +01:00
|
|
|
},
|
2018-07-16 21:36:44 +02:00
|
|
|
};
|
|
|
|
|
2022-01-02 18:12:50 +01:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2019-02-22 03:46:58 +01:00
|
|
|
export default define(meta, async (ps, me) => {
|
2019-04-07 14:50:36 +02:00
|
|
|
const query = Users.createQueryBuilder('user')
|
|
|
|
.where('user.isLocked = FALSE')
|
2020-12-11 13:16:20 +01:00
|
|
|
.andWhere('user.isExplorable = TRUE')
|
2019-04-25 17:54:11 +02:00
|
|
|
.andWhere('user.host IS NULL')
|
|
|
|
.andWhere('user.updatedAt >= :date', { date: new Date(Date.now() - ms('7days')) })
|
|
|
|
.andWhere('user.id != :meId', { meId: me.id })
|
2019-04-07 14:50:36 +02:00
|
|
|
.orderBy('user.followersCount', 'DESC');
|
2018-11-21 15:44:59 +01:00
|
|
|
|
2020-07-28 02:38:41 +02:00
|
|
|
generateMutedUserQueryForUsers(query, me);
|
2019-07-21 15:27:36 +02:00
|
|
|
generateBlockQueryForUsers(query, me);
|
2021-08-17 14:48:59 +02:00
|
|
|
generateBlockedUserQuery(query, me);
|
2018-10-09 19:08:26 +02:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
const followingQuery = Followings.createQueryBuilder('following')
|
|
|
|
.select('following.followeeId')
|
|
|
|
.where('following.followerId = :followerId', { followerId: me.id });
|
2019-02-22 03:46:58 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
query
|
|
|
|
.andWhere(`user.id NOT IN (${ followingQuery.getQuery() })`);
|
2018-10-06 09:03:18 +02:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
query.setParameters(followingQuery.getParameters());
|
2019-02-22 03:46:58 +01:00
|
|
|
|
2019-04-12 18:43:22 +02:00
|
|
|
const users = await query.take(ps.limit!).skip(ps.offset).getMany();
|
2019-02-22 03:46:58 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
return await Users.packMany(users, me, { detail: true });
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|