]> git.proxmox.com Git - pve-storage.git/blobdiff - PVE/API2/Storage/Scan.pm
api: scan: move over index and usb scan from manager
[pve-storage.git] / PVE / API2 / Storage / Scan.pm
index 44d6628ef53d5fb61187121a2cb8aaa6f705c8d2..bd6c264923ef10414697721b4092ab04704ff0fb 100644 (file)
@@ -14,6 +14,46 @@ use PVE::SysFSTools;
 
 use base qw(PVE::RESTHandler);
 
+__PACKAGE__->register_method({
+    name => 'index',
+    path => '',
+    method => 'GET',
+    description => "Index of available scan methods",
+    permissions => {
+       user => 'all',
+    },
+    parameters => {
+       additionalProperties => 0,
+       properties => {
+           node => get_standard_option('pve-node'),
+       },
+    },
+    returns => {
+       type => 'array',
+       items => {
+           type => "object",
+           properties => {
+               method => { type => 'string'},
+           },
+       },
+       links => [ { rel => 'child', href => "{method}" } ],
+    },
+    code => sub {
+       my ($param) = @_;
+
+       my $res = [
+           { method => 'cifs' },
+           { method => 'glusterfs' },
+           { method => 'iscsi' },
+           { method => 'lvm' },
+           { method => 'nfs' },
+           { method => 'usb' },
+           { method => 'zfs' },
+       ];
+
+       return $res;
+    }});
+
 __PACKAGE__->register_method({
     name => 'nfsscan',
     path => 'nfs',
@@ -340,3 +380,47 @@ __PACKAGE__->register_method({
 
        return PVE::Storage::scan_zfs();
     }});
+
+__PACKAGE__->register_method({
+    name => 'usbscan',
+    path => 'usb',
+    method => 'GET',
+    description => "List local USB devices.",
+    protected => 1,
+    proxyto => "node",
+    permissions => {
+       check => ['perm', '/', ['Sys.Modify']],
+    },
+    parameters => {
+       additionalProperties => 0,
+       properties => {
+           node => get_standard_option('pve-node'),
+       },
+    },
+    returns => {
+       type => 'array',
+       items => {
+           type => "object",
+           properties => {
+               busnum => { type => 'integer'},
+               class => { type => 'integer'},
+               devnum => { type => 'integer'},
+               level => { type => 'integer'},
+               manufacturer => { type => 'string', optional => 1 },
+               port => { type => 'integer'},
+               prodid => { type => 'string'},
+               product => { type => 'string', optional => 1 },
+               serial => { type => 'string', optional => 1 },
+               speed => { type => 'string'},
+               usbpath => { type => 'string', optional => 1},
+               vendid => { type => 'string'},
+           },
+       },
+    },
+    code => sub {
+       my ($param) = @_;
+
+       return PVE::SysFSTools::scan_usb();
+    }});
+
+1;