2019-02-04 19:48:08 -07:00
|
|
|
import $ from 'cafy';
|
2019-04-07 06:50:36 -06:00
|
|
|
import { ID } from '../../../../misc/cafy-id';
|
2018-11-01 22:47:44 -06:00
|
|
|
import define from '../../define';
|
2019-04-07 06:50:36 -06:00
|
|
|
import { NoteFavorites } from '../../../../models';
|
|
|
|
import { makePaginationQuery } from '../../common/make-pagination-query';
|
2016-12-28 15:49:51 -07:00
|
|
|
|
2018-07-16 13:36:44 -06:00
|
|
|
export const meta = {
|
|
|
|
desc: {
|
2018-08-28 15:59:43 -06:00
|
|
|
'ja-JP': 'お気に入りに登録した投稿一覧を取得します。',
|
|
|
|
'en-US': 'Get favorited notes'
|
2018-07-16 13:36:44 -06:00
|
|
|
},
|
|
|
|
|
2019-02-22 19:20:58 -07:00
|
|
|
tags: ['account', 'notes', 'favorites'],
|
|
|
|
|
2020-02-15 05:33:32 -07:00
|
|
|
requireCredential: true as const,
|
2018-07-16 13:36:44 -06:00
|
|
|
|
2019-04-14 21:10:40 -06:00
|
|
|
kind: 'read:favorites',
|
2018-07-16 13:36:44 -06:00
|
|
|
|
2018-11-01 12:32:24 -06:00
|
|
|
params: {
|
|
|
|
limit: {
|
2019-02-13 00:33:07 -07:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2018-11-01 12:32:24 -06:00
|
|
|
default: 10
|
|
|
|
},
|
|
|
|
|
|
|
|
sinceId: {
|
2019-02-13 00:33:07 -07:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 12:32:24 -06:00
|
|
|
},
|
2016-12-28 15:49:51 -07:00
|
|
|
|
2018-11-01 12:32:24 -06:00
|
|
|
untilId: {
|
2019-02-13 00:33:07 -07:00
|
|
|
validator: $.optional.type(ID),
|
2019-04-07 06:50:36 -06:00
|
|
|
},
|
2019-05-20 07:01:32 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
2019-06-27 03:04:09 -06:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-05-20 07:01:32 -06:00
|
|
|
items: {
|
2019-06-27 03:04:09 -06:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-05-20 07:01:32 -06:00
|
|
|
ref: 'NoteFavorite',
|
|
|
|
}
|
|
|
|
},
|
2018-11-01 12:32:24 -06:00
|
|
|
};
|
2016-12-28 15:49:51 -07:00
|
|
|
|
2019-02-21 19:46:58 -07:00
|
|
|
export default define(meta, async (ps, user) => {
|
2019-04-07 06:50:36 -06:00
|
|
|
const query = makePaginationQuery(NoteFavorites.createQueryBuilder('favorite'), ps.sinceId, ps.untilId)
|
|
|
|
.andWhere(`favorite.userId = :meId`, { meId: user.id })
|
|
|
|
.leftJoinAndSelect('favorite.note', 'note');
|
2016-12-28 15:49:51 -07:00
|
|
|
|
2019-04-07 06:50:36 -06:00
|
|
|
const favorites = await query
|
2019-04-12 10:43:22 -06:00
|
|
|
.take(ps.limit!)
|
2019-04-07 06:50:36 -06:00
|
|
|
.getMany();
|
2016-12-28 15:49:51 -07:00
|
|
|
|
2019-04-07 06:50:36 -06:00
|
|
|
return await NoteFavorites.packMany(favorites, user);
|
2019-02-21 19:46:58 -07:00
|
|
|
});
|