2019-02-05 11:48:08 +09:00
|
|
|
import $ from 'cafy';
|
2021-08-19 21:55:45 +09:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
import define from '../../define';
|
|
|
|
import { NoteFavorites } from '@/models/index';
|
|
|
|
import { makePaginationQuery } from '../../common/make-pagination-query';
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2018-07-17 04:36:44 +09:00
|
|
|
export const meta = {
|
2019-02-23 11:20:58 +09:00
|
|
|
tags: ['account', 'notes', 'favorites'],
|
|
|
|
|
2020-02-15 21:33:32 +09:00
|
|
|
requireCredential: true as const,
|
2018-07-17 04:36:44 +09:00
|
|
|
|
2019-04-15 12:10:40 +09:00
|
|
|
kind: 'read:favorites',
|
2018-07-17 04:36:44 +09:00
|
|
|
|
2018-11-02 03:32:24 +09:00
|
|
|
params: {
|
|
|
|
limit: {
|
2019-02-13 16:33:07 +09:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2021-12-09 23:58:30 +09:00
|
|
|
default: 10,
|
2018-11-02 03:32:24 +09:00
|
|
|
},
|
|
|
|
|
|
|
|
sinceId: {
|
2019-02-13 16:33:07 +09:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-02 03:32:24 +09:00
|
|
|
},
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2018-11-02 03:32:24 +09:00
|
|
|
untilId: {
|
2019-02-13 16:33:07 +09:00
|
|
|
validator: $.optional.type(ID),
|
2019-04-07 21:50:36 +09:00
|
|
|
},
|
2019-05-20 22:01:32 +09:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
2019-06-27 18:04:09 +09:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-05-20 22:01:32 +09:00
|
|
|
items: {
|
2019-06-27 18:04:09 +09:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-05-20 22:01:32 +09:00
|
|
|
ref: 'NoteFavorite',
|
2021-12-09 23:58:30 +09:00
|
|
|
},
|
2019-05-20 22:01:32 +09:00
|
|
|
},
|
2018-11-02 03:32:24 +09:00
|
|
|
};
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2022-01-03 02:12:50 +09:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2019-02-22 11:46:58 +09:00
|
|
|
export default define(meta, async (ps, user) => {
|
2019-04-07 21:50:36 +09:00
|
|
|
const query = makePaginationQuery(NoteFavorites.createQueryBuilder('favorite'), ps.sinceId, ps.untilId)
|
|
|
|
.andWhere(`favorite.userId = :meId`, { meId: user.id })
|
|
|
|
.leftJoinAndSelect('favorite.note', 'note');
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
const favorites = await query
|
2019-04-13 01:43:22 +09:00
|
|
|
.take(ps.limit!)
|
2019-04-07 21:50:36 +09:00
|
|
|
.getMany();
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
return await NoteFavorites.packMany(favorites, user);
|
2019-02-22 11:46:58 +09:00
|
|
|
});
|