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