97 lines
2.4 KiB
TypeScript
97 lines
2.4 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
import type { DriveFilesRepository } from '@/models/_.js';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import { DI } from '@/di-symbols.js';
|
|
import { RoleService } from '@/core/RoleService.js';
|
|
import { DriveService } from '@/core/DriveService.js';
|
|
import { ApiError } from '../../../error.js';
|
|
|
|
export const meta = {
|
|
tags: ['drive'],
|
|
|
|
requireCredential: true,
|
|
|
|
kind: 'write:drive',
|
|
|
|
description: 'Update the properties of a drive file.',
|
|
|
|
errors: {
|
|
invalidFileName: {
|
|
message: 'Invalid file name.',
|
|
code: 'INVALID_FILE_NAME',
|
|
id: '395e7156-f9f0-475e-af89-53c3c23080c2',
|
|
},
|
|
|
|
noSuchFile: {
|
|
message: 'No such file.',
|
|
code: 'NO_SUCH_FILE',
|
|
id: 'e7778c7e-3af9-49cd-9690-6dbc3e6c972d',
|
|
},
|
|
|
|
accessDenied: {
|
|
message: 'Access denied.',
|
|
code: 'ACCESS_DENIED',
|
|
id: '01a53b27-82fc-445b-a0c1-b558465a8ed2',
|
|
},
|
|
|
|
noSuchFolder: {
|
|
message: 'No such folder.',
|
|
code: 'NO_SUCH_FOLDER',
|
|
id: 'ea8fb7a5-af77-4a08-b608-c0218176cd73',
|
|
},
|
|
|
|
restrictedByRole: {
|
|
message: 'This feature is restricted by your role.',
|
|
code: 'RESTRICTED_BY_ROLE',
|
|
id: '7f59dccb-f465-75ab-5cf4-3ce44e3282f7',
|
|
},
|
|
},
|
|
res: {
|
|
type: 'object',
|
|
optional: false, nullable: false,
|
|
ref: 'DriveFile',
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
fileId: { type: 'string', format: 'misskey:id' },
|
|
folderId: { type: 'string', format: 'misskey:id', nullable: true },
|
|
name: { type: 'string' },
|
|
isSensitive: { type: 'boolean' },
|
|
comment: { type: 'string', nullable: true, maxLength: 512 },
|
|
},
|
|
required: ['fileId'],
|
|
} as const;
|
|
|
|
@Injectable()
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
|
constructor(
|
|
@Inject(DI.driveFilesRepository)
|
|
private driveFilesRepository: DriveFilesRepository,
|
|
|
|
private driveService: DriveService,
|
|
private roleService: RoleService,
|
|
) {
|
|
super(meta, paramDef, async (ps, me) => {
|
|
const file = await this.driveFilesRepository.findOneBy({ id: ps.fileId });
|
|
if (file == null) {
|
|
throw new ApiError(meta.errors.noSuchFile);
|
|
}
|
|
|
|
if (!await this.roleService.isModerator(me) && (file.userId !== me.id)) {
|
|
throw new ApiError(meta.errors.accessDenied);
|
|
}
|
|
|
|
const fileObj = await this.driveService.update(file, ps, me);
|
|
|
|
return fileObj;
|
|
});
|
|
}
|
|
}
|