2023-01-13 05:40:33 +01:00
|
|
|
import { Pages } from "@/models/index.js";
|
|
|
|
import define from "../../define.js";
|
|
|
|
import { ApiError } from "../../error.js";
|
2019-04-29 02:11:57 +02:00
|
|
|
|
|
|
|
export const meta = {
|
2023-01-13 05:40:33 +01:00
|
|
|
tags: ["pages"],
|
2019-04-29 02:11:57 +02:00
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: true,
|
2019-04-29 02:11:57 +02:00
|
|
|
|
2023-01-13 05:40:33 +01:00
|
|
|
kind: "write:pages",
|
2019-04-29 02:11:57 +02:00
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchPage: {
|
2023-01-13 05:40:33 +01:00
|
|
|
message: "No such page.",
|
|
|
|
code: "NO_SUCH_PAGE",
|
|
|
|
id: "eb0c6e1d-d519-4764-9486-52a7e1c6392a",
|
2019-04-29 02:11:57 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
accessDenied: {
|
2023-01-13 05:40:33 +01:00
|
|
|
message: "Access denied.",
|
|
|
|
code: "ACCESS_DENIED",
|
|
|
|
id: "8b741b3e-2c22-44b3-a15f-29949aa1601e",
|
2019-04-29 02:11:57 +02:00
|
|
|
},
|
2021-12-09 15:58:30 +01:00
|
|
|
},
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2019-04-29 02:11:57 +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
|
|
|
pageId: { type: "string", format: "misskey:id" },
|
2022-02-19 06:05:32 +01:00
|
|
|
},
|
2023-01-13 05:40:33 +01:00
|
|
|
required: ["pageId"],
|
2022-02-19 06:05:32 +01:00
|
|
|
} 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) => {
|
2022-03-26 07:34:00 +01:00
|
|
|
const page = await Pages.findOneBy({ id: ps.pageId });
|
2019-04-29 02:11:57 +02:00
|
|
|
if (page == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchPage);
|
|
|
|
}
|
|
|
|
if (page.userId !== user.id) {
|
|
|
|
throw new ApiError(meta.errors.accessDenied);
|
|
|
|
}
|
|
|
|
|
|
|
|
await Pages.delete(page.id);
|
|
|
|
});
|