2018-04-24 11:13:06 +02:00
|
|
|
import $ from 'cafy'; import ID from '../../../../cafy-id';
|
2018-04-20 06:31:43 +02:00
|
|
|
import Favorite, { pack } from '../../../../models/favorite';
|
2018-06-18 02:54:53 +02:00
|
|
|
import { ILocalUser } from '../../../../models/user';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
/**
|
2018-04-20 06:31:43 +02:00
|
|
|
* Get favorited notes
|
2016-12-28 23:49:51 +01:00
|
|
|
*/
|
2018-06-18 02:54:53 +02:00
|
|
|
module.exports = (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
|
2016-12-28 23:49:51 +01:00
|
|
|
// Get 'limit' parameter
|
2018-05-02 11:06:16 +02:00
|
|
|
const [limit = 10, limitErr] = $.num.optional().range(1, 100).get(params.limit);
|
2017-03-03 00:56:07 +01:00
|
|
|
if (limitErr) return rej('invalid limit param');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-04-20 06:31:43 +02:00
|
|
|
// Get 'sinceId' parameter
|
2018-05-02 11:06:16 +02:00
|
|
|
const [sinceId, sinceIdErr] = $.type(ID).optional().get(params.sinceId);
|
2018-04-20 06:31:43 +02:00
|
|
|
if (sinceIdErr) return rej('invalid sinceId param');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-04-20 06:31:43 +02:00
|
|
|
// Get 'untilId' parameter
|
2018-05-02 11:06:16 +02:00
|
|
|
const [untilId, untilIdErr] = $.type(ID).optional().get(params.untilId);
|
2018-04-20 06:31:43 +02: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 23:49:51 +01:00
|
|
|
|
|
|
|
// Get favorites
|
2017-03-03 00:56:07 +01:00
|
|
|
const favorites = await Favorite
|
2018-04-20 06:31:43 +02:00
|
|
|
.find(query, { limit, sort });
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
// Serialize
|
2018-04-20 06:31:43 +02:00
|
|
|
res(await Promise.all(favorites.map(favorite => pack(favorite, user))));
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|