64 lines
1.5 KiB
TypeScript
64 lines
1.5 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
import { IsNull } from 'typeorm';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import type { DriveFoldersRepository } from '@/models/_.js';
|
|
import { DriveFolderEntityService } from '@/core/entities/DriveFolderEntityService.js';
|
|
import { DI } from '@/di-symbols.js';
|
|
|
|
export const meta = {
|
|
tags: ['drive'],
|
|
|
|
requireCredential: true,
|
|
|
|
kind: 'read:drive',
|
|
|
|
res: {
|
|
type: 'array',
|
|
optional: false, nullable: false,
|
|
items: {
|
|
type: 'object',
|
|
optional: false, nullable: false,
|
|
ref: 'DriveFolder',
|
|
},
|
|
},
|
|
|
|
// 2 calls per second
|
|
limit: {
|
|
duration: 1000,
|
|
max: 2,
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
name: { type: 'string' },
|
|
parentId: { type: 'string', format: 'misskey:id', nullable: true, default: null },
|
|
},
|
|
required: ['name'],
|
|
} 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,
|
|
) {
|
|
super(meta, paramDef, async (ps, me) => {
|
|
const folders = await this.driveFoldersRepository.findBy({
|
|
name: ps.name,
|
|
userId: me.id,
|
|
parentId: ps.parentId ?? IsNull(),
|
|
});
|
|
|
|
return await Promise.all(folders.map(folder => this.driveFolderEntityService.pack(folder)));
|
|
});
|
|
}
|
|
}
|