2022-06-14 11:01:23 +02:00
|
|
|
import { Not } from 'typeorm';
|
|
|
|
import { Pages, DriveFiles } from '@/models/index.js';
|
2022-02-27 03:07:39 +01:00
|
|
|
import define from '../../define.js';
|
|
|
|
import { ApiError } from '../../error.js';
|
2022-07-14 00:01:23 +02:00
|
|
|
import { HOUR } from '@/const.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',
|
|
|
|
|
|
|
|
limit: {
|
2022-07-14 00:01:23 +02:00
|
|
|
duration: HOUR,
|
2021-12-09 15:58:30 +01:00
|
|
|
max: 300,
|
2019-04-29 02:11:57 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchPage: {
|
|
|
|
message: 'No such page.',
|
|
|
|
code: 'NO_SUCH_PAGE',
|
2021-12-09 15:58:30 +01:00
|
|
|
id: '21149b9e-3616-4778-9592-c4ce89f5a864',
|
2019-04-29 02:11:57 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
accessDenied: {
|
|
|
|
message: 'Access denied.',
|
|
|
|
code: 'ACCESS_DENIED',
|
2021-12-09 15:58:30 +01:00
|
|
|
id: '3c15cd52-3b4b-4274-967d-6456fc4f792b',
|
2019-04-29 02:11:57 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
noSuchFile: {
|
|
|
|
message: 'No such file.',
|
|
|
|
code: 'NO_SUCH_FILE',
|
2021-12-09 15:58:30 +01:00
|
|
|
id: 'cfc23c7c-3887-490e-af30-0ed576703c82',
|
2019-04-29 02:11:57 +02:00
|
|
|
},
|
2019-08-28 01:00:05 +02:00
|
|
|
nameAlreadyExists: {
|
|
|
|
message: 'Specified name already exists.',
|
|
|
|
code: 'NAME_ALREADY_EXISTS',
|
2021-12-09 15:58:30 +01:00
|
|
|
id: '2298a392-d4a1-44c5-9ebb-ac1aeaa5a9ab',
|
|
|
|
},
|
|
|
|
},
|
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' },
|
|
|
|
title: { type: 'string' },
|
|
|
|
name: { type: 'string', minLength: 1 },
|
|
|
|
summary: { type: 'string', nullable: true },
|
|
|
|
content: { type: 'array', items: {
|
|
|
|
type: 'object', additionalProperties: true,
|
|
|
|
} },
|
|
|
|
variables: { type: 'array', items: {
|
|
|
|
type: 'object', additionalProperties: true,
|
|
|
|
} },
|
|
|
|
script: { type: 'string' },
|
|
|
|
eyeCatchingImageId: { type: 'string', format: 'misskey:id', nullable: true },
|
|
|
|
font: { type: 'string', enum: ['serif', 'sans-serif'] },
|
|
|
|
alignCenter: { type: 'boolean' },
|
|
|
|
hideTitleWhenPinned: { type: 'boolean' },
|
|
|
|
},
|
|
|
|
required: ['pageId', 'title', 'name', 'content', 'variables', 'script'],
|
|
|
|
} 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);
|
|
|
|
}
|
|
|
|
|
|
|
|
let eyeCatchingImage = null;
|
|
|
|
if (ps.eyeCatchingImageId != null) {
|
2022-03-26 07:34:00 +01:00
|
|
|
eyeCatchingImage = await DriveFiles.findOneBy({
|
2019-04-29 02:11:57 +02:00
|
|
|
id: ps.eyeCatchingImageId,
|
2021-12-09 15:58:30 +01:00
|
|
|
userId: user.id,
|
2019-04-29 02:11:57 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
if (eyeCatchingImage == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchFile);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-26 07:34:00 +01:00
|
|
|
await Pages.findBy({
|
2019-08-28 01:00:05 +02:00
|
|
|
id: Not(ps.pageId),
|
|
|
|
userId: user.id,
|
2021-12-09 15:58:30 +01:00
|
|
|
name: ps.name,
|
2019-08-28 01:00:05 +02:00
|
|
|
}).then(result => {
|
|
|
|
if (result.length > 0) {
|
|
|
|
throw new ApiError(meta.errors.nameAlreadyExists);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-04-29 02:11:57 +02:00
|
|
|
await Pages.update(page.id, {
|
|
|
|
updatedAt: new Date(),
|
|
|
|
title: ps.title,
|
|
|
|
name: ps.name === undefined ? page.name : ps.name,
|
|
|
|
summary: ps.name === undefined ? page.summary : ps.summary,
|
|
|
|
content: ps.content,
|
|
|
|
variables: ps.variables,
|
2020-04-12 20:23:23 +02:00
|
|
|
script: ps.script,
|
2019-04-29 02:11:57 +02:00
|
|
|
alignCenter: ps.alignCenter === undefined ? page.alignCenter : ps.alignCenter,
|
2019-07-06 23:56:13 +02:00
|
|
|
hideTitleWhenPinned: ps.hideTitleWhenPinned === undefined ? page.hideTitleWhenPinned : ps.hideTitleWhenPinned,
|
2019-04-29 02:11:57 +02:00
|
|
|
font: ps.font === undefined ? page.font : ps.font,
|
|
|
|
eyeCatchingImageId: ps.eyeCatchingImageId === null
|
|
|
|
? null
|
|
|
|
: ps.eyeCatchingImageId === undefined
|
|
|
|
? page.eyeCatchingImageId
|
|
|
|
: eyeCatchingImage!.id,
|
|
|
|
});
|
|
|
|
});
|