]> git.proxmox.com Git - pve-access-control.git/blame - PVE/API2/Domains.pm
PVE/API2/Domains.pm: fix property description
[pve-access-control.git] / PVE / API2 / Domains.pm
CommitLineData
2c3a6c0a
DM
1package PVE::API2::Domains;
2
3use strict;
4use warnings;
5bb4e06a 5use PVE::Tools qw(extract_param);
2c3a6c0a
DM
6use PVE::Cluster qw (cfs_read_file cfs_write_file);
7use PVE::AccessControl;
8use PVE::JSONSchema qw(get_standard_option);
9
10use PVE::SafeSyslog;
2c3a6c0a 11use PVE::RESTHandler;
5bb4e06a 12use PVE::Auth::Plugin;
2c3a6c0a
DM
13
14my $domainconfigfile = "domains.cfg";
15
16use base qw(PVE::RESTHandler);
17
18__PACKAGE__->register_method ({
19 name => 'index',
20 path => '',
21 method => 'GET',
22 description => "Authentication domain index.",
82b63965
DM
23 permissions => {
24 description => "Anyone can access that, because we need that list for the login box (before the user is authenticated).",
25 user => 'world',
26 },
2c3a6c0a
DM
27 parameters => {
28 additionalProperties => 0,
29 properties => {},
30 },
31 returns => {
32 type => 'array',
33 items => {
34 type => "object",
35 properties => {
36 realm => { type => 'string' },
96f8ebd6
DM
37 tfa => {
38 description => "Two-factor authentication provider.",
39 type => 'string',
1abc2c0a 40 enum => [ 'yubico', 'oath' ],
96f8ebd6
DM
41 optional => 1,
42 },
52b2eff3
DM
43 comment => {
44 description => "A comment. The GUI use this text when you select a domain (Realm) on the login window.",
45 type => 'string',
46 optional => 1,
47 },
2c3a6c0a
DM
48 },
49 },
50 links => [ { rel => 'child', href => "{realm}" } ],
51 },
52 code => sub {
53 my ($param) = @_;
54
55 my $res = [];
56
57 my $cfg = cfs_read_file($domainconfigfile);
5bb4e06a
DM
58 my $ids = $cfg->{ids};
59
60 foreach my $realm (keys %$ids) {
61 my $d = $ids->{$realm};
2c3a6c0a
DM
62 my $entry = { realm => $realm, type => $d->{type} };
63 $entry->{comment} = $d->{comment} if $d->{comment};
64 $entry->{default} = 1 if $d->{default};
96f8ebd6
DM
65 if ($d->{tfa} && (my $tfa_cfg = PVE::Auth::Plugin::parse_tfa_config($d->{tfa}))) {
66 $entry->{tfa} = $tfa_cfg->{type};
67 }
2c3a6c0a
DM
68 push @$res, $entry;
69 }
70
71 return $res;
72 }});
73
74__PACKAGE__->register_method ({
75 name => 'create',
76 protected => 1,
77 path => '',
78 method => 'POST',
96919234 79 permissions => {
82b63965 80 check => ['perm', '/access/realm', ['Realm.Allocate']],
96919234 81 },
2c3a6c0a 82 description => "Add an authentication server.",
5bb4e06a 83 parameters => PVE::Auth::Plugin->createSchema(),
2c3a6c0a
DM
84 returns => { type => 'null' },
85 code => sub {
86 my ($param) = @_;
87
5bb4e06a 88 PVE::Auth::Plugin::lock_domain_config(
2c3a6c0a
DM
89 sub {
90
91 my $cfg = cfs_read_file($domainconfigfile);
5bb4e06a 92 my $ids = $cfg->{ids};
2c3a6c0a 93
5bb4e06a
DM
94 my $realm = extract_param($param, 'realm');
95 my $type = $param->{type};
2c3a6c0a
DM
96
97 die "domain '$realm' already exists\n"
5bb4e06a 98 if $ids->{$realm};
2c3a6c0a
DM
99
100 die "unable to use reserved name '$realm'\n"
101 if ($realm eq 'pam' || $realm eq 'pve');
102
5bb4e06a
DM
103 die "unable to create builtin type '$type'\n"
104 if ($type eq 'pam' || $type eq 'pve');
af4a8a85 105
5bb4e06a
DM
106 my $plugin = PVE::Auth::Plugin->lookup($type);
107 my $config = $plugin->check_config($realm, $param, 1, 1);
2c3a6c0a 108
5bb4e06a
DM
109 if ($config->{default}) {
110 foreach my $r (keys %$ids) {
111 delete $ids->{$r}->{default};
0c156363 112 }
af4a8a85
DM
113 }
114
5bb4e06a
DM
115 $ids->{$realm} = $config;
116
2c3a6c0a
DM
117 cfs_write_file($domainconfigfile, $cfg);
118 }, "add auth server failed");
119
120 return undef;
121 }});
122
123__PACKAGE__->register_method ({
124 name => 'update',
125 path => '{realm}',
126 method => 'PUT',
96919234 127 permissions => {
82b63965 128 check => ['perm', '/access/realm', ['Realm.Allocate']],
96919234 129 },
2c3a6c0a
DM
130 description => "Update authentication server settings.",
131 protected => 1,
5bb4e06a 132 parameters => PVE::Auth::Plugin->updateSchema(),
2c3a6c0a
DM
133 returns => { type => 'null' },
134 code => sub {
135 my ($param) = @_;
136
5bb4e06a 137 PVE::Auth::Plugin::lock_domain_config(
2c3a6c0a
DM
138 sub {
139
140 my $cfg = cfs_read_file($domainconfigfile);
5bb4e06a 141 my $ids = $cfg->{ids};
2c3a6c0a 142
5bb4e06a
DM
143 my $digest = extract_param($param, 'digest');
144 PVE::SectionConfig::assert_if_modified($cfg, $digest);
145
146 my $realm = extract_param($param, 'realm');
2c3a6c0a 147
2c3a6c0a 148 die "domain '$realm' does not exist\n"
5bb4e06a
DM
149 if !$ids->{$realm};
150
151 my $delete_str = extract_param($param, 'delete');
152 die "no options specified\n" if !$delete_str && !scalar(keys %$param);
2c3a6c0a 153
5bb4e06a
DM
154 foreach my $opt (PVE::Tools::split_list($delete_str)) {
155 delete $ids->{$realm}->{$opt};
2c3a6c0a 156 }
5bb4e06a
DM
157
158 my $plugin = PVE::Auth::Plugin->lookup($ids->{$realm}->{type});
159 my $config = $plugin->check_config($realm, $param, 0, 1);
2c3a6c0a 160
5bb4e06a
DM
161 if ($config->{default}) {
162 foreach my $r (keys %$ids) {
163 delete $ids->{$r}->{default};
2c3a6c0a
DM
164 }
165 }
166
5bb4e06a
DM
167 foreach my $p (keys %$config) {
168 $ids->{$realm}->{$p} = $config->{$p};
af4a8a85
DM
169 }
170
2c3a6c0a
DM
171 cfs_write_file($domainconfigfile, $cfg);
172 }, "update auth server failed");
173
174 return undef;
175 }});
176
177# fixme: return format!
178__PACKAGE__->register_method ({
179 name => 'read',
180 path => '{realm}',
181 method => 'GET',
182 description => "Get auth server configuration.",
96919234 183 permissions => {
82b63965 184 check => ['perm', '/access/realm', ['Realm.Allocate', 'Sys.Audit'], any => 1],
96919234 185 },
2c3a6c0a
DM
186 parameters => {
187 additionalProperties => 0,
188 properties => {
189 realm => get_standard_option('realm'),
190 },
191 },
192 returns => {},
193 code => sub {
194 my ($param) = @_;
195
196 my $cfg = cfs_read_file($domainconfigfile);
197
198 my $realm = $param->{realm};
199
5bb4e06a 200 my $data = $cfg->{ids}->{$realm};
2c3a6c0a
DM
201 die "domain '$realm' does not exist\n" if !$data;
202
5bb4e06a
DM
203 $data->{digest} = $cfg->{digest};
204
2c3a6c0a
DM
205 return $data;
206 }});
207
208
209__PACKAGE__->register_method ({
210 name => 'delete',
211 path => '{realm}',
212 method => 'DELETE',
96919234 213 permissions => {
82b63965 214 check => ['perm', '/access/realm', ['Realm.Allocate']],
96919234 215 },
2c3a6c0a
DM
216 description => "Delete an authentication server.",
217 protected => 1,
218 parameters => {
219 additionalProperties => 0,
220 properties => {
221 realm => get_standard_option('realm'),
222 }
223 },
224 returns => { type => 'null' },
225 code => sub {
226 my ($param) = @_;
227
5bb4e06a 228 PVE::Auth::Plugin::lock_domain_config(
2c3a6c0a
DM
229 sub {
230
231 my $cfg = cfs_read_file($domainconfigfile);
5bb4e06a 232 my $ids = $cfg->{ids};
2c3a6c0a
DM
233
234 my $realm = $param->{realm};
235
5bb4e06a 236 die "domain '$realm' does not exist\n" if !$ids->{$realm};
2c3a6c0a 237
5bb4e06a 238 delete $ids->{$realm};
2c3a6c0a
DM
239
240 cfs_write_file($domainconfigfile, $cfg);
241 }, "delete auth server failed");
242
243 return undef;
244 }});
245
2461;