summaryrefslogtreecommitdiff
path: root/src/backend/recoverDatabase.py
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-09-17 19:12:53 +0100
committerV3n3RiX <venerix@koprulu.sector>2022-09-17 19:12:53 +0100
commite1562a71d6483021d332bccbfc5a3086688bc58c (patch)
tree6be3d468e0aadd6c4de6c4dbd7a58ebe9fd59cbb /src/backend/recoverDatabase.py
parent0cf2c9f8ec52b1ae276c1573210d252ab0c4577b (diff)
rearrange the backend
Diffstat (limited to 'src/backend/recoverDatabase.py')
-rw-r--r--src/backend/recoverDatabase.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/backend/recoverDatabase.py b/src/backend/recoverDatabase.py
new file mode 100644
index 0000000..c067815
--- /dev/null
+++ b/src/backend/recoverDatabase.py
@@ -0,0 +1,20 @@
+#!/usr/bin/python3
+
+import animation
+import os
+import sisyphus.syncDatabase
+import sisyphus.getFilesystem
+
+@animation.wait('recovering databases')
+def start():
+ if os.path.exists(sisyphus.getFilesystem.remotePackagesCsv):
+ os.remove(sisyphus.getFilesystem.remotePackagesCsv)
+ if os.path.exists(sisyphus.getFilesystem.remoteDescriptionsCsv):
+ os.remove(sisyphus.getFilesystem.remoteDescriptionsCsv)
+ if os.path.exists(sisyphus.getFilesystem.localPackagesCsv):
+ os.remove(sisyphus.getFilesystem.localPackagesCsv)
+ if os.path.exists(sisyphus.getFilesystem.localDatabase):
+ os.remove(sisyphus.getFilesystem.localDatabase)
+
+ sisyphus.syncDatabase.syncRemote()
+ sisyphus.syncDatabase.syncLocal()