This commit is contained in:
syuilo 2017-03-03 07:47:14 +09:00
parent 2e4e599c01
commit 0926d5b6da
7 changed files with 78 additions and 163 deletions

View file

@ -1,60 +0,0 @@
'use strict';
/**
* Module dependencies
*/
import User from '../../models/user';
import serialize from '../../serializers/user';
import getFriends from '../../common/get-friends';
/**
* Get recommended users
*
* @param {any} params
* @param {any} me
* @return {Promise<any>}
*/
module.exports = (params, me) =>
new Promise(async (res, rej) =>
{
// Get 'limit' parameter
let limit = params.limit;
if (limit !== undefined && limit !== null) {
limit = parseInt(limit, 10);
// From 1 to 100
if (!(1 <= limit && limit <= 100)) {
return rej('invalid limit range');
}
} else {
limit = 10;
}
// Get 'offset' parameter
let offset = params.offset;
if (offset !== undefined && offset !== null) {
offset = parseInt(offset, 10);
} else {
offset = 0;
}
// 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
}
}, {
limit: limit,
skip: offset,
sort: {
followers_count: -1
}
});
// Serialize
res(await Promise.all(users.map(async user =>
await serialize(user, me, { detail: true }))));
});