2023-01-13 05:40:33 +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 = {
|
2023-01-13 05:40:33 +01:00
|
|
|
tags: ["gallery"],
|
2021-04-26 04:10:45 +02:00
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: true,
|
2021-04-26 04:10:45 +02:00
|
|
|
|
2023-01-13 05:40:33 +01:00
|
|
|
kind: "write:gallery",
|
2021-04-26 04:10:45 +02:00
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchPost: {
|
2023-01-13 05:40:33 +01:00
|
|
|
message: "No such post.",
|
|
|
|
code: "NO_SUCH_POST",
|
|
|
|
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 = {
|
2023-01-13 05:40:33 +01:00
|
|
|
type: "object",
|
2022-02-19 06:05:32 +01:00
|
|
|
properties: {
|
2023-01-13 05:40:33 +01:00
|
|
|
postId: { type: "string", format: "misskey:id" },
|
2022-02-19 06:05:32 +01:00
|
|
|
},
|
2023-01-13 05:40:33 +01:00
|
|
|
required: ["postId"],
|
2022-02-19 06:05:32 +01:00
|
|
|
} as const;
|
|
|
|
|
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2022-03-26 07:34:00 +01:00
|
|
|
const post = await GalleryPosts.findOneBy({
|
2021-04-26 04:10:45 +02:00
|
|
|
id: ps.postId,
|
|
|
|
userId: user.id,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (post == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchPost);
|
|
|
|
}
|
|
|
|
|
|
|
|
await GalleryPosts.delete(post.id);
|
|
|
|
});
|