2016-12-28 16:49:51 -06:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2018-04-24 04:13:06 -05:00
|
|
|
import $ from 'cafy'; import ID from '../../../../cafy-id';
|
2018-04-19 23:31:43 -05:00
|
|
|
import Favorite, { pack } from '../../../../models/favorite';
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
/**
|
2018-04-19 23:31:43 -05:00
|
|
|
* Get favorited notes
|
2016-12-28 16:49:51 -06:00
|
|
|
*/
|
2017-03-03 13:28:38 -06:00
|
|
|
module.exports = (params, user) => new Promise(async (res, rej) => {
|
2016-12-28 16:49:51 -06:00
|
|
|
// Get 'limit' parameter
|
2018-05-02 04:06:16 -05:00
|
|
|
const [limit = 10, limitErr] = $.num.optional().range(1, 100).get(params.limit);
|
2017-03-02 17:56:07 -06:00
|
|
|
if (limitErr) return rej('invalid limit param');
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2018-04-19 23:31:43 -05:00
|
|
|
// Get 'sinceId' parameter
|
2018-05-02 04:06:16 -05:00
|
|
|
const [sinceId, sinceIdErr] = $.type(ID).optional().get(params.sinceId);
|
2018-04-19 23:31:43 -05:00
|
|
|
if (sinceIdErr) return rej('invalid sinceId param');
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2018-04-19 23:31:43 -05:00
|
|
|
// Get 'untilId' parameter
|
2018-05-02 04:06:16 -05:00
|
|
|
const [untilId, untilIdErr] = $.type(ID).optional().get(params.untilId);
|
2018-04-19 23:31:43 -05:00
|
|
|
if (untilIdErr) return rej('invalid untilId param');
|
|
|
|
|
|
|
|
// Check if both of sinceId and untilId is specified
|
|
|
|
if (sinceId && untilId) {
|
|
|
|
return rej('cannot set sinceId and untilId');
|
|
|
|
}
|
|
|
|
|
|
|
|
const query = {
|
|
|
|
userId: user._id
|
|
|
|
} as any;
|
|
|
|
|
|
|
|
const sort = {
|
|
|
|
_id: -1
|
|
|
|
};
|
|
|
|
|
|
|
|
if (sinceId) {
|
|
|
|
sort._id = 1;
|
|
|
|
query._id = {
|
|
|
|
$gt: sinceId
|
|
|
|
};
|
|
|
|
} else if (untilId) {
|
|
|
|
query._id = {
|
|
|
|
$lt: untilId
|
|
|
|
};
|
|
|
|
}
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
// Get favorites
|
2017-03-02 17:56:07 -06:00
|
|
|
const favorites = await Favorite
|
2018-04-19 23:31:43 -05:00
|
|
|
.find(query, { limit, sort });
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
// Serialize
|
2018-04-19 23:31:43 -05:00
|
|
|
res(await Promise.all(favorites.map(favorite => pack(favorite, user))));
|
2016-12-28 16:49:51 -06:00
|
|
|
});
|