2019-02-01 15:16:27 +00:00
|
|
|
import * as ms from 'ms';
|
2017-03-08 18:50:09 +00:00
|
|
|
import $ from 'cafy';
|
2018-11-02 04:47:44 +00:00
|
|
|
import define from '../../define';
|
2019-04-07 12:50:36 +00:00
|
|
|
import { Users, Followings } from '../../../../models';
|
|
|
|
import { generateMuteQueryForUsers } from '../../common/generate-mute-query';
|
2019-04-23 13:35:26 +00:00
|
|
|
import { types, bool } from '../../../../misc/schema';
|
2018-11-21 14:44:59 +00:00
|
|
|
|
2018-07-16 19:36:44 +00:00
|
|
|
export const meta = {
|
|
|
|
desc: {
|
2018-08-28 21:59:43 +00:00
|
|
|
'ja-JP': 'おすすめのユーザー一覧を取得します。'
|
2018-07-16 19:36:44 +00:00
|
|
|
},
|
|
|
|
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['users'],
|
|
|
|
|
2018-07-16 19:36:44 +00:00
|
|
|
requireCredential: true,
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
kind: 'read:account',
|
2018-11-02 03:49:08 +00:00
|
|
|
|
|
|
|
params: {
|
|
|
|
limit: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2018-11-02 03:49:08 +00:00
|
|
|
default: 10
|
|
|
|
},
|
|
|
|
|
|
|
|
offset: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.num.min(0),
|
2018-11-02 03:49:08 +00:00
|
|
|
default: 0
|
|
|
|
}
|
2019-02-24 10:42:26 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
2019-04-23 13:35:26 +00:00
|
|
|
type: types.array,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
2019-02-24 10:42:26 +00:00
|
|
|
items: {
|
2019-04-23 13:35:26 +00:00
|
|
|
type: types.object,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
|
|
|
ref: 'User',
|
2019-02-24 10:42:26 +00:00
|
|
|
}
|
|
|
|
},
|
2018-07-16 19:36:44 +00:00
|
|
|
};
|
|
|
|
|
2019-02-22 02:46:58 +00:00
|
|
|
export default define(meta, async (ps, me) => {
|
2019-04-07 12:50:36 +00:00
|
|
|
const query = Users.createQueryBuilder('user')
|
|
|
|
.where('user.isLocked = FALSE')
|
2019-04-25 15:54:11 +00: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 12:50:36 +00:00
|
|
|
.orderBy('user.followersCount', 'DESC');
|
2018-11-21 14:44:59 +00:00
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
generateMuteQueryForUsers(query, me);
|
2018-10-09 17:08:26 +00:00
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
const followingQuery = Followings.createQueryBuilder('following')
|
|
|
|
.select('following.followeeId')
|
|
|
|
.where('following.followerId = :followerId', { followerId: me.id });
|
2019-02-22 02:46:58 +00:00
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
query
|
|
|
|
.andWhere(`user.id NOT IN (${ followingQuery.getQuery() })`);
|
2018-10-06 07:03:18 +00:00
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
query.setParameters(followingQuery.getParameters());
|
2019-02-22 02:46:58 +00:00
|
|
|
|
2019-04-12 16:43:22 +00:00
|
|
|
const users = await query.take(ps.limit!).skip(ps.offset).getMany();
|
2019-02-22 02:46:58 +00:00
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
return await Users.packMany(users, me, { detail: true });
|
2019-02-22 02:46:58 +00:00
|
|
|
});
|