]> git.proxmox.com Git - pve-common.git/commitdiff
Reuse id parse code.
authorWolfgang Link <w.link@proxmox.com>
Tue, 31 Mar 2020 10:08:34 +0000 (12:08 +0200)
committerFabian Grünbichler <f.gruenbichler@proxmox.com>
Wed, 1 Apr 2020 09:30:27 +0000 (11:30 +0200)
The storage_id is the same as the plugin_id.

Signed-off-by: Wolfgang Link <w.link@proxmox.com>
src/PVE/JSONSchema.pm

index fa405ac831a29bf4a03e0d958a46507cc9d7ef95..50a08243295ab63b617671344ac2d3f764d7710d 100644 (file)
@@ -180,14 +180,19 @@ PVE::JSONSchema::register_format('pve-storage-id', \&parse_storage_id);
 sub parse_storage_id {
     my ($storeid, $noerr) = @_;
 
-    if ($storeid !~ m/^[a-z][a-z0-9\-\_\.]*[a-z0-9]$/i) {
+    return parse_id($storeid, 'storage', $noerr);
+}
+
+sub parse_id {
+    my ($id, $type, $noerr) = @_;
+
+     if ($id !~ m/^[a-z][a-z0-9\-\_\.]*[a-z0-9]$/i) {
        return undef if $noerr;
-       die "storage ID '$storeid' contains illegal characters\n";
+       die "$type ID '$id' contains illegal characters\n";
     }
-    return $storeid;
+    return $id;
 }
 
-
 register_format('pve-vmid', \&pve_verify_vmid);
 sub pve_verify_vmid {
     my ($vmid, $noerr) = @_;