]> git.proxmox.com Git - pve-client.git/blobdiff - pveclient
PVE::APIClient::Helper::print_ordered_result - correctly declare local var
[pve-client.git] / pveclient
index 8ea109d042ed7683a59681f85babad86f34a2e7d..c87b2cc8eabb7b220d8c392eb43dae96fca5dfe6 100755 (executable)
--- a/pveclient
+++ b/pveclient
 #!/usr/bin/perl
 
+package PVE::CLI::pveclient;
+
 use strict;
 use warnings;
-use lib '/usr/share/pve-client';
+use Cwd 'abs_path';
 use Data::Dumper;
 
-use PVE::CLIHandler;
+use PVE::APIClient::JSONSchema qw(register_standard_option get_standard_option);
+use PVE::APIClient::CLIFormatter;
+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;
+use PVE::APIClient::Commands::lxc;
+use PVE::APIClient::Commands::GuestStatus;
 
 use JSON;
 
-sub print_usage {
+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 $remote = PVE::APIClient::Tools::extract_param($param, 'remote');
+    die "missing remote\n" if !defined($remote);
+
+    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);
 
-    die "Usage: implement me";
-    exit(-1);
+    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};
 }
 
-sub call_method {
-    my ($path, $method, $args) = @_;
+use base qw(PVE::APIClient::CLIHandler);
+
+sub read_password {
+    return PVE::APIClient::PTY::read_password("Remote password: ")
+}
 
-    die "missing API path\n" if !defined($path);
 
-    my $info = PVE::APIClient::Helpers::lookup_api_method($path, $method);
-    my $param = PVE::APIClient::Helpers::get_options($info->{parameters}, $args);
-    print Dumper($param);
+my $cmd = $ARGV[0];
+
+if ($cmd && $cmd eq 'packagedepends') {
+    # experimental code to print required perl packages
+    my $packages = {};
+    my $dir = Cwd::getcwd;
+
+    foreach my $k (keys %INC) {
+       my $file = abs_path($INC{$k});
+       next if $file =~ m/^\Q$dir\E/;
+       my $res = `dpkg -S '$file'`;
+       if ($res && $res =~ m/^(\S+): $file$/) {
+           my $debian_package = $1;
+           $debian_package =~ s/:amd64$//;
+           $packages->{$debian_package} = 1;
+       } else {
+           die "unable to find package for '$file'\n";
+       }
+    }
+    print join("\n", sort(keys %$packages)) . "\n";
 
-    die "implement me";
+    exit(0);
 }
 
-# NOTE: This binary is just a placeholer - nothing implemented so far!
-
-#my $hostname = 'localhost';
-#my $username = 'root@pam';
-#
-#my $conn = PVE::APIClient::LWP->new(
-#    username => $username,
-#    #password => 'yourpassword',
-#    #ticket => $ticket,
-#    #csrftoken => $csrftoken,
-#    host => $hostname,
-#    # allow manual fingerprint verification
-#    manual_verification => 1,
-#    );
-
-#my $res = $conn->get("/", {});
-#print to_json($res, { pretty => 1, canonical => 1});
-
-my $cmd = shift || print_usage();
-
-if ($cmd eq 'get') {
-    my $method = 'GET';
-    my $path;
-    if (scalar(@ARGV) && $ARGV[0] !~ m/^\-/)  {
-       $path = shift @ARGV;
+my $path_properties = {};
+my $path_returns = { type => 'null' };
+
+# dynamically update schema definition for direct API call
+# like: pveclient api <get|set|create|delete|help> <remote> <path>
+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};
     }
-    my $res = call_method($path, $method, \@ARGV);
-    die "implement me";
-} elsif ($cmd eq 'set') {
-    die "implement me";
-} elsif ($cmd eq 'create') {
-    die "implement me";
-} elsif ($cmd eq 'delete') {
-    die "implement me";
-} elsif ($cmd eq 'remote') {
-    PVE::APIClient::Commands::remote->run_cli_handler();
-} else {
-    print_usage();
+    $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.",
+    type => 'string',
+    completion => sub {
+       my ($cmd, $pname, $cur, $args) = @_;
+       return PVE::APIClient::Helpers::complete_api_path($cur);
+    },
+};
+
+
+my $format_result = sub {
+    my ($data) = @_;
+
+    my $format = PVE::APIClient::Helpers::get_output_format();
+
+    my $options = PVE::APIClient::CLIFormatter::query_terminal_options({});
+
+    PVE::APIClient::CLIFormatter::print_api_result($format, $data, $path_returns, undef, $options);
+};
+
+__PACKAGE__->register_method ({
+    name => 'pveclient_get',
+    path => 'pveclient_get',
+    method => 'GET',
+    description => "Call API GET on <api_path>.",
+    parameters => {
+       additionalProperties => 0,
+       properties => $path_properties,
+    },
+    returns => $path_returns,
+    code => sub {
+       my ($param) = @_;
+
+       return call_api_method('GET', $param);
+    }});
+
+__PACKAGE__->register_method ({
+    name => 'pveclient_set',
+    path => 'pveclient_set',
+    method => 'PUT',
+    description => "Call API PUT on <api_path>.",
+    parameters => {
+       additionalProperties => 0,
+       properties => $path_properties,
+    },
+    returns => $path_returns,
+    code => sub {
+       my ($param) = @_;
+
+       return call_api_method('PUT', $param);
+    }});
+
+__PACKAGE__->register_method ({
+    name => 'pveclient_create',
+    path => 'pveclient_create',
+    method => 'PUSH',
+    description => "Call API PUSH on <api_path>.",
+    parameters => {
+       additionalProperties => 0,
+       properties => $path_properties,
+    },
+    returns => $path_returns,
+    code => sub {
+       my ($param) = @_;
+
+       return call_api_method('PUSH', $param);
+    }});
+
+__PACKAGE__->register_method ({
+    name => 'pveclient_delete',
+    path => 'pveclient_delete',
+    method => 'DELETE',
+    description => "Call API DELETE on <api_path>.",
+    parameters => {
+       additionalProperties => 0,
+       properties => $path_properties,
+    },
+    returns => $path_returns,
+    code => sub {
+       my ($param) = @_;
+
+       return call_api_method('DELETE', $param);
+    }});
+
+
+our $cmddef = {
+    config => $PVE::APIClient::Commands::config::cmddef,
+    list => $PVE::APIClient::Commands::list::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'], {}, $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);
 }
 
-exit(0);
+__PACKAGE__->run_cli_handler();