From: Fiona Ebner Date: Wed, 16 Nov 2022 14:04:35 +0000 (+0100) Subject: api: backup/vzdump: add get_storage_param helper X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;ds=sidebyside;h=43f83ad9cee5eeab40abd8a451dd42dfd0c5edd0;p=pve-manager.git api: backup/vzdump: add get_storage_param helper to capture the logic in a single place. Suggested-by: Fabian Grünbichler Signed-off-by: Fiona Ebner --- 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 64a5fd4f..c58e5f78 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 { @@ -567,8 +574,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.