d071d18dd7
* wip * wip * fix * clean up * Update tsconfig.json * Update activitypub.ts * wip
45 lines
893 B
TypeScript
45 lines
893 B
TypeScript
import define from '../../../define.js';
|
|
import { ApiError } from '../../../error.js';
|
|
import { GalleryPosts } from '@/models/index.js';
|
|
|
|
export const meta = {
|
|
tags: ['gallery'],
|
|
|
|
requireCredential: false,
|
|
|
|
errors: {
|
|
noSuchPost: {
|
|
message: 'No such post.',
|
|
code: 'NO_SUCH_POST',
|
|
id: '1137bf14-c5b0-4604-85bb-5b5371b1cd45',
|
|
},
|
|
},
|
|
|
|
res: {
|
|
type: 'object',
|
|
optional: false, nullable: false,
|
|
ref: 'GalleryPost',
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
postId: { type: 'string', format: 'misskey:id' },
|
|
},
|
|
required: ['postId'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, async (ps, me) => {
|
|
const post = await GalleryPosts.findOne({
|
|
id: ps.postId,
|
|
});
|
|
|
|
if (post == null) {
|
|
throw new ApiError(meta.errors.noSuchPost);
|
|
}
|
|
|
|
return await GalleryPosts.pack(post, me);
|
|
});
|