fcfb5ef0a3
* wip
* ✌️
* use ajv/dist/core
* revert try
* clean up
45 lines
884 B
TypeScript
45 lines
884 B
TypeScript
import define from '../../../define';
|
|
import { ApiError } from '../../../error';
|
|
import { GalleryPosts } from '@/models/index';
|
|
|
|
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);
|
|
});
|