2021-11-12 10:47:04 +00:00
|
|
|
import ms from 'ms';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2022-09-20 20:33:11 +00:00
|
|
|
import type { DriveFilesRepository, PagesRepository } from '@/models/index.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { IdService } from '@/core/IdService.js';
|
|
|
|
import { Page } from '@/models/entities/Page.js';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { PageEntityService } from '@/core/entities/PageEntityService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-02-27 02:07:39 +00:00
|
|
|
import { ApiError } from '../../error.js';
|
2019-04-29 00:11:57 +00:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['pages'],
|
|
|
|
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: true,
|
2019-04-29 00:11:57 +00:00
|
|
|
|
|
|
|
kind: 'write:pages',
|
|
|
|
|
|
|
|
limit: {
|
|
|
|
duration: ms('1hour'),
|
2023-01-14 11:21:03 +00:00
|
|
|
max: 10,
|
2019-04-29 00:11:57 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2019-04-29 00:11:57 +00:00
|
|
|
ref: 'Page',
|
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchFile: {
|
|
|
|
message: 'No such file.',
|
|
|
|
code: 'NO_SUCH_FILE',
|
2021-12-09 14:58:30 +00:00
|
|
|
id: 'b7b97489-0f66-4b12-a5ff-b21bd63f6e1c',
|
2019-04-29 00:11:57 +00:00
|
|
|
},
|
2019-08-27 23:00:05 +00:00
|
|
|
nameAlreadyExists: {
|
|
|
|
message: 'Specified name already exists.',
|
|
|
|
code: 'NAME_ALREADY_EXISTS',
|
2021-12-09 14:58:30 +00:00
|
|
|
id: '4650348e-301c-499a-83c9-6aa988c66bc1',
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2019-04-29 00:11:57 +00:00
|
|
|
|
2022-02-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
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 },
|
2022-06-14 09:01:23 +00:00
|
|
|
font: { type: 'string', enum: ['serif', 'sans-serif'], default: 'sans-serif' },
|
2022-02-19 05:05:32 +00:00
|
|
|
alignCenter: { type: 'boolean', default: false },
|
|
|
|
hideTitleWhenPinned: { type: 'boolean', default: false },
|
|
|
|
},
|
|
|
|
required: ['title', 'name', 'content', 'variables', 'script'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 18:27:08 +00:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.pagesRepository)
|
|
|
|
private pagesRepository: PagesRepository,
|
2019-04-29 00:11:57 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
@Inject(DI.driveFilesRepository)
|
|
|
|
private driveFilesRepository: DriveFilesRepository,
|
|
|
|
|
|
|
|
private pageEntityService: PageEntityService,
|
|
|
|
private idService: IdService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
let eyeCatchingImage = null;
|
|
|
|
if (ps.eyeCatchingImageId != null) {
|
|
|
|
eyeCatchingImage = await this.driveFilesRepository.findOneBy({
|
|
|
|
id: ps.eyeCatchingImageId,
|
|
|
|
userId: me.id,
|
|
|
|
});
|
2019-04-29 00:11:57 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
if (eyeCatchingImage == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchFile);
|
|
|
|
}
|
|
|
|
}
|
2019-08-27 23:00:05 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
await this.pagesRepository.findBy({
|
|
|
|
userId: me.id,
|
|
|
|
name: ps.name,
|
|
|
|
}).then(result => {
|
|
|
|
if (result.length > 0) {
|
|
|
|
throw new ApiError(meta.errors.nameAlreadyExists);
|
|
|
|
}
|
|
|
|
});
|
2019-04-29 00:11:57 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
const page = await this.pagesRepository.insert(new Page({
|
|
|
|
id: this.idService.genId(),
|
|
|
|
createdAt: new Date(),
|
|
|
|
updatedAt: new Date(),
|
|
|
|
title: ps.title,
|
|
|
|
name: ps.name,
|
|
|
|
summary: ps.summary,
|
|
|
|
content: ps.content,
|
|
|
|
variables: ps.variables,
|
|
|
|
script: ps.script,
|
|
|
|
eyeCatchingImageId: eyeCatchingImage ? eyeCatchingImage.id : null,
|
|
|
|
userId: me.id,
|
|
|
|
visibility: 'public',
|
|
|
|
alignCenter: ps.alignCenter,
|
|
|
|
hideTitleWhenPinned: ps.hideTitleWhenPinned,
|
|
|
|
font: ps.font,
|
|
|
|
})).then(x => this.pagesRepository.findOneByOrFail(x.identifiers[0]));
|
|
|
|
|
|
|
|
return await this.pageEntityService.pack(page);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|