mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-05 02:53:11 +00:00
45 lines
1.5 KiB
Python
45 lines
1.5 KiB
Python
"""Migrations module.
|
|
Migrations module is introduced in v1.1.1 and provides one-shot
|
|
migrations which cannot be performed from the NixOS configuration file changes.
|
|
These migrations are checked and ran before every start of the API.
|
|
|
|
You can disable certain migrations if needed by creating an array
|
|
at api.skippedMigrations in userdata.json and populating it
|
|
with IDs of the migrations to skip.
|
|
Adding DISABLE_ALL to that array disables the migrations module entirely.
|
|
"""
|
|
|
|
from selfprivacy_api.utils import ReadUserData, UserDataFiles
|
|
from selfprivacy_api.migrations.write_token_to_redis import WriteTokenToRedis
|
|
|
|
migrations = [
|
|
WriteTokenToRedis(),
|
|
]
|
|
|
|
|
|
def run_migrations():
|
|
"""
|
|
Go over all migrations. If they are not skipped in userdata file, run them
|
|
if the migration needed.
|
|
"""
|
|
with ReadUserData(UserDataFiles.SECRETS) as data:
|
|
if "api" not in data:
|
|
skipped_migrations = []
|
|
elif "skippedMigrations" not in data["api"]:
|
|
skipped_migrations = []
|
|
else:
|
|
skipped_migrations = data["api"].get("skippedMigrations", [])
|
|
|
|
if "DISABLE_ALL" in skipped_migrations:
|
|
return
|
|
|
|
for migration in migrations:
|
|
if migration.get_migration_name() not in skipped_migrations:
|
|
try:
|
|
if migration.is_migration_needed():
|
|
migration.migrate()
|
|
except Exception as err:
|
|
print(f"Error while migrating {migration.get_migration_name()}")
|
|
print(err)
|
|
print("Skipping this migration")
|