2023-03-21 22:49:19 -04:00
|
|
|
import { DiskUsage, ImmichReadStream, IStorageRepository } from '@app/domain';
|
2023-02-25 09:12:03 -05:00
|
|
|
import { constants, createReadStream, existsSync, mkdirSync } from 'fs';
|
2023-02-03 10:16:25 -05:00
|
|
|
import fs from 'fs/promises';
|
2023-02-25 09:12:03 -05:00
|
|
|
import mv from 'mv';
|
|
|
|
|
import { promisify } from 'node:util';
|
2023-03-21 22:49:19 -04:00
|
|
|
import diskUsage from 'diskusage';
|
2023-02-25 09:12:03 -05:00
|
|
|
import path from 'path';
|
2023-02-03 10:16:25 -05:00
|
|
|
|
2023-02-25 09:12:03 -05:00
|
|
|
const moveFile = promisify<string, string, mv.Options>(mv);
|
2023-02-03 10:16:25 -05:00
|
|
|
|
|
|
|
|
export class FilesystemProvider implements IStorageRepository {
|
|
|
|
|
async createReadStream(filepath: string, mimeType: string): Promise<ImmichReadStream> {
|
2023-02-25 09:12:03 -05:00
|
|
|
const { size } = await fs.stat(filepath);
|
2023-02-03 10:16:25 -05:00
|
|
|
await fs.access(filepath, constants.R_OK | constants.W_OK);
|
|
|
|
|
return {
|
|
|
|
|
stream: createReadStream(filepath),
|
|
|
|
|
length: size,
|
|
|
|
|
type: mimeType,
|
|
|
|
|
};
|
|
|
|
|
}
|
2023-02-25 09:12:03 -05:00
|
|
|
|
|
|
|
|
async moveFile(source: string, destination: string): Promise<void> {
|
|
|
|
|
await moveFile(source, destination, { mkdirp: true, clobber: false });
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async checkFileExists(filepath: string): Promise<boolean> {
|
|
|
|
|
try {
|
|
|
|
|
await fs.access(filepath, constants.F_OK);
|
|
|
|
|
return true;
|
|
|
|
|
} catch (_) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async unlink(file: string) {
|
|
|
|
|
await fs.unlink(file);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async unlinkDir(folder: string, options: { recursive?: boolean; force?: boolean }) {
|
|
|
|
|
await fs.rm(folder, options);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async removeEmptyDirs(directory: string) {
|
|
|
|
|
this._removeEmptyDirs(directory, false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private async _removeEmptyDirs(directory: string, self: boolean) {
|
|
|
|
|
// lstat does not follow symlinks (in contrast to stat)
|
|
|
|
|
const stats = await fs.lstat(directory);
|
|
|
|
|
if (!stats.isDirectory()) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const files = await fs.readdir(directory);
|
|
|
|
|
await Promise.all(files.map((file) => this._removeEmptyDirs(path.join(directory, file), true)));
|
|
|
|
|
|
|
|
|
|
if (self) {
|
|
|
|
|
const updated = await fs.readdir(directory);
|
|
|
|
|
if (updated.length === 0) {
|
|
|
|
|
await fs.rmdir(directory);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mkdirSync(filepath: string): void {
|
|
|
|
|
if (!existsSync(filepath)) {
|
|
|
|
|
mkdirSync(filepath, { recursive: true });
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-03-21 22:49:19 -04:00
|
|
|
|
|
|
|
|
checkDiskUsage(folder: string): Promise<DiskUsage> {
|
|
|
|
|
return diskUsage.check(folder);
|
|
|
|
|
}
|
2023-02-03 10:16:25 -05:00
|
|
|
}
|