X-Git-Url: https://git.proxmox.com/?p=pve-client.git;a=blobdiff_plain;f=pveclient;h=2995fd5441e732bcf451828d7dca6f3b2cbde816;hp=a16906689623d322ee26a8250324d5011aa60406;hb=2ecf9b57e894b6308daee2e60a2d7f5bd417932c;hpb=c9138c03bcb92d01e8c7d9f195ac2f9b4d5458b3 diff --git a/pveclient b/pveclient index a169066..2995fd5 100755 --- a/pveclient +++ b/pveclient @@ -9,9 +9,11 @@ use Data::Dumper; use PVE::APIClient::JSONSchema qw(register_standard_option get_standard_option); use PVE::APIClient::CLIHandler; +use PVE::APIClient::PTY; use PVE::APIClient::LWP; use PVE::APIClient::Helpers; +use PVE::APIClient::Config; use PVE::APIClient::Commands::config; use PVE::APIClient::Commands::remote; use PVE::APIClient::Commands::list; @@ -20,19 +22,39 @@ use PVE::APIClient::Commands::GuestStatus; use JSON; -sub call_method { - my ($remote, $path, $method, $params) = @_; +sub call_api_method { + my ($method, $param) = @_; + my $path = PVE::APIClient::Tools::extract_param($param, 'api_path'); die "missing API path\n" if !defined($path); - my $info = PVE::APIClient::Helpers::lookup_api_method($path, $method); - print Dumper($params); + my $remote = PVE::APIClient::Tools::extract_param($param, 'remote'); + die "missing remote\n" if !defined($remote); - die "implement me"; + my $format = PVE::APIClient::Tools::extract_param($param, 'format'); + PVE::APIClient::Helpers::set_output_format($format); + + my $config = PVE::APIClient::Config->load(); + + my $uri_param = {}; + my $info = PVE::APIClient::Helpers::find_method_info($path, $method, $uri_param); + + my $conn = PVE::APIClient::Config->remote_conn($config, $remote); + + my $res = $conn->call($method, "api2/json/$path", $param); + die "undefined result" if !defined($res); + die "undefined result data" if !exists($res->{data}); + + return $res->{data}; } use base qw(PVE::APIClient::CLIHandler); +sub read_password { + return PVE::APIClient::PTY::read_password("Remote password: ") +} + + my $cmd = $ARGV[0]; if ($cmd && $cmd eq 'packagedepends') { @@ -62,11 +84,16 @@ my $path_returns = { type => 'null' }; # dynamically update schema definition for direct API call # like: pveclient api -if (my $info = PVE::APIClient::Helpers::extract_path_info()) { - $path_properties = $info->{parameters}->{properties}; +my $uri_param = {}; +if (my $info = PVE::APIClient::Helpers::extract_path_info($uri_param)) { + foreach my $key (keys %{$info->{parameters}->{properties}}) { + next if defined($uri_param->{$key}); + $path_properties->{$key} = $info->{parameters}->{properties}->{$key}; + } $path_returns = $info->{returns}; } +$path_properties->{format} = get_standard_option('pveclient-output-format'), $path_properties->{remote} = get_standard_option('pveclient-remote-name'); $path_properties->{api_path} = { description => "API path.", @@ -77,11 +104,18 @@ $path_properties->{api_path} = { }, }; + +my $format_result = sub { + my ($data) = @_; + + PVE::APIClient::Helpers::print_result($data, $path_returns); +}; + __PACKAGE__->register_method ({ name => 'pveclient_get', path => 'pveclient_get', method => 'GET', - description => "call API GET on .", + description => "Call API GET on .", parameters => { additionalProperties => 0, properties => $path_properties, @@ -90,17 +124,14 @@ __PACKAGE__->register_method ({ code => sub { my ($param) = @_; - my $path = PVE::Tools::extract_param($param, 'api_path'); - my $remote = PVE::Tools::extract_param($param, 'remote'); - - return call_method($remote, $path, 'GET', $param); + return call_api_method('GET', $param); }}); __PACKAGE__->register_method ({ name => 'pveclient_set', path => 'pveclient_set', method => 'PUT', - description => "call API PUT on .", + description => "Call API PUT on .", parameters => { additionalProperties => 0, properties => $path_properties, @@ -109,17 +140,14 @@ __PACKAGE__->register_method ({ code => sub { my ($param) = @_; - print Dumper($param); - - die "implement me"; - + return call_api_method('PUT', $param); }}); __PACKAGE__->register_method ({ name => 'pveclient_create', path => 'pveclient_create', method => 'PUSH', - description => "call API PUSH on .", + description => "Call API PUSH on .", parameters => { additionalProperties => 0, properties => $path_properties, @@ -128,17 +156,14 @@ __PACKAGE__->register_method ({ code => sub { my ($param) = @_; - print Dumper($param); - - die "implement me"; - + return call_api_method('PUSH', $param); }}); __PACKAGE__->register_method ({ name => 'pveclient_delete', path => 'pveclient_delete', method => 'DELETE', - description => "call API DELETE on .", + description => "Call API DELETE on .", parameters => { additionalProperties => 0, properties => $path_properties, @@ -147,10 +172,7 @@ __PACKAGE__->register_method ({ code => sub { my ($param) = @_; - print Dumper($param); - - die "implement me"; - + return call_api_method('DELETE', $param); }}); @@ -160,17 +182,27 @@ our $cmddef = { lxc => $PVE::APIClient::Commands::lxc::cmddef, remote => $PVE::APIClient::Commands::remote::cmddef, + resume => [ 'PVE::APIClient::Commands::GuestStatus', 'resume', ['remote', 'vmid']], + shutdown => [ 'PVE::APIClient::Commands::GuestStatus', 'shutdown', ['remote', 'vmid']], spice => [ 'PVE::APIClient::Commands::GuestStatus', 'spice', ['remote', 'vmid']], start => [ 'PVE::APIClient::Commands::GuestStatus', 'start', ['remote', 'vmid']], stop => [ 'PVE::APIClient::Commands::GuestStatus', 'stop', ['remote', 'vmid']], + suspend => [ 'PVE::APIClient::Commands::GuestStatus', 'suspend', ['remote', 'vmid']], api => { - get => [ __PACKAGE__, 'pveclient_get', ['remote', 'api_path']], - set => [ __PACKAGE__, 'pveclient_set', ['remote', 'api_path']], - create => [ __PACKAGE__, 'pveclient_create', ['remote', 'api_path']], - delete => [ __PACKAGE__, 'pveclient_delete', ['remote', 'api_path']], - } + get => [ __PACKAGE__, 'pveclient_get', ['remote', 'api_path'], {}, $format_result ], + set => [ __PACKAGE__, 'pveclient_set', ['remote', 'api_path'], {}, $format_result ], + create => [ __PACKAGE__, 'pveclient_create', ['remote', 'api_path'], {}, $format_result ], + delete => [ __PACKAGE__, 'pveclient_delete', ['remote', 'api_path'], {}, $format_result ], + }, }; +if ($cmd && $cmd eq 'printsynopsis') { + + print __PACKAGE__->generate_asciidoc_synopsis(); + + exit(0); +} + __PACKAGE__->run_cli_handler();