]> git.proxmox.com Git - pve-client.git/blob - PVE/APIClient/Commands/remote.pm
0c3d17a8c3757b1ab50416c6c6c3340376899c72
[pve-client.git] / PVE / APIClient / Commands / remote.pm
1 package PVE::APIClient::Commands::remote;
2
3 use strict;
4 use warnings;
5
6 use PVE::JSONSchema qw(get_standard_option);
7 use PVE::APIClient::Tools qw(extract_param);
8 use PVE::APIClient::Config;
9
10 use PVE::CLIHandler;
11
12 use PVE::APIClient::LWP;
13 use PVE::PTY ();
14
15 use base qw(PVE::CLIHandler);
16
17 sub read_password {
18 return PVE::PTY::read_password("Remote password: ")
19 }
20
21 __PACKAGE__->register_method ({
22 name => 'list',
23 path => 'list',
24 method => 'GET',
25 description => "List remotes from your config file.",
26 parameters => {
27 additionalProperties => 0,
28 },
29 returns => { type => 'null' },
30 code => sub {
31 my $config = PVE::APIClient::Config->load();
32
33 printf("%10s %10s %10s %10s %100s\n", "Name", "Host", "Port", "Username", "Fingerprint");
34 for my $name (keys %{$config->{ids}}) {
35 my $data = $config->{ids}->{$name};
36 next if $data->{type} ne 'remote';
37 printf("%10s %10s %10s %10s %100s\n", $name, $data->{'host'},
38 $data->{'port'} // '-', $data->{'username'}, $data->{'fingerprint'} // '-');
39 }
40
41 return undef;
42 }});
43
44 __PACKAGE__->register_method ({
45 name => 'add',
46 path => 'add',
47 method => 'POST',
48 description => "Add a remote to your config file.",
49 parameters => PVE::APIClient::RemoteConfig->createSchema(1),
50 returns => { type => 'null'},
51 code => sub {
52 my ($param) = @_;
53
54 # fixme: lock config file
55
56 my $remote = $param->{name};
57
58 my $config = PVE::APIClient::Config->load();
59
60 die "Remote '$remote' already exists\n"
61 if $config->{ids}->{$remote};
62
63 my $last_fp = 0;
64
65 my $password = $param->{password};
66 if (!defined($password)) {
67 $password = PVE::PTY::read_password("Remote password: ");
68 }
69
70 my $setup = {
71 username => $param->{username},
72 password => $password,
73 host => $param->{host},
74 port => $param->{port} // 8006,
75 };
76
77 if ($param->{fingerprint}) {
78 $setup->{cached_fingerprints} = {
79 $param->{fingerprint} => 1,
80 };
81 } else {
82 $setup->{manual_verification} = 1;
83 $setup->{register_fingerprint_cb} = sub {
84 my $fp = shift @_;
85 $last_fp = $fp;
86 };
87 }
88
89 my $api = PVE::APIClient::LWP->new(%$setup);
90 $api->login();
91
92 $param->{fingerprint} = $last_fp if !defined($param->{fingerprint});
93 my $plugin = PVE::APIClient::Config->lookup('remote');
94 my $opts = $plugin->check_config($remote, $param, 1, 1);
95 $config->{ids}->{$remote} = $opts;
96
97 PVE::APIClient::Config->save($config);
98
99 return undef;
100 }});
101
102 __PACKAGE__->register_method ({
103 name => 'update',
104 path => 'update',
105 method => 'PUT',
106 description => "Update a remote configuration.",
107 parameters => PVE::APIClient::RemoteConfig->updateSchema(1),
108 returns => { type => 'null'},
109 code => sub {
110 my ($param) = @_;
111
112 # fixme: lock config file
113
114 my $name = extract_param($param, 'name');
115 my $digest = extract_param($param, 'digest');
116 my $delete = extract_param($param, 'delete');
117
118 my $config = PVE::APIClient::Config->load();
119 my $remote = PVE::APIClient::Config->lookup_remote($config, $name);
120
121 my $plugin = PVE::APIClient::Config->lookup('remote');
122 my $opts = $plugin->check_config($name, $param, 0, 1);
123
124 foreach my $k (%$opts) {
125 $remote->{$k} = $opts->{$k};
126 }
127
128 if ($delete) {
129 my $options = $plugin->private()->{options}->{'remote'};
130 foreach my $k (PVE::APIClient::Tools::APIClient::split_list($delete)) {
131 my $d = $options->{$k} ||
132 die "no such option '$k'\n";
133 die "unable to delete required option '$k'\n"
134 if !$d->{optional};
135 die "unable to delete fixed option '$k'\n"
136 if $d->{fixed};
137 delete $remote->{$k};
138 }
139 }
140
141 PVE::APIClient::Config->save($config);
142
143 return undef;
144 }});
145
146 __PACKAGE__->register_method ({
147 name => 'remove',
148 path => 'remove',
149 method => 'DELETE',
150 description => "Removes a remote from your config file.",
151 parameters => {
152 additionalProperties => 0,
153 properties => {
154 name => get_standard_option('pveclient-remote-name'),
155 },
156 },
157 returns => { type => 'null'},
158 code => sub {
159 my ($param) = @_;
160
161 # fixme: lock config
162
163 my $config = PVE::APIClient::Config->load();
164 delete $config->{ids}->{$param->{name}};
165 PVE::APIClient::Config->save($config);
166
167 return undef;
168 }});
169
170 our $cmddef = {
171 add => [ __PACKAGE__, 'add', ['name', 'host', 'username']],
172 update => [ __PACKAGE__, 'update', ['name']],
173 remove => [ __PACKAGE__, 'remove', ['name']],
174 list => [__PACKAGE__, 'list'],
175 };
176
177 1;