mirror of
https://github.com/immich-app/immich.git
synced 2025-01-10 05:46:46 +01:00
40 lines
1.4 KiB
TypeScript
40 lines
1.4 KiB
TypeScript
import { Stats } from 'fs';
|
|
import { FileReadOptions } from 'fs/promises';
|
|
import { Readable } from 'stream';
|
|
import { CrawlOptionsDto } from '../library';
|
|
|
|
export interface ImmichReadStream {
|
|
stream: Readable;
|
|
type?: string;
|
|
length?: number;
|
|
}
|
|
|
|
export interface ImmichZipStream extends ImmichReadStream {
|
|
addFile: (inputPath: string, filename: string) => void;
|
|
finalize: () => Promise<void>;
|
|
}
|
|
|
|
export interface DiskUsage {
|
|
available: number;
|
|
free: number;
|
|
total: number;
|
|
}
|
|
|
|
export const IStorageRepository = 'IStorageRepository';
|
|
|
|
export interface IStorageRepository {
|
|
createZipStream(): ImmichZipStream;
|
|
createReadStream(filepath: string, mimeType?: string | null): Promise<ImmichReadStream>;
|
|
readFile(filepath: string, options?: FileReadOptions<Buffer>): Promise<Buffer>;
|
|
writeFile(filepath: string, buffer: Buffer): Promise<void>;
|
|
unlink(filepath: string): Promise<void>;
|
|
unlinkDir(folder: string, options?: { recursive?: boolean; force?: boolean }): Promise<void>;
|
|
removeEmptyDirs(folder: string, self?: boolean): Promise<void>;
|
|
moveFile(source: string, target: string): Promise<void>;
|
|
checkFileExists(filepath: string, mode?: number): Promise<boolean>;
|
|
mkdirSync(filepath: string): void;
|
|
checkDiskUsage(folder: string): Promise<DiskUsage>;
|
|
readdir(folder: string): Promise<string[]>;
|
|
stat(filepath: string): Promise<Stats>;
|
|
crawl(crawlOptions: CrawlOptionsDto): Promise<string[]>;
|
|
}
|