Sharkey/src/server/api/endpoints/users/recommendation.ts

54 lines
1.2 KiB
TypeScript
Raw Normal View History

2016-12-29 00:49:51 +02:00
/**
* Module dependencies
*/
const ms = require('ms');
2017-03-08 20:50:09 +02:00
import $ from 'cafy';
2018-03-29 14:32:18 +03:00
import User, { pack } from '../../../../models/user';
2016-12-29 00:49:51 +02:00
import getFriends from '../../common/get-friends';
/**
* Get recommended users
*
2017-03-01 10:37:01 +02:00
* @param {any} params
* @param {any} me
* @return {Promise<any>}
2016-12-29 00:49:51 +02:00
*/
2017-03-03 21:28:38 +02:00
module.exports = (params, me) => new Promise(async (res, rej) => {
2016-12-29 00:49:51 +02:00
// Get 'limit' parameter
2017-03-08 20:50:09 +02:00
const [limit = 10, limitErr] = $(params.limit).optional.number().range(1, 100).$;
2017-03-03 00:47:14 +02:00
if (limitErr) return rej('invalid limit param');
2016-12-29 00:49:51 +02:00
// Get 'offset' parameter
2017-03-08 20:50:09 +02:00
const [offset = 0, offsetErr] = $(params.offset).optional.number().min(0).$;
2017-03-03 00:47:14 +02:00
if (offsetErr) return rej('invalid offset param');
2016-12-29 00:49:51 +02:00
2017-03-14 08:53:25 +02:00
// ID list of the user itself and other users who the user follows
2016-12-29 00:49:51 +02:00
const followingIds = await getFriends(me._id);
const users = await User
.find({
_id: {
$nin: followingIds
},
2018-03-27 10:51:12 +03:00
$or: [
{
2018-03-29 08:48:47 +03:00
'account.lastUsedAt': {
2018-03-27 10:51:12 +03:00
$gte: new Date(Date.now() - ms('7days'))
}
}, {
host: { $not: null }
}
]
2017-01-17 04:11:22 +02:00
}, {
2016-12-29 00:49:51 +02:00
limit: limit,
skip: offset,
sort: {
2018-03-29 08:48:47 +03:00
followersCount: -1
2016-12-29 00:49:51 +02:00
}
2017-01-17 04:11:22 +02:00
});
2016-12-29 00:49:51 +02:00
// Serialize
res(await Promise.all(users.map(async user =>
2018-02-02 01:21:30 +02:00
await pack(user, me, { detail: true }))));
2016-12-29 00:49:51 +02:00
});