]> git.proxmox.com Git - pve-client.git/blame - pveclient
rename defaut output format from 'table' to 'text'
[pve-client.git] / pveclient
CommitLineData
29505e2c
DM
1#!/usr/bin/perl
2
b133a905
DM
3package PVE::CLI::pveclient;
4
29505e2c
DM
5use strict;
6use warnings;
f5fcd826 7use Cwd 'abs_path';
29505e2c
DM
8use Data::Dumper;
9
c9138c03
DM
10use PVE::APIClient::JSONSchema qw(register_standard_option get_standard_option);
11use PVE::APIClient::CLIHandler;
565bbc73 12
29505e2c
DM
13use PVE::APIClient::LWP;
14use PVE::APIClient::Helpers;
b0495d82 15use PVE::APIClient::Config;
a6dab5b8 16use PVE::APIClient::Commands::config;
565bbc73 17use PVE::APIClient::Commands::remote;
5b090843 18use PVE::APIClient::Commands::list;
adf285bf 19use PVE::APIClient::Commands::lxc;
89335fb1 20use PVE::APIClient::Commands::GuestStatus;
565bbc73 21
29505e2c
DM
22use JSON;
23
61ad3df5
DM
24sub call_api_method {
25 my ($method, $param) = @_;
29505e2c 26
61ad3df5 27 my $path = PVE::APIClient::Tools::extract_param($param, 'api_path');
29505e2c
DM
28 die "missing API path\n" if !defined($path);
29
61ad3df5
DM
30 my $remote = PVE::APIClient::Tools::extract_param($param, 'remote');
31 die "missing remote\n" if !defined($remote);
32
33 my $format = PVE::APIClient::Tools::extract_param($param, 'format');
34 PVE::APIClient::Helpers::set_output_format($format);
35
b0495d82
DM
36 my $config = PVE::APIClient::Config->load();
37
38 # test if api path exists
29505e2c 39 my $info = PVE::APIClient::Helpers::lookup_api_method($path, $method);
29505e2c 40
b0495d82
DM
41 my $conn = PVE::APIClient::Config->remote_conn($config, $remote);
42
43 my $res = $conn->call($method, "api2/json/$path", $param);
44 die "undefined result" if !defined($res);
45 die "undefined result data" if !exists($res->{data});
46
47 return $res->{data};
29505e2c
DM
48}
49
c9138c03 50use base qw(PVE::APIClient::CLIHandler);
3a1bc22f 51
b133a905 52my $cmd = $ARGV[0];
dce6ecbc 53
b133a905 54if ($cmd && $cmd eq 'packagedepends') {
f5fcd826
DM
55 # experimental code to print required perl packages
56 my $packages = {};
57 my $dir = Cwd::getcwd;
58
59 foreach my $k (keys %INC) {
60 my $file = abs_path($INC{$k});
61 next if $file =~ m/^\Q$dir\E/;
62 my $res = `dpkg -S '$file'`;
63 if ($res && $res =~ m/^(\S+): $file$/) {
64 my $debian_package = $1;
65 $debian_package =~ s/:amd64$//;
66 $packages->{$debian_package} = 1;
67 } else {
68 die "unable to find package for '$file'\n";
69 }
70 }
71 print join("\n", sort(keys %$packages)) . "\n";
b133a905
DM
72
73 exit(0);
74}
75
76my $path_properties = {};
77my $path_returns = { type => 'null' };
78
79# dynamically update schema definition for direct API call
80# like: pveclient api <get|set|create|delete|help> <remote> <path>
81if (my $info = PVE::APIClient::Helpers::extract_path_info()) {
82 $path_properties = $info->{parameters}->{properties};
83 $path_returns = $info->{returns};
29505e2c
DM
84}
85
61ad3df5 86$path_properties->{format} = get_standard_option('pveclient-output-format'),
b133a905
DM
87$path_properties->{remote} = get_standard_option('pveclient-remote-name');
88$path_properties->{api_path} = {
89 description => "API path.",
90 type => 'string',
91 completion => sub {
92 my ($cmd, $pname, $cur, $args) = @_;
93 return PVE::APIClient::Helpers::complete_api_path($cur);
94 },
95};
96
61ad3df5 97
b0495d82 98my $format_result = sub {
61ad3df5
DM
99 my ($data) = @_;
100
4db9ff67 101 PVE::APIClient::Helpers::print_result($data, $path_returns);
b0495d82
DM
102};
103
b133a905
DM
104__PACKAGE__->register_method ({
105 name => 'pveclient_get',
106 path => 'pveclient_get',
107 method => 'GET',
108 description => "call API GET on <path>.",
109 parameters => {
110 additionalProperties => 0,
111 properties => $path_properties,
112 },
113 returns => $path_returns,
114 code => sub {
115 my ($param) = @_;
116
61ad3df5 117 return call_api_method('GET', $param);
b133a905
DM
118 }});
119
120__PACKAGE__->register_method ({
121 name => 'pveclient_set',
122 path => 'pveclient_set',
123 method => 'PUT',
124 description => "call API PUT on <path>.",
125 parameters => {
126 additionalProperties => 0,
127 properties => $path_properties,
128 },
129 returns => $path_returns,
130 code => sub {
131 my ($param) = @_;
132
61ad3df5 133 return call_api_method('PUT', $param);
b133a905
DM
134 }});
135
136__PACKAGE__->register_method ({
137 name => 'pveclient_create',
138 path => 'pveclient_create',
139 method => 'PUSH',
140 description => "call API PUSH on <path>.",
141 parameters => {
142 additionalProperties => 0,
143 properties => $path_properties,
144 },
145 returns => $path_returns,
146 code => sub {
147 my ($param) = @_;
148
61ad3df5 149 return call_api_method('PUSH', $param);
b133a905
DM
150 }});
151
152__PACKAGE__->register_method ({
153 name => 'pveclient_delete',
154 path => 'pveclient_delete',
155 method => 'DELETE',
156 description => "call API DELETE on <path>.",
157 parameters => {
158 additionalProperties => 0,
159 properties => $path_properties,
160 },
161 returns => $path_returns,
162 code => sub {
163 my ($param) = @_;
164
61ad3df5 165 return call_api_method('DELETE', $param);
b133a905
DM
166 }});
167
168
169our $cmddef = {
170 config => $PVE::APIClient::Commands::config::cmddef,
171 list => $PVE::APIClient::Commands::list::cmddef,
172 lxc => $PVE::APIClient::Commands::lxc::cmddef,
173 remote => $PVE::APIClient::Commands::remote::cmddef,
4cedebf6
RJ
174
175 spice => [ 'PVE::APIClient::Commands::GuestStatus', 'spice', ['remote', 'vmid']],
89335fb1
DM
176 start => [ 'PVE::APIClient::Commands::GuestStatus', 'start', ['remote', 'vmid']],
177 stop => [ 'PVE::APIClient::Commands::GuestStatus', 'stop', ['remote', 'vmid']],
b133a905
DM
178
179 api => {
b0495d82
DM
180 get => [ __PACKAGE__, 'pveclient_get', ['remote', 'api_path'], {}, $format_result ],
181 set => [ __PACKAGE__, 'pveclient_set', ['remote', 'api_path'], {}, $format_result ],
182 create => [ __PACKAGE__, 'pveclient_create', ['remote', 'api_path'], {}, $format_result ],
183 delete => [ __PACKAGE__, 'pveclient_delete', ['remote', 'api_path'], {}, $format_result ],
184 },
b133a905
DM
185};
186
187
188__PACKAGE__->run_cli_handler();