2022-09-18 03:27:08 +09:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2022-03-26 15:34:00 +09:00
|
|
|
import { IsNull } from 'typeorm';
|
2022-09-18 03:27:08 +09:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { DriveFoldersRepository } from '@/models/index.js';
|
|
|
|
import { DriveFolderEntityService } from '@/core/entities/DriveFolderEntityService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2018-07-17 04:36:44 +09:00
|
|
|
export const meta = {
|
2019-02-23 11:20:58 +09:00
|
|
|
tags: ['drive'],
|
|
|
|
|
2022-01-18 22:27:10 +09:00
|
|
|
requireCredential: true,
|
2018-07-17 04:36:44 +09:00
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
kind: 'read:drive',
|
2018-11-02 03:32:24 +09:00
|
|
|
|
2019-02-26 14:21:28 +09:00
|
|
|
res: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2019-02-26 14:21:28 +09:00
|
|
|
items: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2019-04-23 22:35:26 +09:00
|
|
|
ref: 'DriveFolder',
|
2021-12-09 23:58:30 +09:00
|
|
|
},
|
2019-02-26 14:21:28 +09:00
|
|
|
},
|
2022-01-18 22:27:10 +09:00
|
|
|
} as const;
|
2018-07-17 04:36:44 +09:00
|
|
|
|
2022-02-20 13:15:40 +09:00
|
|
|
export const paramDef = {
|
2022-02-19 14:05:32 +09:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
name: { type: 'string' },
|
|
|
|
parentId: { type: 'string', format: 'misskey:id', nullable: true, default: null },
|
|
|
|
},
|
|
|
|
required: ['name'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-03 02:12:50 +09:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-18 03:27:08 +09:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
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)));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|