2017-03-11 22:31:19 +00:00
|
|
|
const ms = require('ms');
|
2017-03-08 18:50:09 +00:00
|
|
|
import $ from 'cafy';
|
2018-06-18 00:54:53 +00:00
|
|
|
import User, { pack, ILocalUser } from '../../../../models/user';
|
2018-04-19 03:43:25 +00:00
|
|
|
import { getFriendIds } from '../../common/get-friends';
|
2018-04-18 09:46:38 +00:00
|
|
|
import Mute from '../../../../models/mute';
|
2016-12-28 22:49:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get recommended users
|
|
|
|
*/
|
2018-07-05 17:58:29 +00:00
|
|
|
export default (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
|
2016-12-28 22:49:51 +00:00
|
|
|
// Get 'limit' parameter
|
2018-07-05 14:36:07 +00:00
|
|
|
const [limit = 10, limitErr] = $.num.optional.range(1, 100).get(params.limit);
|
2017-03-02 22:47:14 +00:00
|
|
|
if (limitErr) return rej('invalid limit param');
|
2016-12-28 22:49:51 +00:00
|
|
|
|
|
|
|
// Get 'offset' parameter
|
2018-07-05 14:36:07 +00:00
|
|
|
const [offset = 0, offsetErr] = $.num.optional.min(0).get(params.offset);
|
2017-03-02 22:47:14 +00:00
|
|
|
if (offsetErr) return rej('invalid offset param');
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2017-03-14 06:53:25 +00:00
|
|
|
// ID list of the user itself and other users who the user follows
|
2018-04-19 03:43:25 +00:00
|
|
|
const followingIds = await getFriendIds(me._id);
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2018-04-18 09:46:38 +00:00
|
|
|
// ミュートしているユーザーを取得
|
|
|
|
const mutedUserIds = (await Mute.find({
|
|
|
|
muterId: me._id
|
|
|
|
})).map(m => m.muteeId);
|
|
|
|
|
2016-12-28 22:49:51 +00:00
|
|
|
const users = await User
|
|
|
|
.find({
|
|
|
|
_id: {
|
2018-04-18 09:46:38 +00:00
|
|
|
$nin: followingIds.concat(mutedUserIds)
|
2017-03-11 22:31:19 +00:00
|
|
|
},
|
2018-05-31 15:42:37 +00:00
|
|
|
isLocked: false,
|
2018-04-14 05:22:58 +00:00
|
|
|
$or: [{
|
2018-04-18 09:46:38 +00:00
|
|
|
lastUsedAt: {
|
2018-04-14 05:22:58 +00:00
|
|
|
$gte: new Date(Date.now() - ms('7days'))
|
2018-03-27 07:51:12 +00:00
|
|
|
}
|
2018-04-14 05:22:58 +00:00
|
|
|
}, {
|
|
|
|
host: null
|
|
|
|
}]
|
2017-01-17 02:11:22 +00:00
|
|
|
}, {
|
2016-12-28 22:49:51 +00:00
|
|
|
limit: limit,
|
|
|
|
skip: offset,
|
|
|
|
sort: {
|
2018-03-29 05:48:47 +00:00
|
|
|
followersCount: -1
|
2016-12-28 22:49:51 +00:00
|
|
|
}
|
2017-01-17 02:11:22 +00:00
|
|
|
});
|
2016-12-28 22:49:51 +00:00
|
|
|
|
|
|
|
// Serialize
|
|
|
|
res(await Promise.all(users.map(async user =>
|
2018-02-01 23:21:30 +00:00
|
|
|
await pack(user, me, { detail: true }))));
|
2016-12-28 22:49:51 +00:00
|
|
|
});
|