2023-02-08 14:57:34 +00:00
|
|
|
from abc import ABC, abstractmethod
|
2023-02-13 11:16:35 +00:00
|
|
|
from typing import List
|
|
|
|
|
|
|
|
from selfprivacy_api.models.backup.snapshot import Snapshot
|
2023-02-08 14:57:34 +00:00
|
|
|
|
|
|
|
|
2023-06-23 12:04:33 +00:00
|
|
|
class AbstractBackupper(ABC):
|
2023-02-08 14:57:34 +00:00
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
|
2023-03-14 00:39:15 +00:00
|
|
|
@abstractmethod
|
2023-06-19 11:09:10 +00:00
|
|
|
def is_initted(self) -> bool:
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def set_creds(self, account: str, key: str, repo: str):
|
2023-03-14 00:39:15 +00:00
|
|
|
raise NotImplementedError
|
|
|
|
|
2023-02-08 14:57:34 +00:00
|
|
|
@abstractmethod
|
2023-04-14 11:20:03 +00:00
|
|
|
def start_backup(self, folders: List[str], repo_name: str):
|
2023-02-08 14:57:34 +00:00
|
|
|
raise NotImplementedError
|
2023-02-13 11:16:35 +00:00
|
|
|
|
|
|
|
@abstractmethod
|
2023-06-19 14:12:40 +00:00
|
|
|
def get_snapshots(self) -> List[Snapshot]:
|
2023-02-13 11:16:35 +00:00
|
|
|
"""Get all snapshots from the repo"""
|
|
|
|
raise NotImplementedError
|
2023-02-17 16:11:17 +00:00
|
|
|
|
|
|
|
@abstractmethod
|
2023-06-23 09:40:10 +00:00
|
|
|
def init(self):
|
2023-02-17 16:11:17 +00:00
|
|
|
raise NotImplementedError
|
2023-02-22 14:45:11 +00:00
|
|
|
|
|
|
|
@abstractmethod
|
2023-06-23 09:40:10 +00:00
|
|
|
def restore_from_backup(self, snapshot_id: str, folders: List[str]):
|
2023-02-22 14:45:11 +00:00
|
|
|
"""Restore a target folder using a snapshot"""
|
|
|
|
raise NotImplementedError
|
2023-02-22 18:48:08 +00:00
|
|
|
|
|
|
|
@abstractmethod
|
2023-06-23 09:40:10 +00:00
|
|
|
def restored_size(self, snapshot_id: str) -> int:
|
2023-02-22 18:48:08 +00:00
|
|
|
raise NotImplementedError
|