new: [backend:backup] More clever back up system
This commit is contained in:
parent
a0fbd7aa9b
commit
7a6f64fce0
1 changed files with 11 additions and 8 deletions
19
exercise.py
19
exercise.py
|
@ -15,6 +15,7 @@ from appConfig import logger
|
||||||
|
|
||||||
|
|
||||||
ACTIVE_EXERCISES_DIR = "active_exercises"
|
ACTIVE_EXERCISES_DIR = "active_exercises"
|
||||||
|
LAST_BACKUP = {}
|
||||||
|
|
||||||
def debounce_check_active_tasks(debounce_seconds: int = 1):
|
def debounce_check_active_tasks(debounce_seconds: int = 1):
|
||||||
func_last_execution_time = {}
|
func_last_execution_time = {}
|
||||||
|
@ -60,14 +61,16 @@ def read_exercise_dir():
|
||||||
|
|
||||||
|
|
||||||
def backup_exercises_progress():
|
def backup_exercises_progress():
|
||||||
with open('backup.json', 'w') as f:
|
toBackup = {
|
||||||
toBackup = {
|
'EXERCISES_STATUS': db.EXERCISES_STATUS,
|
||||||
'EXERCISES_STATUS': db.EXERCISES_STATUS,
|
'SELECTED_EXERCISES': db.SELECTED_EXERCISES,
|
||||||
'SELECTED_EXERCISES': db.SELECTED_EXERCISES,
|
'USER_ID_TO_EMAIL_MAPPING': db.USER_ID_TO_EMAIL_MAPPING,
|
||||||
'USER_ID_TO_EMAIL_MAPPING': db.USER_ID_TO_EMAIL_MAPPING,
|
'USER_ID_TO_AUTHKEY_MAPPING': db.USER_ID_TO_AUTHKEY_MAPPING,
|
||||||
'USER_ID_TO_AUTHKEY_MAPPING': db.USER_ID_TO_AUTHKEY_MAPPING,
|
}
|
||||||
}
|
if toBackup != LAST_BACKUP:
|
||||||
json.dump(toBackup, f)
|
with open('backup.json', 'w') as f:
|
||||||
|
json.dump(toBackup, f)
|
||||||
|
LAST_BACKUP = toBackup
|
||||||
|
|
||||||
|
|
||||||
def restore_exercices_progress():
|
def restore_exercices_progress():
|
||||||
|
|
Loading…
Reference in a new issue