94 lines
2.4 KiB
TypeScript
94 lines
2.4 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
import ms from 'ms';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import type { DriveFoldersRepository } from '@/models/_.js';
|
|
import { IdService } from '@/core/IdService.js';
|
|
import { DriveFolderEntityService } from '@/core/entities/DriveFolderEntityService.js';
|
|
import { GlobalEventService } from '@/core/GlobalEventService.js';
|
|
import { DI } from '@/di-symbols.js';
|
|
import { ApiError } from '../../../error.js';
|
|
|
|
export const meta = {
|
|
tags: ['drive'],
|
|
|
|
requireCredential: true,
|
|
|
|
kind: 'write:drive',
|
|
|
|
limit: {
|
|
duration: ms('1hour'),
|
|
max: 10,
|
|
},
|
|
|
|
errors: {
|
|
noSuchFolder: {
|
|
message: 'No such folder.',
|
|
code: 'NO_SUCH_FOLDER',
|
|
id: '53326628-a00d-40a6-a3cd-8975105c0f95',
|
|
},
|
|
},
|
|
|
|
res: {
|
|
type: 'object' as const,
|
|
optional: false as const, nullable: false as const,
|
|
ref: 'DriveFolder',
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
name: { type: 'string', default: 'Untitled', minLength: 1, maxLength: 200 },
|
|
parentId: { type: 'string', format: 'misskey:id', nullable: true },
|
|
},
|
|
required: [],
|
|
} as const;
|
|
|
|
@Injectable()
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
|
constructor(
|
|
@Inject(DI.driveFoldersRepository)
|
|
private driveFoldersRepository: DriveFoldersRepository,
|
|
|
|
private driveFolderEntityService: DriveFolderEntityService,
|
|
private idService: IdService,
|
|
private globalEventService: GlobalEventService,
|
|
) {
|
|
super(meta, paramDef, async (ps, me) => {
|
|
// If the parent folder is specified
|
|
let parent = null;
|
|
if (ps.parentId) {
|
|
// Fetch parent folder
|
|
parent = await this.driveFoldersRepository.findOneBy({
|
|
id: ps.parentId,
|
|
userId: me.id,
|
|
});
|
|
|
|
if (parent == null) {
|
|
throw new ApiError(meta.errors.noSuchFolder);
|
|
}
|
|
}
|
|
|
|
// Create folder
|
|
const folder = await this.driveFoldersRepository.insertOne({
|
|
id: this.idService.gen(),
|
|
name: ps.name,
|
|
parentId: parent !== null ? parent.id : null,
|
|
userId: me.id,
|
|
});
|
|
|
|
const folderObj = await this.driveFolderEntityService.pack(folder);
|
|
|
|
// Publish folderCreated event
|
|
this.globalEventService.publishDriveStream(me.id, 'folderCreated', folderObj);
|
|
|
|
return folderObj;
|
|
});
|
|
}
|
|
}
|