mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-05 02:53:11 +00:00
122 lines
3.7 KiB
Python
122 lines
3.7 KiB
Python
import subprocess
|
|
import json
|
|
|
|
from selfprivacy_api.backup.backuper import AbstractBackuper
|
|
|
|
|
|
class ResticBackuper(AbstractBackuper):
|
|
def __init__(self, login_flag: str, key_flag: str, type: str):
|
|
self.login_flag = login_flag
|
|
self.key_flag = key_flag
|
|
self.type = type
|
|
self.account = ""
|
|
self.key = ""
|
|
|
|
def set_creds(self, account: str, key: str):
|
|
self.account = account
|
|
self.key = key
|
|
|
|
def restic_repo(self, repository_name: str) -> str:
|
|
# https://restic.readthedocs.io/en/latest/030_preparing_a_new_repo.html#other-services-via-rclone
|
|
# https://forum.rclone.org/t/can-rclone-be-run-solely-with-command-line-options-no-config-no-env-vars/6314/5
|
|
return f"rclone::{self.type}:{repository_name}/sfbackup"
|
|
|
|
def rclone_args(self):
|
|
return "rclone.args=serve restic --stdio" + self.backend_rclone_args()
|
|
|
|
def backend_rclone_args(self) -> str:
|
|
acc_arg = ""
|
|
key_arg = ""
|
|
if self.account != "":
|
|
acc_arg = f"{self.login_flag} {self.account}"
|
|
if self.key != "":
|
|
key_arg = f"{self.key_flag} {self.key}"
|
|
|
|
return f"{acc_arg} {key_arg}"
|
|
|
|
def restic_command(self, repo_name: str, *args):
|
|
command = [
|
|
"restic",
|
|
"-o",
|
|
self.rclone_args(),
|
|
"-r",
|
|
self.restic_repo(repo_name),
|
|
]
|
|
if args != []:
|
|
command.extend(args)
|
|
return command
|
|
|
|
def start_backup(self, folder: str, repo_name: str):
|
|
"""
|
|
Start backup with restic
|
|
"""
|
|
backup_command = self.restic_command(
|
|
repo_name,
|
|
"backup",
|
|
folder,
|
|
)
|
|
subprocess.Popen(
|
|
backup_command,
|
|
shell=False,
|
|
stderr=subprocess.STDOUT,
|
|
)
|
|
|
|
# TODO: we might want to provide logging facilities
|
|
# that are reroutable for testing
|
|
# with open("/var/backup.log", "w", encoding="utf-8") as log_file:
|
|
# subprocess.Popen(
|
|
# backup_command,
|
|
# shell=False,
|
|
# stdout=log_file,
|
|
# stderr=subprocess.STDOUT,
|
|
# )
|
|
|
|
def restore_from_backup(self, repo_name, snapshot_id, folder):
|
|
"""
|
|
Restore from backup with restic
|
|
"""
|
|
restore_command = self.restic_command(
|
|
repo_name, "restore", snapshot_id, "--target", folder
|
|
)
|
|
|
|
subprocess.run(restore_command, shell=False)
|
|
|
|
def _load_snapshots(self, repo_name) -> object:
|
|
"""
|
|
Load list of snapshots from repository
|
|
"""
|
|
listing_command = self.restic_command(
|
|
repo_name,
|
|
"snapshots",
|
|
"--json",
|
|
)
|
|
|
|
with subprocess.Popen(
|
|
listing_command,
|
|
shell=False,
|
|
stdout=subprocess.PIPE,
|
|
stderr=subprocess.STDOUT,
|
|
) as backup_listing_process_descriptor:
|
|
output = backup_listing_process_descriptor.communicate()[0].decode("utf-8")
|
|
|
|
try:
|
|
return self.parse_snapshot_output(output)
|
|
except ValueError:
|
|
if "Is there a repository at the following location?" in output:
|
|
return []
|
|
self.error_message = output
|
|
return []
|
|
|
|
def get_snapshots(self):
|
|
# No transformation for now
|
|
snapshots = []
|
|
for snapshot in self._load_snapshots():
|
|
snapshots.append(snapshot)
|
|
return snapshots
|
|
|
|
def parse_snapshot_output(self, output: str) -> object:
|
|
starting_index = output.find("[")
|
|
json.loads(output[starting_index:])
|
|
self.snapshot_list = json.loads(output[starting_index:])
|
|
print(output)
|