Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
10381025
Commit
10381025
authored
May 05, 2015
by
Ad Schellevis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix googledrive backup feature, issue with number of backups count and check with previous version
parent
ad306c96
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
12 deletions
+17
-12
config.lib.inc
src/etc/inc/config.lib.inc
+17
-12
No files found.
src/etc/inc/config.lib.inc
View file @
10381025
...
...
@@ -353,7 +353,7 @@ function backup_to_google_drive() {
tagfile_reformat
(
$confdata_enc
,
$confdata_enc
,
"config.xml"
);
// read filelist (config-*.xml)
and cleanup old files
// read filelist (config-*.xml)
$files
=
$client
->
listFiles
(
$config
->
system
->
remotebackup
->
GDriveFolderID
->
__toString
());
$configfiles
=
array
();
foreach
(
$files
as
$file
)
{
...
...
@@ -363,22 +363,14 @@ function backup_to_google_drive() {
}
krsort
(
$configfiles
);
if
(
isset
(
$config
->
system
->
remotebackup
->
GDriveBackupCount
)
&&
is_numeric
(
$config
->
system
->
remotebackup
->
GDriveBackupCount
->
__toString
()))
{
$fcount
=
0
;
foreach
(
$configfiles
as
$filename
=>
$file
)
{
if
(
$fcount
>
$config
->
system
->
remotebackup
->
GDriveBackupCount
->
__toString
())
{
log_error
(
"remove "
.
$filename
.
" from Google Drive"
);
$client
->
delete
(
$file
);
}
$fcount
++
;
}
}
// backup new file if changed (or if first in backup)
$target_filename
=
"config-"
.
time
()
.
".xml"
;
if
(
count
(
$configfiles
)
>
1
)
{
// compare last backup with current, only save new
$bck_data_enc
=
$client
->
download
(
$configfiles
[
array_keys
(
$configfiles
)[
0
]]);
$bck_data_enc_in
=
$client
->
download
(
$configfiles
[
array_keys
(
$configfiles
)[
0
]]);
$bck_data_enc
=
""
;
tagfile_deformat
(
$bck_data_enc_in
,
$bck_data_enc
,
"config.xml"
)
;
$bck_data
=
decrypt_data
(
$bck_data_enc
,
$config
->
system
->
remotebackup
->
GDrivePassword
->
__toString
());
if
(
$bck_data
==
$confdata
)
{
$target_filename
=
null
;
...
...
@@ -387,6 +379,19 @@ function backup_to_google_drive() {
if
(
!
is_null
(
$target_filename
))
{
log_error
(
"backup configuration as "
.
$target_filename
);
$configfiles
[
$target_filename
]
=
$client
->
upload
(
$config
->
system
->
remotebackup
->
GDriveFolderID
->
__toString
(),
$target_filename
,
$confdata_enc
);
krsort
(
$configfiles
);
}
// cleanup old files
if
(
isset
(
$config
->
system
->
remotebackup
->
GDriveBackupCount
)
&&
is_numeric
(
$config
->
system
->
remotebackup
->
GDriveBackupCount
->
__toString
()))
{
$fcount
=
0
;
foreach
(
$configfiles
as
$filename
=>
$file
)
{
if
(
$fcount
>=
$config
->
system
->
remotebackup
->
GDriveBackupCount
->
__toString
())
{
log_error
(
"remove "
.
$filename
.
" from Google Drive"
);
$client
->
delete
(
$file
);
}
$fcount
++
;
}
}
// return filelist
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment