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/users | |
| 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/users')
| -rw-r--r-- | src/server/api/endpoints/users/gallery/posts.ts | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/server/api/endpoints/users/gallery/posts.ts b/src/server/api/endpoints/users/gallery/posts.ts new file mode 100644 index 0000000000..1da6bced5c --- /dev/null +++ b/src/server/api/endpoints/users/gallery/posts.ts @@ -0,0 +1,39 @@ +import $ from 'cafy'; +import { ID } from '@/misc/cafy-id'; +import define from '../../../define'; +import { GalleryPosts } from '../../../../../models'; +import { makePaginationQuery } from '../../../common/make-pagination-query'; + +export const meta = { + tags: ['users', 'gallery'], + + params: { + userId: { + validator: $.type(ID), + }, + + limit: { + validator: $.optional.num.range(1, 100), + default: 10 + }, + + sinceId: { + validator: $.optional.type(ID), + }, + + untilId: { + validator: $.optional.type(ID), + }, + } +}; + +export default define(meta, async (ps, user) => { + const query = makePaginationQuery(GalleryPosts.createQueryBuilder('post'), ps.sinceId, ps.untilId) + .andWhere(`post.userId = :userId`, { userId: ps.userId }); + + const posts = await query + .take(ps.limit!) + .getMany(); + + return await GalleryPosts.packMany(posts, user); +}); |