diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-04-24 23:04:59 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-04-24 23:04:59 +0900 |
| commit | 8043409d386d5e08c85d27c720ecca2b3f8030ab (patch) | |
| tree | 584bc43b126dbdc9ba592758aa9c17f8e122f344 /src/server/api/endpoints/gallery/featured.ts | |
| parent | Merge branch 'develop' (diff) | |
| parent | 12.79.0 (diff) | |
| download | misskey-8043409d386d5e08c85d27c720ecca2b3f8030ab.tar.gz misskey-8043409d386d5e08c85d27c720ecca2b3f8030ab.tar.bz2 misskey-8043409d386d5e08c85d27c720ecca2b3f8030ab.zip | |
Merge branch 'develop'
Diffstat (limited to 'src/server/api/endpoints/gallery/featured.ts')
| -rw-r--r-- | src/server/api/endpoints/gallery/featured.ts | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/server/api/endpoints/gallery/featured.ts b/src/server/api/endpoints/gallery/featured.ts new file mode 100644 index 0000000000..d09000cc71 --- /dev/null +++ b/src/server/api/endpoints/gallery/featured.ts @@ -0,0 +1,29 @@ +import define from '../../define'; +import { GalleryPosts } from '../../../../models'; + +export const meta = { + tags: ['gallery'], + + requireCredential: false as const, + + res: { + type: 'array' as const, + optional: false as const, nullable: false as const, + items: { + type: 'object' as const, + optional: false as const, nullable: false as const, + ref: 'GalleryPost', + } + }, +}; + +export default define(meta, async (ps, me) => { + 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); +}); |