2022-02-27 03:07:39 +01:00
|
|
|
import define from '../../../define.js';
|
|
|
|
import { ApiError } from '../../../error.js';
|
|
|
|
import { GalleryPosts } from '@/models/index.js';
|
2021-04-26 04:10:45 +02:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['gallery'],
|
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: true,
|
2021-04-26 04:10:45 +02:00
|
|
|
|
|
|
|
kind: 'write:gallery',
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchPost: {
|
|
|
|
message: 'No such post.',
|
|
|
|
code: 'NO_SUCH_POST',
|
2021-12-09 15:58:30 +01:00
|
|
|
id: 'ae52f367-4bd7-4ecd-afc6-5672fff427f5',
|
2021-04-26 04:10:45 +02:00
|
|
|
},
|
2021-12-09 15:58:30 +01:00
|
|
|
},
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2021-04-26 04:10:45 +02:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2022-02-19 06:05:32 +01:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
postId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['postId'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 18:12:50 +01:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 06:05:32 +01:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2021-04-26 04:10:45 +02:00
|
|
|
const post = await GalleryPosts.findOne({
|
|
|
|
id: ps.postId,
|
|
|
|
userId: user.id,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (post == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchPost);
|
|
|
|
}
|
|
|
|
|
|
|
|
await GalleryPosts.delete(post.id);
|
|
|
|
});
|