Browse Source

feat(server): support rclone as storage backend (#2832)

cycneuramus 2 years ago
parent
commit
296c77ac73
1 changed files with 5 additions and 1 deletions
  1. 5 1
      server/src/infra/repositories/filesystem.provider.ts

+ 5 - 1
server/src/infra/repositories/filesystem.provider.ts

@@ -19,7 +19,11 @@ export class FilesystemProvider implements IStorageRepository {
   }
 
   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> {