mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-03 00:07:05 +00:00
Backup configuration conversion in setup/migrate.py is more robust.
This commit is contained in:
parent
607ad27941
commit
c2636f68f8
105
setup/migrate.py
105
setup/migrate.py
@ -197,55 +197,74 @@ def migration_15(env):
|
|||||||
import yaml
|
import yaml
|
||||||
|
|
||||||
with open(backup_configuration_file, 'r') as f:
|
with open(backup_configuration_file, 'r') as f:
|
||||||
custom_config = yaml.load(f, Loader=yaml.SafeLoader)
|
old_configuration = yaml.load(f, Loader=yaml.SafeLoader)
|
||||||
if not isinstance(custom_config, dict): raise ValueError()
|
|
||||||
|
|
||||||
# Converting the previous configuration (which was not very clear)
|
# Converting the previous configuration (which was not very clear)
|
||||||
# into the new configuration format which also provides
|
# into the new configuration format which also provides
|
||||||
# a "type" attribute to distinguish the type of backup.
|
# a "type" attribute to distinguish the type of backup.
|
||||||
scheme = custom_config["target"].split(":")[0]
|
conversion_succeded = True
|
||||||
if scheme == "off":
|
if not isinstance(old_configuration, dict):
|
||||||
custom_config = {
|
conversion_succeded = False
|
||||||
"type": "off"
|
print("Exception when converting to the new configuration format: the previous configuration has an unexpected format.")
|
||||||
}
|
elif "type" in old_configuration:
|
||||||
elif scheme == "file":
|
print("The previous configuration appears to have already been converted.")
|
||||||
custom_config = {
|
return
|
||||||
"type": "local",
|
|
||||||
"min_age_in_days": custom_config["min_age_in_days"]
|
|
||||||
}
|
|
||||||
elif scheme == "rsync":
|
|
||||||
custom_config = {
|
|
||||||
"type": "rsync",
|
|
||||||
"target_url": custom_config["target"],
|
|
||||||
"min_age_in_days": custom_config["min_age_in_days"]
|
|
||||||
}
|
|
||||||
elif scheme == "s3":
|
|
||||||
import urllib.parse
|
|
||||||
url = urllib.parse.urlparse(custom_config["target"])
|
|
||||||
target_url = url.scheme + ":/" + url.path
|
|
||||||
s3_endpoint_url = "https://" + url.netloc
|
|
||||||
s3_access_key_id = custom_config["target_user"]
|
|
||||||
s3_secret_access_key = custom_config["target_pass"]
|
|
||||||
custom_config = {
|
|
||||||
"type": "s3",
|
|
||||||
"target_url": target_url,
|
|
||||||
"s3_endpoint_url": s3_endpoint_url,
|
|
||||||
"s3_access_key_id": custom_config["target_user"],
|
|
||||||
"s3_secret_access_key": custom_config["target_pass"],
|
|
||||||
"min_age_in_days": custom_config["min_age_in_days"]
|
|
||||||
}
|
|
||||||
elif scheme == "b2":
|
|
||||||
custom_config = {
|
|
||||||
"type": "b2",
|
|
||||||
"target_url": custom_config["target"],
|
|
||||||
"min_age_in_days": custom_config["min_age_in_days"]
|
|
||||||
}
|
|
||||||
else:
|
else:
|
||||||
raise ValueError("Unexpected scheme during the conversion of the previous config to the new format.")
|
try:
|
||||||
|
scheme = old_configuration["target"].split(":")[0]
|
||||||
|
if scheme == "off":
|
||||||
|
new_configuration = {
|
||||||
|
"type": "off"
|
||||||
|
}
|
||||||
|
elif scheme == "file":
|
||||||
|
new_configuration = {
|
||||||
|
"type": "local",
|
||||||
|
"min_age_in_days": old_configuration["min_age_in_days"]
|
||||||
|
}
|
||||||
|
elif scheme == "rsync":
|
||||||
|
new_configuration = {
|
||||||
|
"type": "rsync",
|
||||||
|
"target_url": old_configuration["target"],
|
||||||
|
"min_age_in_days": old_configuration["min_age_in_days"]
|
||||||
|
}
|
||||||
|
elif scheme == "s3":
|
||||||
|
import urllib.parse
|
||||||
|
url = urllib.parse.urlparse(old_configuration["target"])
|
||||||
|
target_url = url.scheme + ":/" + url.path
|
||||||
|
s3_endpoint_url = "https://" + url.netloc
|
||||||
|
new_configuration = {
|
||||||
|
"type": "s3",
|
||||||
|
"target_url": target_url,
|
||||||
|
"s3_endpoint_url": s3_endpoint_url,
|
||||||
|
"s3_access_key_id": old_configuration["target_user"],
|
||||||
|
"s3_secret_access_key": old_configuration["target_pass"],
|
||||||
|
"min_age_in_days": old_configuration["min_age_in_days"]
|
||||||
|
}
|
||||||
|
elif scheme == "b2":
|
||||||
|
new_configuration = {
|
||||||
|
"type": "b2",
|
||||||
|
"target_url": old_configuration["target"],
|
||||||
|
"min_age_in_days": old_configuration["min_age_in_days"]
|
||||||
|
}
|
||||||
|
else:
|
||||||
|
conversion_succeded = False
|
||||||
|
print("Exception when converting to the new configuration format: the previous configuration has an unexpected scheme.")
|
||||||
|
except KeyError:
|
||||||
|
conversion_succeded = False
|
||||||
|
print("Exception when converting to the new configuration format: the previous configuration is missing one or more keys.")
|
||||||
|
except:
|
||||||
|
conversion_succeded = False
|
||||||
|
print("Exception when converting to the new configuration format: generic exception.")
|
||||||
|
|
||||||
|
if conversion_succeded:
|
||||||
with open(backup_configuration_file, "w") as f:
|
with open(backup_configuration_file, "w") as f:
|
||||||
f.write(yaml.dump(custom_config))
|
f.write(yaml.dump(new_configuration))
|
||||||
|
else:
|
||||||
|
with open(backup_configuration_file, "r") as f:
|
||||||
|
lines = list(map(lambda line:"# " + line, f.readlines()))
|
||||||
|
with open(backup_configuration_file, "w") as f:
|
||||||
|
f.writelines(lines)
|
||||||
|
print("The previous configuration inside the", backup_configuration_file, "file has been commented out.")
|
||||||
|
|
||||||
###########################################################
|
###########################################################
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user