]> git.proxmox.com Git - pve-client.git/blobdiff - pveclient
rename start.pm to GuestStatus.pm, implement stop command
[pve-client.git] / pveclient
index d8d4d15da682bc772558e0099d75761dd46b6d12..4abe7b73a6a2b4020df28c58dc2bed617d222bcc 100755 (executable)
--- a/pveclient
+++ b/pveclient
 #!/usr/bin/perl
 
+package PVE::CLI::pveclient;
+
 use strict;
 use warnings;
+use Cwd 'abs_path';
 use lib '/usr/share/pve-client';
 use lib '.';
 use Data::Dumper;
 
-use PVE::JSONSchema;
+use PVE::JSONSchema qw(register_standard_option get_standard_option);
 use PVE::CLIHandler;
 
 use PVE::APIClient::LWP;
 use PVE::APIClient::Helpers;
+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 {
-
-    my $text = "pveclient usage:\n\n";
-
-    $text .= "pveclient remote <help|add|remove> {options}\n\n";
-
-    $text .= "pveclient lxc <help|create|destroy|...> {options}\n\n";
-
-    $text .= "pveclient <get/set/create/delete> <path> {options}\n\n";
-
-    print STDERR $text;
-
-}
-
 sub call_method {
-    my ($path, $method, $args) = @_;
+    my ($remote, $path, $method, $params) = @_;
 
     die "missing API path\n" if !defined($path);
 
     my $info = PVE::APIClient::Helpers::lookup_api_method($path, $method);
-    my $param = PVE::JSONSchema::get_options($info->{parameters}, $args);
-    print Dumper($param);
+    print Dumper($params);
 
     die "implement me";
 }
 
-# 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() && exit(-1));
-
-if ($cmd eq 'get') {
-    my $method = 'GET';
-    my $path;
-    if (scalar(@ARGV) && $ARGV[0] !~ m/^\-/)  {
-       $path = shift @ARGV;
+use base qw(PVE::CLIHandler);
+
+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";
+       }
     }
-    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 'lxc') {
-    PVE::APIClient::Commands::lxc->run_cli_handler();
-} elsif ($cmd eq 'remote') {
-    PVE::APIClient::Commands::remote->run_cli_handler();
-} elsif ($cmd eq 'bashcomplete') {
+    print join("\n", sort(keys %$packages)) . "\n";
 
-    my $cmdline = substr($ENV{COMP_LINE}, 0, $ENV{COMP_POINT});
-    $cmdline =~ s/$cur$//;
+    exit(0);
+}
 
-    my ($bash_command, $cur, $prev) = @ARGV;
+my $path_properties = {};
+my $path_returns = { type => 'null' };
 
-    my $args = [split(/\s+/, $cmdline)];
+# dynamically update schema definition for direct API call
+# like: pveclient api <get|set|create|delete|help> <remote> <path>
+if (my $info =  PVE::APIClient::Helpers::extract_path_info()) {
+    $path_properties = $info->{parameters}->{properties};
+    $path_returns = $info->{returns};
+}
 
-    if (scalar(@$args) == 1) {
-       foreach my $p (qw(get set create delete lxc remote)) {
-           print "$p\n" if $p =~ m/^$cur/;
-       }
+$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);
+    },
+};
+
+__PACKAGE__->register_method ({
+    name => 'pveclient_get',
+    path => 'pveclient_get',
+    method => 'GET',
+    description => "call API GET on <path>.",
+    parameters => {
+       additionalProperties => 0,
+       properties => $path_properties,
+    },
+    returns => $path_returns,
+    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);
+    }});
+
+__PACKAGE__->register_method ({
+    name => 'pveclient_set',
+    path => 'pveclient_set',
+    method => 'PUT',
+    description => "call API PUT on <path>.",
+    parameters => {
+       additionalProperties => 0,
+       properties => $path_properties,
+    },
+    returns => $path_returns,
+    code => sub {
+       my ($param) = @_;
+
+       print Dumper($param);
+
+       die "implement me";
+
+    }});
+
+__PACKAGE__->register_method ({
+    name => 'pveclient_create',
+    path => 'pveclient_create',
+    method => 'PUSH',
+    description => "call API PUSH on <path>.",
+    parameters => {
+       additionalProperties => 0,
+       properties => $path_properties,
+    },
+    returns => $path_returns,
+    code => sub {
+       my ($param) = @_;
+
+       print Dumper($param);
+
+       die "implement me";
+
+    }});
+
+__PACKAGE__->register_method ({
+    name => 'pveclient_delete',
+    path => 'pveclient_delete',
+    method => 'DELETE',
+    description => "call API DELETE on <path>.",
+    parameters => {
+       additionalProperties => 0,
+       properties => $path_properties,
+    },
+    returns => $path_returns,
+    code => sub {
+       my ($param) = @_;
+
+       print Dumper($param);
+
+       die "implement me";
+
+    }});
+
+
+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,
+    
+    start => [ 'PVE::APIClient::Commands::GuestStatus', 'start', ['remote', 'vmid']],
+    stop => [ 'PVE::APIClient::Commands::GuestStatus', 'stop', ['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']],
     }
+};
 
-} else {
-    print_usage();
-}
 
-exit(0);
+__PACKAGE__->run_cli_handler();