Johann150
6ce4b3fe2f
Many of these were fixed automatically with eslint --fix. Some of them (e.g. adding return types to functions) were done manually.
42 lines
1 KiB
TypeScript
42 lines
1 KiB
TypeScript
import { db } from '@/db/postgre.js';
|
|
import { Packed } from '@/misc/schema.js';
|
|
import { DriveFolder } from '@/models/entities/drive-folder.js';
|
|
import { awaitAll } from '@/prelude/await-all.js';
|
|
import { DriveFolders, DriveFiles } from '../index.js';
|
|
|
|
export const DriveFolderRepository = db.getRepository(DriveFolder).extend({
|
|
async pack(
|
|
src: DriveFolder['id'] | DriveFolder,
|
|
options?: {
|
|
detail: boolean
|
|
},
|
|
): Promise<Packed<'DriveFolder'>> {
|
|
const opts = Object.assign({
|
|
detail: false,
|
|
}, options);
|
|
|
|
const folder = typeof src === 'object' ? src : await this.findOneByOrFail({ id: src });
|
|
|
|
return await awaitAll({
|
|
id: folder.id,
|
|
createdAt: folder.createdAt.toISOString(),
|
|
name: folder.name,
|
|
parentId: folder.parentId,
|
|
|
|
...(opts.detail ? {
|
|
foldersCount: DriveFolders.countBy({
|
|
parentId: folder.id,
|
|
}),
|
|
filesCount: DriveFiles.countBy({
|
|
folderId: folder.id,
|
|
}),
|
|
|
|
...(folder.parentId ? {
|
|
parent: this.pack(folder.parentId, {
|
|
detail: true,
|
|
}),
|
|
} : {}),
|
|
} : {}),
|
|
});
|
|
},
|
|
});
|