mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-01 01:27:17 +00:00
49 lines
1.6 KiB
Python
49 lines
1.6 KiB
Python
from selfprivacy_api.jobs import JobStatus, Jobs
|
|
|
|
from selfprivacy_api.migrations.migration import Migration
|
|
from selfprivacy_api.utils import WriteUserData
|
|
|
|
|
|
class CheckForFailedBindsMigration(Migration):
|
|
"""Mount volume."""
|
|
|
|
def get_migration_name(self):
|
|
return "check_for_failed_binds_migration"
|
|
|
|
def get_migration_description(self):
|
|
return "If binds migration failed, try again."
|
|
|
|
def is_migration_needed(self):
|
|
try:
|
|
jobs = Jobs.get_jobs()
|
|
# If there is a job with type_id "migrations.migrate_to_binds" and status is not "FINISHED",
|
|
# then migration is needed and job is deleted
|
|
for job in jobs:
|
|
if (
|
|
job.type_id == "migrations.migrate_to_binds"
|
|
and job.status != JobStatus.FINISHED
|
|
):
|
|
return True
|
|
return False
|
|
except Exception as e:
|
|
print(e)
|
|
return False
|
|
|
|
def migrate(self):
|
|
# Get info about existing volumes
|
|
# Write info about volumes to userdata.json
|
|
try:
|
|
jobs = Jobs.get_jobs()
|
|
for job in jobs:
|
|
if (
|
|
job.type_id == "migrations.migrate_to_binds"
|
|
and job.status != JobStatus.FINISHED
|
|
):
|
|
Jobs.remove(job)
|
|
with WriteUserData() as userdata:
|
|
userdata["useBinds"] = False
|
|
print("Done")
|
|
except Exception as e:
|
|
print(e)
|
|
print("Error mounting volume")
|