2018-07-07 12:19:00 +02:00
|
|
|
import $ from 'cafy'; import ID from '../../../../misc/cafy-id';
|
2018-10-04 06:33:59 +02:00
|
|
|
import Favorite, { packMany } 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-07-16 21:36:44 +02:00
|
|
|
export const meta = {
|
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': 'お気に入りに登録した投稿一覧を取得します。',
|
|
|
|
'en-US': 'Get favorited notes'
|
2018-07-16 21:36:44 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
requireCredential: true,
|
|
|
|
|
|
|
|
kind: 'favorites-read'
|
|
|
|
};
|
|
|
|
|
2018-07-05 19:58:29 +02:00
|
|
|
export default (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
|
2016-12-28 23:49:51 +01:00
|
|
|
// Get 'limit' parameter
|
2018-07-05 16:36:07 +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-07-05 16:36:07 +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-07-05 16:36:07 +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-10-04 06:33:59 +02:00
|
|
|
res(await packMany(favorites, user));
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|