d071d18dd7
* wip * wip * fix * clean up * Update tsconfig.json * Update activitypub.ts * wip
46 lines
990 B
TypeScript
46 lines
990 B
TypeScript
import define from '../../define.js';
|
|
import { ApiError } from '../../error.js';
|
|
import { Pages } from '@/models/index.js';
|
|
|
|
export const meta = {
|
|
tags: ['pages'],
|
|
|
|
requireCredential: true,
|
|
|
|
kind: 'write:pages',
|
|
|
|
errors: {
|
|
noSuchPage: {
|
|
message: 'No such page.',
|
|
code: 'NO_SUCH_PAGE',
|
|
id: 'eb0c6e1d-d519-4764-9486-52a7e1c6392a',
|
|
},
|
|
|
|
accessDenied: {
|
|
message: 'Access denied.',
|
|
code: 'ACCESS_DENIED',
|
|
id: '8b741b3e-2c22-44b3-a15f-29949aa1601e',
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
pageId: { type: 'string', format: 'misskey:id' },
|
|
},
|
|
required: ['pageId'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, async (ps, user) => {
|
|
const page = await Pages.findOne(ps.pageId);
|
|
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);
|
|
});
|