summaryrefslogtreecommitdiff
path: root/src/api/endpoints/users/recommendation.js
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-03-03 07:47:14 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-03-03 07:47:14 +0900
commit0926d5b6da68be6c9375addbd3cec8545185dea7 (patch)
tree7e88d0ba7a3b663844e401071a588f1d0f50e918 /src/api/endpoints/users/recommendation.js
parentRefactor (diff)
downloadmisskey-0926d5b6da68be6c9375addbd3cec8545185dea7.tar.gz
misskey-0926d5b6da68be6c9375addbd3cec8545185dea7.tar.bz2
misskey-0926d5b6da68be6c9375addbd3cec8545185dea7.zip
wip
Diffstat (limited to 'src/api/endpoints/users/recommendation.js')
-rw-r--r--src/api/endpoints/users/recommendation.js60
1 files changed, 0 insertions, 60 deletions
diff --git a/src/api/endpoints/users/recommendation.js b/src/api/endpoints/users/recommendation.js
deleted file mode 100644
index 0045683a5a..0000000000
--- a/src/api/endpoints/users/recommendation.js
+++ /dev/null
@@ -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 }))));
-});