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

49 lines
1.1 KiB
TypeScript
Raw Normal View History

2016-12-29 00:49:51 +02:00
'use strict';
/**
* Module dependencies
*/
2017-03-03 00:47:14 +02:00
import it from '../../it';
2016-12-29 00:49:51 +02:00
import User from '../../models/user';
import serialize from '../../serializers/user';
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
*/
module.exports = (params, me) =>
new Promise(async (res, rej) =>
{
// Get 'limit' parameter
2017-03-03 00:47:14 +02:00
const [limit, limitErr] = it(params.limit).expect.number().range(1, 100).default(10).qed();
if (limitErr) return rej('invalid limit param');
2016-12-29 00:49:51 +02:00
// Get 'offset' parameter
2017-03-03 00:47:14 +02:00
const [offset, offsetErr] = it(params.offset).expect.number().min(0).default(0).qed();
if (offsetErr) return rej('invalid offset param');
2016-12-29 00:49:51 +02:00
// ID list of the user itself and other users who the user follows
const followingIds = await getFriends(me._id);
const users = await User
.find({
_id: {
$nin: followingIds
}
2017-01-17 04:11:22 +02:00
}, {
2016-12-29 00:49:51 +02:00
limit: limit,
skip: offset,
sort: {
followers_count: -1
}
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 =>
await serialize(user, me, { detail: true }))));
});