2022-02-27 04:07:39 +02:00
|
|
|
import define from '../../define.js';
|
|
|
|
import { GalleryPosts } from '@/models/index.js';
|
2021-04-24 16:38:24 +03:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['gallery'],
|
|
|
|
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: false,
|
2021-04-24 16:38:24 +03:00
|
|
|
|
|
|
|
res: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2021-04-24 16:38:24 +03:00
|
|
|
items: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-04-24 16:38:24 +03:00
|
|
|
ref: 'GalleryPost',
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2021-04-24 16:38:24 +03:00
|
|
|
},
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2021-04-24 16:38:24 +03:00
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02:00
|
|
|
type: 'object',
|
|
|
|
properties: {},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 07:05:32 +02:00
|
|
|
export default define(meta, paramDef, async (ps, me) => {
|
2021-04-24 16:38:24 +03:00
|
|
|
const query = GalleryPosts.createQueryBuilder('post')
|
|
|
|
.andWhere('post.createdAt > :date', { date: new Date(Date.now() - (1000 * 60 * 60 * 24 * 3)) })
|
|
|
|
.andWhere('post.likedCount > 0')
|
|
|
|
.orderBy('post.likedCount', 'DESC');
|
|
|
|
|
|
|
|
const posts = await query.take(10).getMany();
|
|
|
|
|
|
|
|
return await GalleryPosts.packMany(posts, me);
|
|
|
|
});
|