[pve-devel] [PATCH manager 6/6] api: backup/vzdump: add get_storage_param helper
Fiona Ebner
f.ebner at proxmox.com
Wed Nov 16 15:04:35 CET 2022
to capture the logic in a single place.
Suggested-by: Fabian Grünbichler <f.gruenbichler at proxmox.com>
Signed-off-by: Fiona Ebner <f.ebner at proxmox.com>
---
PVE/API2/Backup.pm | 10 +++++-----
PVE/API2/VZDump.pm | 15 ++++++++-------
PVE/VZDump.pm | 11 +++++++++--
3 files changed, 22 insertions(+), 14 deletions(-)
diff --git a/PVE/API2/Backup.pm b/PVE/API2/Backup.pm
index 74bf95ca..25e615d1 100644
--- a/PVE/API2/Backup.pm
+++ b/PVE/API2/Backup.pm
@@ -60,10 +60,9 @@ my sub assert_param_permission_create {
assert_param_permission_common($rpcenv, $user, $param);
- if (!$param->{dumpdir}) {
- my $storeid = $param->{storage} || 'local';
+ if (my $storeid = PVE::VZDump::get_storage_param($param)) {
$rpcenv->check($user, "/storage/$storeid", [ 'Datastore.Allocate' ]);
- } # no else branch, because dumpdir is root-only
+ }
}
my sub assert_param_permission_update {
@@ -84,8 +83,9 @@ my sub assert_param_permission_update {
if ($current->{dumpdir}) {
die "only root\@pam may edit jobs with a 'dumpdir' option.";
} else {
- my $storeid = $current->{storage} || 'local';
- $rpcenv->check($user, "/storage/$storeid", [ 'Datastore.Allocate' ]);
+ if (my $storeid = PVE::VZDump::get_storage_param($current)) {
+ $rpcenv->check($user, "/storage/$storeid", [ 'Datastore.Allocate' ]);
+ }
}
}
diff --git a/PVE/API2/VZDump.pm b/PVE/API2/VZDump.pm
index 8e873c05..e3dcd0bd 100644
--- a/PVE/API2/VZDump.pm
+++ b/PVE/API2/VZDump.pm
@@ -27,10 +27,11 @@ my sub assert_param_permission_vzdump {
PVE::API2::Backup::assert_param_permission_common($rpcenv, $user, $param);
- if (!$param->{dumpdir} && (defined($param->{maxfiles}) || defined($param->{'prune-backups'}))) {
- my $storeid = $param->{storage} || 'local';
- $rpcenv->check($user, "/storage/$storeid", [ 'Datastore.Allocate' ]);
- } # no else branch, because dumpdir is root-only
+ if (defined($param->{maxfiles}) || defined($param->{'prune-backups'})) {
+ if (my $storeid = PVE::VZDump::get_storage_param($param)) {
+ $rpcenv->check($user, "/storage/$storeid", [ 'Datastore.Allocate' ]);
+ }
+ }
}
__PACKAGE__->register_method ({
@@ -108,9 +109,9 @@ __PACKAGE__->register_method ({
die "you can only backup a single VM with option --stdout\n"
if $param->{stdout} && scalar(@{$local_vmids}) != 1;
- # If the root-only dumpdir is used rather than a storage, the check will succeed anyways.
- my $storeid = $param->{storage} || 'local';
- $rpcenv->check($user, "/storage/$storeid", [ 'Datastore.AllocateSpace' ]);
+ if (my $storeid = PVE::VZDump::get_storage_param($param)) {
+ $rpcenv->check($user, "/storage/$storeid", [ 'Datastore.AllocateSpace' ]);
+ }
my $worker = sub {
my $upid = shift;
diff --git a/PVE/VZDump.pm b/PVE/VZDump.pm
index a04837e7..bd17c986 100644
--- a/PVE/VZDump.pm
+++ b/PVE/VZDump.pm
@@ -55,6 +55,13 @@ foreach my $plug (@pve_vzdump_classes) {
}
}
+sub get_storage_param {
+ my ($param) = @_;
+
+ return if $param->{dumpdir};
+ return $param->{storage} || 'local';
+}
+
# helper functions
sub debugmsg {
@@ -557,8 +564,8 @@ sub new {
die "cannot use options 'storage' and 'dumpdir' at the same time\n";
}
- if (!$opts->{dumpdir} && !$opts->{storage}) {
- $opts->{storage} = 'local';
+ if (my $storage = get_storage_param($opts)) {
+ $opts->{storage} = $storage;
}
# Enforced by the API too, but these options might come in via defaults. Drop them if necessary.
--
2.30.2
More information about the pve-devel
mailing list