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