Update backups config page to use backupPathEnvSet returned from endpoint, remove from ServerConfig

This commit is contained in:
advplyr 2024-07-05 16:10:07 -05:00
parent a1688488e5
commit 7c0b4e35d7
4 changed files with 9 additions and 11 deletions

View File

@ -171,7 +171,7 @@ export default {
this.$axios
.$get('/api/backups')
.then((data) => {
this.$emit('loaded', data.backupLocation)
this.$emit('loaded', data)
this.setBackups(data.backups || [])
})
.catch((error) => {

View File

@ -92,6 +92,7 @@ export default {
newServerSettings: {},
showCronBuilder: false,
showEditBackupPath: false,
backupPathEnvSet: false,
backupLocation: '',
newBackupLocation: '',
savingBackupPath: false
@ -116,8 +117,8 @@ export default {
return this.serverSettings.timeFormat
},
canEditBackup() {
// Prevent editing of backup path if an environement variable is set
return !this.serverSettings.backupPathEnvSet
// Prevent editing of backup path if an environment variable is set
return !this.backupPathEnvSet
},
scheduleDescription() {
if (!this.cronExpression) return ''
@ -131,9 +132,10 @@ export default {
}
},
methods: {
backupsLoaded(backupLocation) {
this.backupLocation = backupLocation
this.newBackupLocation = backupLocation
backupsLoaded(data) {
this.backupLocation = data.backupLocation
this.newBackupLocation = data.backupLocation
this.backupPathEnvSet = data.backupPathEnvSet
},
cancelEditBackupPath() {
this.newBackupLocation = this.backupLocation

View File

@ -30,7 +30,7 @@ class BackupManager {
}
get backupPathEnvSet() {
return global.ServerSettings.backupPathEnvSet
return !!process.env.BACKUP_PATH
}
get backupSchedule() {

View File

@ -26,7 +26,6 @@ class ServerSettings {
this.rateLimitLoginWindow = 10 * 60 * 1000 // 10 Minutes
// Backups
this.backupPathEnvSet = false
this.backupPath = Path.join(global.MetadataPath, 'backups')
this.backupSchedule = false // If false then auto-backups are disabled
this.backupsToKeep = 2
@ -189,8 +188,6 @@ class ServerSettings {
Logger.info(`[ServerSettings] Using backup path from environment variable ${process.env.BACKUP_PATH}`)
this.backupPath = process.env.BACKUP_PATH
}
this.backupPathEnvSet = !!process.env.BACKUP_PATH || false
}
toJSON() {
@ -209,7 +206,6 @@ class ServerSettings {
rateLimitLoginRequests: this.rateLimitLoginRequests,
rateLimitLoginWindow: this.rateLimitLoginWindow,
backupPath: this.backupPath,
backupPathEnvSet: this.backupPathEnvSet,
backupSchedule: this.backupSchedule,
backupsToKeep: this.backupsToKeep,
maxBackupSize: this.maxBackupSize,