2019-02-04 20:48:08 -06:00
|
|
|
import $ from 'cafy';
|
2021-08-19 07:55:45 -05: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-28 16:49:51 -06:00
|
|
|
|
2018-07-16 14:36:44 -05:00
|
|
|
export const meta = {
|
2019-02-22 20:20:58 -06:00
|
|
|
tags: ['account', 'notes', 'favorites'],
|
|
|
|
|
2022-01-18 07:27:10 -06:00
|
|
|
requireCredential: true,
|
2018-07-16 14:36:44 -05:00
|
|
|
|
2019-04-14 22:10:40 -05:00
|
|
|
kind: 'read:favorites',
|
2018-07-16 14:36:44 -05:00
|
|
|
|
2018-11-01 13:32:24 -05:00
|
|
|
params: {
|
|
|
|
limit: {
|
2019-02-13 01:33:07 -06:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2021-12-09 08:58:30 -06:00
|
|
|
default: 10,
|
2018-11-01 13:32:24 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
sinceId: {
|
2019-02-13 01:33:07 -06:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 13:32:24 -05:00
|
|
|
},
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2018-11-01 13:32:24 -05:00
|
|
|
untilId: {
|
2019-02-13 01:33:07 -06:00
|
|
|
validator: $.optional.type(ID),
|
2019-04-07 07:50:36 -05:00
|
|
|
},
|
2019-05-20 08:01:32 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
2022-01-18 07:27:10 -06:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2019-05-20 08:01:32 -05:00
|
|
|
items: {
|
2022-01-18 07:27:10 -06:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2019-05-20 08:01:32 -05:00
|
|
|
ref: 'NoteFavorite',
|
2021-12-09 08:58:30 -06:00
|
|
|
},
|
2019-05-20 08:01:32 -05:00
|
|
|
},
|
2022-01-18 07:27:10 -06:00
|
|
|
} as const;
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2022-01-02 11:12:50 -06:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2019-02-21 20:46:58 -06:00
|
|
|
export default define(meta, async (ps, user) => {
|
2019-04-07 07:50:36 -05: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 16:49:51 -06:00
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
const favorites = await query
|
2019-04-12 11:43:22 -05:00
|
|
|
.take(ps.limit!)
|
2019-04-07 07:50:36 -05:00
|
|
|
.getMany();
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
return await NoteFavorites.packMany(favorites, user);
|
2019-02-21 20:46:58 -06:00
|
|
|
});
|