2022-02-27 02:07:39 +00:00
|
|
|
import { Pages } from '@/models/index.js';
|
2022-06-14 09:01:23 +00:00
|
|
|
import define from '../../define.js';
|
2020-11-17 05:59:15 +00:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['pages'],
|
|
|
|
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: false,
|
2020-11-17 05:59:15 +00:00
|
|
|
|
|
|
|
res: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2020-11-17 05:59:15 +00:00
|
|
|
items: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2020-11-17 05:59:15 +00:00
|
|
|
ref: 'Page',
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
2020-11-17 05:59:15 +00:00
|
|
|
},
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2020-11-17 05:59:15 +00:00
|
|
|
|
2022-02-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00:00
|
|
|
type: 'object',
|
|
|
|
properties: {},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 05:05:32 +00:00
|
|
|
export default define(meta, paramDef, async (ps, me) => {
|
2020-11-17 05:59:15 +00:00
|
|
|
const query = Pages.createQueryBuilder('page')
|
|
|
|
.where('page.visibility = \'public\'')
|
|
|
|
.andWhere('page.likedCount > 0')
|
|
|
|
.orderBy('page.likedCount', 'DESC');
|
|
|
|
|
|
|
|
const pages = await query.take(10).getMany();
|
|
|
|
|
|
|
|
return await Pages.packMany(pages, me);
|
|
|
|
});
|