Make backup path always set

This commit is contained in:
Veronica Berglyd Olsen
2023-08-08 19:50:20 +02:00
parent 12897ff2e1
commit c40d910b69
6 changed files with 26 additions and 38 deletions
+1 -2
View File
@@ -121,8 +121,7 @@ def checkUuid(value: Any, default: str) -> str:
def checkPath(value: Any, default: Path) -> Path:
"""Check if a value is a valid path. Non-empty strings are accepted.
"""
"""Check if a value is a valid path."""
if isinstance(value, Path):
return value
elif isinstance(value, str):
+16 -17
View File
@@ -94,8 +94,8 @@ class Config:
# User Settings
# =============
self._theme = None
self._recent = RecentProjects(self)
self._themeObj = None
self._recentObj = RecentProjects(self)
# General GUI Settings
self.guiLocale = self._qLocale.name()
@@ -107,7 +107,6 @@ class Config:
self.hideVScroll = False # Hide vertical scroll bars on main widgets
self.hideHScroll = False # Hide horizontal scroll bars on main widgets
self.lastNotes = "0x0" # The latest release notes that have been shown
self._lastPath = self._homePath # The user's last used path
# Size Settings
self._mainWinSize = [1200, 650] # Last size of the main GUI window
@@ -121,7 +120,6 @@ class Config:
self.autoSaveProj = 60 # Interval for auto-saving project, in seconds
self.autoSaveDoc = 30 # Interval for auto-saving document, in seconds
self.emphLabels = True # Add emphasis to H1 and H2 item labels
self._backupPath = None # Backup path to use, can be none
self.backupOnClose = False # Flag for running automatic backups
self.askBeforeBackup = True # Flag for asking before running automatic backup
@@ -174,6 +172,10 @@ class Config:
self.fmtPadAfter = ""
self.fmtPadThin = False
# User Paths
self._lastPath = self._homePath # The user's last used path
self._backupPath = self._homePath # Backup path to use, can be none
# Spell Checking Settings
self.spellLanguage = "en"
@@ -238,13 +240,13 @@ class Config:
@property
def recentProjects(self):
return self._recent
return self._recentObj
@property
def theme(self) -> GuiTheme:
if self._theme is None:
if self._themeObj is None:
raise Exception("Cannot access GUI theme before it is initialised")
return self._theme
return self._themeObj
@property
def mainWinSize(self):
@@ -295,7 +297,7 @@ class Config:
def setThemeInstance(self, theme: GuiTheme) -> None:
"""Set the applications theme instance."""
self._theme = theme
self._themeObj = theme
return
def setMainWinSize(self, newWidth, newHeight):
@@ -351,9 +353,9 @@ class Config:
logger.debug("Last path updated: %s" % self._lastPath)
return
def setBackupPath(self, backupPath: Path | None):
def setBackupPath(self, backupPath: Path | str):
"""Set the current backup path."""
self._backupPath = checkPath(backupPath, None)
self._backupPath = checkPath(backupPath, self._homePath)
return
def setTextFont(self, family: str | None, pointSize: int = 12):
@@ -411,12 +413,12 @@ class Config:
return self._lastPath
return self._homePath
def backupPath(self) -> Path | None:
def backupPath(self) -> Path:
"""Return the backup path."""
if isinstance(self._backupPath, Path):
if self._backupPath.is_dir():
return self._backupPath
return None
return self._homePath
def errorText(self) -> str:
"""Compile and return error messages from the initialisation of
@@ -495,7 +497,7 @@ class Config:
else:
self.saveConfig()
self._recent.loadCache()
self._recentObj.loadCache()
self._checkOptionalPackages()
logger.debug("Config initialisation complete")
@@ -647,9 +649,6 @@ class Config:
# Check Values
# ============
# Check Certain Values for None
self.spellLanguage = self._checkNone(self.spellLanguage)
# If we're using straight quotes, disable auto-replace
if self.fmtSQuoteOpen == self.fmtSQuoteClose == "'" and self.doReplaceSQuote:
logger.info("Using straight single quotes, so disabling auto-replace")
@@ -697,7 +696,7 @@ class Config:
"autosaveproject": str(self.autoSaveProj),
"autosavedoc": str(self.autoSaveDoc),
"emphlabels": str(self.emphLabels),
"backuppath": str(self._backupPath or ""),
"backuppath": str(self._backupPath),
"backuponclose": str(self.backupOnClose),
"askbeforebackup": str(self.askBeforeBackup),
}
+6 -12
View File
@@ -416,14 +416,6 @@ class NWProject(QObject):
logger.info("Backing up project")
self.mainGui.setStatus(self.tr("Backing up project ..."))
backupPath = CONFIG.backupPath()
if not isinstance(backupPath, Path):
self.mainGui.makeAlert(self.tr(
"Cannot backup project because no valid backup path is set. "
"Please set a valid backup location in Preferences."
), level=nwAlert.ERROR)
return False
if not self._data.name:
self.mainGui.makeAlert(self.tr(
"Cannot backup project because no project name is set. "
@@ -432,6 +424,7 @@ class NWProject(QObject):
return False
cleanName = makeFileNameSafe(self._data.name)
backupPath = CONFIG.backupPath()
baseDir = backupPath / cleanName
try:
baseDir.mkdir(exist_ok=True)
@@ -444,11 +437,12 @@ class NWProject(QObject):
timeStamp = formatTimeStamp(time(), fileSafe=True)
archName = baseDir / f"{cleanName} {timeStamp}.zip"
if self._storage.zipIt(archName, compression=2):
size = archName.stat().st_size
size = formatInt(archName.stat().st_size)
if doNotify:
self.mainGui.makeAlert(self.tr(
"Backup archive file written to: {0} [{1}B]"
).format(str(archName), formatInt(size)))
self.mainGui.makeAlert(
self.tr("Created a backup of your project of size {0}B.").format(size),
info=self.tr("Path: {0}").format(str(backupPath))
)
else:
self.mainGui.makeAlert(self.tr(
"Could not write backup archive."
+2 -2
View File
@@ -1,5 +1,5 @@
[Meta]
timestamp = 2023-08-02 14:53:36
timestamp = 2023-08-08 19:01:25
[Main]
theme = default
@@ -10,7 +10,7 @@ localisation = en_GB
hidevscroll = False
hidehscroll = False
lastnotes = 0x0
lastpath = /home/vkbo
lastpath =
[Sizes]
mainwindow = 1200, 650
+1 -1
View File
@@ -111,7 +111,7 @@ def testBaseConfig_InitLoadSave(monkeypatch, fncPath, tstPaths):
# Check that we have a default file
copyfile(confFile, testFile)
ignore = ("timestamp", "lastnotes", "localisation", "lastpath")
ignore = ("timestamp", "lastnotes", "localisation", "lastpath", "backuppath")
assert cmpFiles(testFile, compFile, ignoreStart=ignore)
tstConf.errorText() # This clears the error cache
-4
View File
@@ -590,10 +590,6 @@ def testCoreProject_Backup(monkeypatch, mockGUI, fncPath, tstPaths):
# Invalid Settings
# ================
# Invalid path
CONFIG._backupPath = None
assert theProject.backupProject(doNotify=False) is False
# Missing project name
CONFIG._backupPath = tstPaths.tmpDir
theProject.data.setName("")