api: scan: move over index and usb scan from manager
Add the missing pieces allowing pve-manager to just point the /nodes/<node>/scan api directory at this module, dropping it's duplicated copy. Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
@ -14,6 +14,46 @@ use PVE::SysFSTools;
|
|||||||
|
|
||||||
use base qw(PVE::RESTHandler);
|
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({
|
__PACKAGE__->register_method({
|
||||||
name => 'nfsscan',
|
name => 'nfsscan',
|
||||||
path => 'nfs',
|
path => 'nfs',
|
||||||
@ -340,3 +380,47 @@ __PACKAGE__->register_method({
|
|||||||
|
|
||||||
return PVE::Storage::scan_zfs();
|
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;
|
||||||
|
|||||||
Reference in New Issue
Block a user