2022-06-14 11:01:23 +02:00
|
|
|
import { Pages } from '@/models/index.js';
|
2022-02-27 03:07:39 +01:00
|
|
|
import define from '../../define.js';
|
|
|
|
import { ApiError } from '../../error.js';
|
2019-04-29 02:11:57 +02:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['pages'],
|
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: true,
|
2019-04-29 02:11:57 +02:00
|
|
|
|
|
|
|
kind: 'write:pages',
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchPage: {
|
|
|
|
message: 'No such page.',
|
|
|
|
code: 'NO_SUCH_PAGE',
|
2021-12-09 15:58:30 +01:00
|
|
|
id: 'eb0c6e1d-d519-4764-9486-52a7e1c6392a',
|
2019-04-29 02:11:57 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
accessDenied: {
|
|
|
|
message: 'Access denied.',
|
|
|
|
code: 'ACCESS_DENIED',
|
2021-12-09 15:58:30 +01:00
|
|
|
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 = {
|
2022-02-19 06:05:32 +01:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
pageId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['pageId'],
|
|
|
|
} 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);
|
|
|
|
});
|