73 lines
1.6 KiB
TypeScript
73 lines
1.6 KiB
TypeScript
import ms from 'ms';
|
|
import define from '../../../define';
|
|
import { DriveFiles, GalleryPosts } from '@/models/index';
|
|
import { GalleryPost } from '@/models/entities/gallery-post';
|
|
import { ApiError } from '../../../error';
|
|
import { DriveFile } from '@/models/entities/drive-file';
|
|
|
|
export const meta = {
|
|
tags: ['gallery'],
|
|
|
|
requireCredential: true,
|
|
|
|
kind: 'write:gallery',
|
|
|
|
limit: {
|
|
duration: ms('1hour'),
|
|
max: 300,
|
|
},
|
|
|
|
res: {
|
|
type: 'object',
|
|
optional: false, nullable: false,
|
|
ref: 'GalleryPost',
|
|
},
|
|
|
|
errors: {
|
|
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
postId: { type: 'string', format: 'misskey:id' },
|
|
title: { type: 'string', minLength: 1 },
|
|
description: { type: 'string', nullable: true },
|
|
fileIds: { type: 'array', uniqueItems: true, minItems: 1, maxItems: 32, items: {
|
|
type: 'string', format: 'misskey:id',
|
|
} },
|
|
isSensitive: { type: 'boolean', default: false },
|
|
},
|
|
required: ['postId', 'title', 'fileIds'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, async (ps, user) => {
|
|
const files = (await Promise.all(ps.fileIds.map(fileId =>
|
|
DriveFiles.findOne({
|
|
id: fileId,
|
|
userId: user.id,
|
|
})
|
|
))).filter((file): file is DriveFile => file != null);
|
|
|
|
if (files.length === 0) {
|
|
throw new Error();
|
|
}
|
|
|
|
await GalleryPosts.update({
|
|
id: ps.postId,
|
|
userId: user.id,
|
|
}, {
|
|
updatedAt: new Date(),
|
|
title: ps.title,
|
|
description: ps.description,
|
|
isSensitive: ps.isSensitive,
|
|
fileIds: files.map(file => file.id),
|
|
});
|
|
|
|
const post = await GalleryPosts.findOneOrFail(ps.postId);
|
|
|
|
return await GalleryPosts.pack(post, user);
|
|
});
|