]> git.proxmox.com Git - pve-client.git/blame - PVE/APIClient/CLIHandler.pm
update files from pve-common
[pve-client.git] / PVE / APIClient / CLIHandler.pm
CommitLineData
ca3269f4 1package PVE::APIClient::CLIHandler;
565bbc73
DM
2
3use strict;
4use warnings;
826591e0 5use JSON;
565bbc73 6
ca3269f4 7use PVE::APIClient::SafeSyslog;
50d84256 8use PVE::APIClient::Exception qw(raise raise_param_exc);
ca3269f4 9use PVE::APIClient::RESTHandler;
969b8624 10use PVE::APIClient::PTY;
565bbc73 11
c2bcfdb2 12use PVE::APIClient::CLIFormatter;
ca3269f4
RJ
13
14use base qw(PVE::APIClient::RESTHandler);
565bbc73
DM
15
16# $cmddef defines which (sub)commands are available in a specific CLI class.
17# A real command is always an array consisting of its class, name, array of
18# position fixed (required) parameters and hash of predefined parameters when
19# mapping a CLI command t o an API call. Optionally an output method can be
5aa25367
DM
20# passed at the end, e.g., for formatting or transformation purpose, and
21# a schema of additional properties/arguments which are added to
22# the method schema and gets passed to the formatter.
565bbc73
DM
23#
24# [class, name, fixed_params, API_pre-set params, output_sub ]
25#
26# In case of so called 'simple commands', the $cmddef can be also just an
27# array.
28#
29# Examples:
30# $cmddef = {
ca3269f4 31# command => [ 'PVE::APIClient::API2::Class', 'command', [ 'arg1', 'arg2' ], { node => $nodename } ],
565bbc73 32# do => {
ca3269f4 33# this => [ 'PVE::APIClient::API2::OtherClass', 'method', [ 'arg1' ], undef, sub {
565bbc73
DM
34# my ($res) = @_;
35# print "$res\n";
36# }],
ca3269f4 37# that => [ 'PVE::APIClient::API2::OtherClass', 'subroutine' [] ],
565bbc73
DM
38# },
39# dothat => { alias => 'do that' },
40# }
41my $cmddef;
42my $exename;
43my $cli_handler_class;
44
969b8624
DM
45my $standard_mappings = {
46 'pve-password' => {
47 name => 'password',
48 desc => '<password>',
49 interactive => 1,
50 func => sub {
51 my ($value) = @_;
52 return $value if $value;
53 return PVE::APIClient::PTY::get_confirmed_password();
54 },
55 },
56};
57sub get_standard_mapping {
58 my ($name, $base) = @_;
59
60 my $std = $standard_mappings->{$name};
61 die "no such standard mapping '$name'\n" if !$std;
62
63 my $res = $base || {};
64
65 foreach my $opt (keys %$std) {
66 next if defined($res->{$opt});
67 $res->{$opt} = $std->{$opt};
68 }
69
70 return $res;
71}
72
c2bcfdb2
DM
73my $gen_param_mapping_func = sub {
74 my ($cli_handler_class) = @_;
75
76 my $param_mapping = $cli_handler_class->can('param_mapping');
77
78 if (!$param_mapping) {
79 my $read_password = $cli_handler_class->can('read_password');
80 my $string_param_mapping = $cli_handler_class->can('string_param_file_mapping');
81
82 return $string_param_mapping if !$read_password;
83
84 $param_mapping = sub {
85 my ($name) = @_;
86
87 my $password_map = get_standard_mapping('pve-password', {
88 func => $read_password
89 });
90 my $map = $string_param_mapping ? $string_param_mapping->($name) : [];
91 return [@$map, $password_map];
92 };
93 }
94
95 return $param_mapping;
96};
97
565bbc73
DM
98my $assert_initialized = sub {
99 my @caller = caller;
100 die "$caller[0]:$caller[2] - not initialized\n"
101 if !($cmddef && $exename && $cli_handler_class);
102};
103
104my $abort = sub {
105 my ($reason, $cmd) = @_;
106 print_usage_short (\*STDERR, $reason, $cmd);
107 exit (-1);
108};
109
110my $expand_command_name = sub {
111 my ($def, $cmd) = @_;
112
8958596f
DM
113 return $cmd if exists $def->{$cmd}; # command is already complete
114
50d84256
DM
115 my $is_alias = sub { ref($_[0]) eq 'HASH' && exists($_[0]->{alias}) };
116 my @expanded = grep { /^\Q$cmd\E/ && !$is_alias->($def->{$_}) } keys %$def;
117
8958596f
DM
118 return $expanded[0] if scalar(@expanded) == 1; # enforce exact match
119
120 return undef;
565bbc73
DM
121};
122
123my $get_commands = sub {
124 my $def = shift // die "no command definition passed!";
125 return [ grep { !(ref($def->{$_}) eq 'HASH' && defined($def->{$_}->{alias})) } sort keys %$def ];
126};
127
128my $complete_command_names = sub { $get_commands->($cmddef) };
129
130# traverses the command definition using the $argv array, resolving one level
131# of aliases.
132# Returns the matching (sub) command and its definition, and argument array for
133# this (sub) command and a hash where we marked which (sub) commands got
134# expanded (e.g. st => status) while traversing
135sub resolve_cmd {
136 my ($argv, $is_alias) = @_;
137
138 my ($def, $cmd) = ($cmddef, $argv);
139 my $cmdstr = $exename;
140
141 if (ref($argv) eq 'ARRAY') {
8958596f 142 my $expanded_last_arg;
565bbc73
DM
143 my $last_arg_id = scalar(@$argv) - 1;
144
145 for my $i (0..$last_arg_id) {
146 $cmd = $expand_command_name->($def, $argv->[$i]);
8958596f
DM
147 if (defined($cmd)) {
148 # If the argument was expanded (or was already complete) and it
149 # is the final argument, tell our caller about it:
150 $expanded_last_arg = $cmd if $i == $last_arg_id;
151 } else {
152 # Otherwise continue with the unexpanded version of it.
153 $cmd = $argv->[$i];
154 }
565bbc73 155 $cmdstr .= " $cmd";
565bbc73 156 $def = $def->{$cmd};
7e1ea9f2 157 last if !defined($def);
565bbc73
DM
158
159 if (ref($def) eq 'ARRAY') {
160 # could expand to a real command, rest of $argv are its arguments
161 my $cmd_args = [ @$argv[$i+1..$last_arg_id] ];
8958596f 162 return ($cmd, $def, $cmd_args, $expanded_last_arg, $cmdstr);
565bbc73
DM
163 }
164
165 if (defined($def->{alias})) {
166 die "alias loop detected for '$cmd'" if $is_alias; # avoids cycles
167 # replace aliased (sub)command with the expanded aliased command
168 splice @$argv, $i, 1, split(/ +/, $def->{alias});
169 return resolve_cmd($argv, 1);
170 }
171 }
172 # got either a special command (bashcomplete, verifyapi) or an unknown
173 # cmd, just return first entry as cmd and the rest of $argv as cmd_arg
174 my $cmd_args = [ @$argv[1..$last_arg_id] ];
8958596f 175 return ($argv->[0], $def, $cmd_args, $expanded_last_arg, $cmdstr);
565bbc73
DM
176 }
177 return ($cmd, $def, undef, undef, $cmdstr);
178}
179
180sub generate_usage_str {
181 my ($format, $cmd, $indent, $separator, $sortfunc) = @_;
182
183 $assert_initialized->();
184 die 'format required' if !$format;
185
186 $sortfunc //= sub { sort keys %{$_[0]} };
187 $separator //= '';
188 $indent //= '';
189
c2bcfdb2 190 my $param_cb = $gen_param_mapping_func->($cli_handler_class);
565bbc73
DM
191
192 my ($subcmd, $def, undef, undef, $cmdstr) = resolve_cmd($cmd);
0cdec227 193 $abort->("unknown command '$cmdstr'") if !defined($def) && ref($cmd) eq 'ARRAY';
565bbc73
DM
194
195 my $generate;
196 $generate = sub {
197 my ($indent, $separator, $def, $prefix) = @_;
198
199 my $str = '';
200 if (ref($def) eq 'HASH') {
201 my $oldclass = undef;
202 foreach my $cmd (&$sortfunc($def)) {
203
204 if (ref($def->{$cmd}) eq 'ARRAY') {
5aa25367 205 my ($class, $name, $arg_param, $fixed_param, undef, $formatter_properties) = @{$def->{$cmd}};
565bbc73
DM
206
207 $str .= $separator if $oldclass && $oldclass ne $class;
208 $str .= $indent;
209 $str .= $class->usage_str($name, "$prefix $cmd", $arg_param,
5aa25367 210 $fixed_param, $format, $param_cb, $formatter_properties);
565bbc73
DM
211 $oldclass = $class;
212
213 } elsif (defined($def->{$cmd}->{alias}) && ($format eq 'asciidoc')) {
214
215 $str .= "*$prefix $cmd*\n\nAn alias for '$exename $def->{$cmd}->{alias}'.\n\n";
216
217 } else {
218 next if $def->{$cmd}->{alias};
219
74ad9c37 220 my $substr = $generate->($indent, '', $def->{$cmd}, "$prefix $cmd");
565bbc73
DM
221 if ($substr) {
222 $substr .= $separator if $substr !~ /\Q$separator\E{2}/;
223 $str .= $substr;
224 }
225 }
226
227 }
228 } else {
5aa25367 229 my ($class, $name, $arg_param, $fixed_param, undef, $formatter_properties) = @$def;
565bbc73
DM
230 $abort->("unknown command '$cmd'") if !$class;
231
232 $str .= $indent;
5aa25367 233 $str .= $class->usage_str($name, $prefix, $arg_param, $fixed_param, $format, $param_cb, $formatter_properties);
565bbc73
DM
234 }
235 return $str;
236 };
237
238 return $generate->($indent, $separator, $def, $cmdstr);
239}
240
241__PACKAGE__->register_method ({
242 name => 'help',
243 path => 'help',
244 method => 'GET',
245 description => "Get help about specified command.",
246 parameters => {
247 additionalProperties => 0,
248 properties => {
ca3269f4 249 'extra-args' => PVE::APIClient::JSONSchema::get_standard_option('extra-args', {
565bbc73
DM
250 description => 'Shows help for a specific command',
251 completion => $complete_command_names,
252 }),
253 verbose => {
254 description => "Verbose output format.",
255 type => 'boolean',
256 optional => 1,
257 },
258 },
259 },
260 returns => { type => 'null' },
261
262 code => sub {
263 my ($param) = @_;
264
265 $assert_initialized->();
266
267 my $cmd = $param->{'extra-args'};
268
269 my $verbose = defined($cmd) && $cmd;
270 $verbose = $param->{verbose} if defined($param->{verbose});
271
272 if (!$cmd) {
273 if ($verbose) {
274 print_usage_verbose();
275 } else {
276 print_usage_short(\*STDOUT);
277 }
278 return undef;
279 }
280
281 my $str;
282 if ($verbose) {
283 $str = generate_usage_str('full', $cmd, '');
284 } else {
285 $str = generate_usage_str('short', $cmd, ' ' x 7);
286 }
287 $str =~ s/^\s+//;
288
289 if ($verbose) {
290 print "$str\n";
291 } else {
292 print "USAGE: $str\n";
293 }
294
295 return undef;
296
297 }});
298
299sub print_simple_asciidoc_synopsis {
300 $assert_initialized->();
301
302 my $synopsis = "*${exename}* `help`\n\n";
303 $synopsis .= generate_usage_str('asciidoc');
304
305 return $synopsis;
306}
307
308sub print_asciidoc_synopsis {
309 $assert_initialized->();
310
311 my $synopsis = "";
312
313 $synopsis .= "*${exename}* `<COMMAND> [ARGS] [OPTIONS]`\n\n";
314
315 $synopsis .= generate_usage_str('asciidoc');
316
317 $synopsis .= "\n";
318
319 return $synopsis;
320}
321
322sub print_usage_verbose {
323 $assert_initialized->();
324
325 print "USAGE: $exename <COMMAND> [ARGS] [OPTIONS]\n\n";
326
327 my $str = generate_usage_str('full');
328
329 print "$str\n";
330}
331
332sub print_usage_short {
333 my ($fd, $msg, $cmd) = @_;
334
335 $assert_initialized->();
336
337 print $fd "ERROR: $msg\n" if $msg;
74ad9c37 338 print $fd "USAGE: $exename <COMMAND> [ARGS] [OPTIONS]\n\n";
565bbc73 339
74ad9c37 340 print {$fd} generate_usage_str('short', $cmd, ' ' x 7, $cmd ? '' : "\n", sub {
565bbc73
DM
341 my ($h) = @_;
342 return sort {
343 if (ref($h->{$a}) eq 'ARRAY' && ref($h->{$b}) eq 'ARRAY') {
344 # $a and $b are both real commands order them by their class
345 return $h->{$a}->[0] cmp $h->{$b}->[0] || $a cmp $b;
346 } elsif (ref($h->{$a}) eq 'ARRAY' xor ref($h->{$b}) eq 'ARRAY') {
347 # real command and subcommand mixed, put sub commands first
348 return ref($h->{$b}) eq 'ARRAY' ? -1 : 1;
349 } else {
350 # both are either from the same class or subcommands
351 return $a cmp $b;
352 }
353 } keys %$h;
354 });
355}
356
357my $print_bash_completion = sub {
358 my ($simple_cmd, $bash_command, $cur, $prev) = @_;
359
360 my $debug = 0;
361
362 return if !(defined($cur) && defined($prev) && defined($bash_command));
363 return if !defined($ENV{COMP_LINE});
364 return if !defined($ENV{COMP_POINT});
365
366 my $cmdline = substr($ENV{COMP_LINE}, 0, $ENV{COMP_POINT});
367 print STDERR "\nCMDLINE: $ENV{COMP_LINE}\n" if $debug;
368
ca3269f4 369 my $args = PVE::APIClient::Tools::split_args($cmdline);
565bbc73
DM
370 shift @$args; # no need for program name
371 my $print_result = sub {
372 foreach my $p (@_) {
0cdec227 373 print "$p\n" if $p =~ m/^\Q$cur\E/;
565bbc73
DM
374 }
375 };
376
377 my ($cmd, $def) = ($simple_cmd, $cmddef);
378 if (!$simple_cmd) {
8958596f 379 ($cmd, $def, $args, my $expanded) = resolve_cmd($args);
565bbc73 380
8958596f
DM
381 if (defined($expanded) && $prev ne $expanded) {
382 print "$expanded\n";
565bbc73
DM
383 return;
384 }
8958596f
DM
385
386 if (ref($def) eq 'HASH') {
387 &$print_result(@{$get_commands->($def)});
565bbc73
DM
388 return;
389 }
390 }
391 return if !$def;
392
393 my $pos = scalar(@$args) - 1;
394 $pos += 1 if $cmdline =~ m/\s+$/;
395 print STDERR "pos: $pos\n" if $debug;
396 return if $pos < 0;
397
398 my $skip_param = {};
399
5aa25367 400 my ($class, $name, $arg_param, $uri_param, undef, $formatter_properties) = @$def;
565bbc73
DM
401 $arg_param //= [];
402 $uri_param //= {};
403
404 $arg_param = [ $arg_param ] if !ref($arg_param);
405
406 map { $skip_param->{$_} = 1; } @$arg_param;
407 map { $skip_param->{$_} = 1; } keys %$uri_param;
408
409 my $info = $class->map_method_by_name($name);
410
5aa25367
DM
411 my $prop = { %{$info->{parameters}->{properties}} }; # copy
412 $prop = { %$prop, %$formatter_properties } if $formatter_properties;
565bbc73
DM
413
414 my $print_parameter_completion = sub {
415 my ($pname) = @_;
416 my $d = $prop->{$pname};
417 if ($d->{completion}) {
418 my $vt = ref($d->{completion});
419 if ($vt eq 'CODE') {
420 my $res = $d->{completion}->($cmd, $pname, $cur, $args);
421 &$print_result(@$res);
422 }
423 } elsif ($d->{type} eq 'boolean') {
424 &$print_result('0', '1');
425 } elsif ($d->{enum}) {
426 &$print_result(@{$d->{enum}});
427 }
428 };
429
430 # positional arguments
565bbc73
DM
431 if ($pos < scalar(@$arg_param)) {
432 my $pname = $arg_param->[$pos];
433 &$print_parameter_completion($pname);
434 return;
435 }
436
437 my @option_list = ();
438 foreach my $key (keys %$prop) {
439 next if $skip_param->{$key};
440 push @option_list, "--$key";
441 }
442
443 if ($cur =~ m/^-/) {
444 &$print_result(@option_list);
445 return;
446 }
447
448 if ($prev =~ m/^--?(.+)$/ && $prop->{$1}) {
449 my $pname = $1;
450 &$print_parameter_completion($pname);
451 return;
452 }
453
454 &$print_result(@option_list);
455};
456
457sub verify_api {
458 my ($class) = @_;
459
460 # simply verify all registered methods
ca3269f4 461 PVE::APIClient::RESTHandler::validate_method_schemas();
565bbc73
DM
462}
463
464my $get_exe_name = sub {
465 my ($class) = @_;
466
467 my $name = $class;
468 $name =~ s/^.*:://;
469 $name =~ s/_/-/g;
470
471 return $name;
472};
473
474sub generate_bash_completions {
475 my ($class) = @_;
476
477 # generate bash completion config
478
479 $exename = &$get_exe_name($class);
480
481 print <<__EOD__;
482# $exename bash completion
483
484# see http://tiswww.case.edu/php/chet/bash/FAQ
485# and __ltrim_colon_completions() in /usr/share/bash-completion/bash_completion
486# this modifies global var, but I found no better way
487COMP_WORDBREAKS=\${COMP_WORDBREAKS//:}
488
489complete -o default -C '$exename bashcomplete' $exename
490__EOD__
491}
492
493sub generate_asciidoc_synopsys {
494 my ($class) = @_;
495 $class->generate_asciidoc_synopsis();
496};
497
498sub generate_asciidoc_synopsis {
499 my ($class) = @_;
500
501 $cli_handler_class = $class;
502
503 $exename = &$get_exe_name($class);
504
505 no strict 'refs';
506 my $def = ${"${class}::cmddef"};
507 $cmddef = $def;
508
509 if (ref($def) eq 'ARRAY') {
510 print_simple_asciidoc_synopsis();
511 } else {
512 $cmddef->{help} = [ __PACKAGE__, 'help', ['cmd'] ];
513
514 print_asciidoc_synopsis();
515 }
516}
517
518# overwrite this if you want to run/setup things early
519sub setup_environment {
520 my ($class) = @_;
521
522 # do nothing by default
523}
524
525my $handle_cmd = sub {
c2bcfdb2 526 my ($args, $preparefunc, $param_cb) = @_;
565bbc73
DM
527
528 $cmddef->{help} = [ __PACKAGE__, 'help', ['extra-args'] ];
529
530 my ($cmd, $def, $cmd_args, undef, $cmd_str) = resolve_cmd($args);
531
532 $abort->("no command specified") if !$cmd;
533
534 # call verifyapi before setup_environment(), don't execute any real code in
535 # this case
536 if ($cmd eq 'verifyapi') {
ca3269f4 537 PVE::APIClient::RESTHandler::validate_method_schemas();
565bbc73
DM
538 return;
539 }
540
541 $cli_handler_class->setup_environment();
542
543 if ($cmd eq 'bashcomplete') {
544 &$print_bash_completion(undef, @$cmd_args);
545 return;
546 }
547
548 # checked special commands, if def is still a hash we got an incomplete sub command
50d84256 549 $abort->("incomplete command '$cmd_str'", $args) if ref($def) eq 'HASH';
565bbc73
DM
550
551 &$preparefunc() if $preparefunc;
552
5aa25367 553 my ($class, $name, $arg_param, $uri_param, $outsub, $formatter_properties) = @{$def || []};
565bbc73
DM
554 $abort->("unknown command '$cmd_str'") if !$class;
555
5aa25367
DM
556 my ($res, $formatter_params) = $class->cli_handler(
557 $cmd_str, $name, $cmd_args, $arg_param, $uri_param, $param_cb, $formatter_properties);
565bbc73 558
969b8624 559 if (defined $outsub) {
826591e0 560 my $result_schema = $class->map_method_by_name($name)->{returns};
5aa25367 561 $outsub->($res, $result_schema, $formatter_params);
969b8624 562 }
565bbc73
DM
563};
564
565my $handle_simple_cmd = sub {
c2bcfdb2 566 my ($args, $preparefunc, $param_cb) = @_;
565bbc73 567
5aa25367 568 my ($class, $name, $arg_param, $uri_param, $outsub, $formatter_properties) = @{$cmddef};
565bbc73
DM
569 die "no class specified" if !$class;
570
571 if (scalar(@$args) >= 1) {
572 if ($args->[0] eq 'help') {
573 my $str = "USAGE: $name help\n";
574 $str .= generate_usage_str('long');
575 print STDERR "$str\n\n";
576 return;
577 } elsif ($args->[0] eq 'verifyapi') {
ca3269f4 578 PVE::APIClient::RESTHandler::validate_method_schemas();
565bbc73
DM
579 return;
580 }
581 }
582
583 $cli_handler_class->setup_environment();
584
585 if (scalar(@$args) >= 1) {
586 if ($args->[0] eq 'bashcomplete') {
587 shift @$args;
588 &$print_bash_completion($name, @$args);
589 return;
590 }
591 }
592
593 &$preparefunc() if $preparefunc;
594
5aa25367
DM
595 my ($res, $formatter_params) = $class->cli_handler(
596 $name, $name, \@ARGV, $arg_param, $uri_param, $param_cb, $formatter_properties);
565bbc73 597
969b8624 598 if (defined $outsub) {
826591e0 599 my $result_schema = $class->map_method_by_name($name)->{returns};
5aa25367 600 $outsub->($res, $result_schema, $formatter_params);
969b8624 601 }
565bbc73
DM
602};
603
604sub run_cli_handler {
605 my ($class, %params) = @_;
606
607 $cli_handler_class = $class;
608
609 $ENV{'PATH'} = '/sbin:/bin:/usr/sbin:/usr/bin';
610
611 foreach my $key (keys %params) {
612 next if $key eq 'prepare';
613 next if $key eq 'no_init'; # not used anymore
614 next if $key eq 'no_rpcenv'; # not used anymore
615 die "unknown parameter '$key'";
616 }
617
618 my $preparefunc = $params{prepare};
619
c2bcfdb2 620 my $param_cb = $gen_param_mapping_func->($cli_handler_class);
565bbc73
DM
621
622 $exename = &$get_exe_name($class);
623
bb27fea1
DM
624 my $logid = $ENV{PVE_LOG_ID} || $exename;
625 initlog($logid);
565bbc73
DM
626
627 no strict 'refs';
628 $cmddef = ${"${class}::cmddef"};
629
630 if (ref($cmddef) eq 'ARRAY') {
c2bcfdb2 631 $handle_simple_cmd->(\@ARGV, $preparefunc, $param_cb);
565bbc73 632 } else {
c2bcfdb2 633 $handle_cmd->(\@ARGV, $preparefunc, $param_cb);
565bbc73
DM
634 }
635
636 exit 0;
637}
638
6391;