mirror of
https://github.com/immich-app/immich.git
synced 2025-01-04 02:46:47 +01:00
feat(server): support rclone as storage backend (#2832)
This commit is contained in:
parent
9c0f444e4d
commit
296c77ac73
1 changed files with 5 additions and 1 deletions
|
@ -19,7 +19,11 @@ export class FilesystemProvider implements IStorageRepository {
|
||||||
}
|
}
|
||||||
|
|
||||||
async moveFile(source: string, destination: string): Promise<void> {
|
async moveFile(source: string, destination: string): Promise<void> {
|
||||||
await moveFile(source, destination, { mkdirp: true, clobber: false });
|
if (await this.checkFileExists(destination)) {
|
||||||
|
throw new Error(`Destination file already exists: ${destination}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
await moveFile(source, destination, { mkdirp: true, clobber: true });
|
||||||
}
|
}
|
||||||
|
|
||||||
async checkFileExists(filepath: string, mode = constants.F_OK): Promise<boolean> {
|
async checkFileExists(filepath: string, mode = constants.F_OK): Promise<boolean> {
|
||||||
|
|
Loading…
Reference in a new issue