egirlskey/src/server/api/endpoints/users/followers.ts

93 lines
2.0 KiB
TypeScript
Raw Normal View History

2016-12-28 22:49:51 +00:00
/**
* Module dependencies
*/
2017-03-08 18:50:09 +00:00
import $ from 'cafy';
2016-12-28 22:49:51 +00:00
import User from '../../models/user';
import Following from '../../models/following';
2018-02-01 23:21:30 +00:00
import { pack } from '../../models/user';
2016-12-28 22:49:51 +00:00
import getFriends from '../../common/get-friends';
/**
* Get followers of a user
*
2017-03-01 08:37:01 +00:00
* @param {any} params
* @param {any} me
* @return {Promise<any>}
2016-12-28 22:49:51 +00:00
*/
2017-03-03 19:28:38 +00:00
module.exports = (params, me) => new Promise(async (res, rej) => {
2016-12-28 22:49:51 +00:00
// Get 'user_id' parameter
2017-03-08 18:50:09 +00:00
const [userId, userIdErr] = $(params.user_id).id().$;
2017-03-02 22:47:14 +00:00
if (userIdErr) return rej('invalid user_id param');
2016-12-28 22:49:51 +00:00
// Get 'iknow' parameter
2017-03-08 18:50:09 +00:00
const [iknow = false, iknowErr] = $(params.iknow).optional.boolean().$;
2017-03-02 22:47:14 +00:00
if (iknowErr) return rej('invalid iknow param');
2016-12-28 22:49:51 +00:00
// Get 'limit' parameter
2017-03-08 18:50:09 +00:00
const [limit = 10, limitErr] = $(params.limit).optional.number().range(1, 100).$;
2017-03-02 22:47:14 +00:00
if (limitErr) return rej('invalid limit param');
2016-12-28 22:49:51 +00:00
// Get 'cursor' parameter
2017-03-08 18:50:09 +00:00
const [cursor = null, cursorErr] = $(params.cursor).optional.id().$;
2017-03-02 22:47:14 +00:00
if (cursorErr) return rej('invalid cursor param');
2016-12-28 22:49:51 +00:00
// Lookup user
const user = await User.findOne({
2017-03-02 22:47:14 +00:00
_id: userId
2017-02-22 04:08:33 +00:00
}, {
fields: {
_id: true
}
2016-12-28 22:49:51 +00:00
});
if (user === null) {
return rej('user not found');
}
// Construct query
const query = {
followee_id: user._id,
deleted_at: { $exists: false }
2017-03-02 22:47:14 +00:00
} as any;
2016-12-28 22:49:51 +00:00
// ログインしていてかつ iknow フラグがあるとき
if (me && iknow) {
// Get my friends
const myFriends = await getFriends(me._id);
query.follower_id = {
$in: myFriends
};
}
// カーソルが指定されている場合
if (cursor) {
query._id = {
2017-03-02 22:47:14 +00:00
$lt: cursor
2016-12-28 22:49:51 +00:00
};
}
// Get followers
const following = await Following
2017-01-17 02:11:22 +00:00
.find(query, {
2016-12-28 22:49:51 +00:00
limit: limit + 1,
sort: { _id: -1 }
2017-01-17 02:11:22 +00:00
});
2016-12-28 22:49:51 +00:00
// 「次のページ」があるかどうか
const inStock = following.length === limit + 1;
if (inStock) {
following.pop();
}
// Serialize
const users = await Promise.all(following.map(async f =>
2018-02-01 23:21:30 +00:00
await pack(f.follower_id, me, { detail: true })));
2016-12-28 22:49:51 +00:00
// Response
res({
users: users,
next: inStock ? following[following.length - 1]._id : null,
});
});