2018-11-01 19:32:24 +01:00
|
|
|
import $ from 'cafy'; import ID, { transform } from '../../../../misc/cafy-id';
|
2018-10-04 06:33:59 +02:00
|
|
|
import Favorite, { packMany } from '../../../../models/favorite';
|
2018-11-02 05:47:44 +01:00
|
|
|
import define from '../../define';
|
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,
|
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
kind: 'favorites-read',
|
2018-07-16 21:36:44 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
params: {
|
|
|
|
limit: {
|
|
|
|
validator: $.num.optional.range(1, 100),
|
|
|
|
default: 10
|
|
|
|
},
|
|
|
|
|
|
|
|
sinceId: {
|
|
|
|
validator: $.type(ID).optional,
|
|
|
|
transform: transform,
|
|
|
|
},
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
untilId: {
|
|
|
|
validator: $.type(ID).optional,
|
|
|
|
transform: transform,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-11-02 05:47:44 +01:00
|
|
|
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
|
2018-04-20 06:31:43 +02:00
|
|
|
// Check if both of sinceId and untilId is specified
|
2018-11-01 19:32:24 +01:00
|
|
|
if (ps.sinceId && ps.untilId) {
|
2018-04-20 06:31:43 +02:00
|
|
|
return rej('cannot set sinceId and untilId');
|
|
|
|
}
|
|
|
|
|
|
|
|
const query = {
|
|
|
|
userId: user._id
|
|
|
|
} as any;
|
|
|
|
|
|
|
|
const sort = {
|
|
|
|
_id: -1
|
|
|
|
};
|
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
if (ps.sinceId) {
|
2018-04-20 06:31:43 +02:00
|
|
|
sort._id = 1;
|
|
|
|
query._id = {
|
2018-11-01 19:32:24 +01:00
|
|
|
$gt: ps.sinceId
|
2018-04-20 06:31:43 +02:00
|
|
|
};
|
2018-11-01 19:32:24 +01:00
|
|
|
} else if (ps.untilId) {
|
2018-04-20 06:31:43 +02:00
|
|
|
query._id = {
|
2018-11-01 19:32:24 +01:00
|
|
|
$lt: ps.untilId
|
2018-04-20 06:31:43 +02:00
|
|
|
};
|
|
|
|
}
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
// Get favorites
|
2017-03-03 00:56:07 +01:00
|
|
|
const favorites = await Favorite
|
2018-11-01 19:32:24 +01:00
|
|
|
.find(query, {
|
|
|
|
limit: ps.limit,
|
|
|
|
sort: sort
|
|
|
|
});
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-10-04 06:33:59 +02:00
|
|
|
res(await packMany(favorites, user));
|
2018-11-02 05:47:44 +01:00
|
|
|
}));
|