mirror of
https://git.proxmox.com/git/pve-access-control
synced 2025-10-04 11:58:55 +00:00
update read_user_tfa_type call
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
parent
57098eb8fb
commit
f7f2e28e6d
@ -485,6 +485,12 @@ __PACKAGE__->register_method ({
|
|||||||
additionalProperties => 0,
|
additionalProperties => 0,
|
||||||
properties => {
|
properties => {
|
||||||
userid => get_standard_option('userid-completed'),
|
userid => get_standard_option('userid-completed'),
|
||||||
|
multiple => {
|
||||||
|
type => 'boolean',
|
||||||
|
description => 'Request all entries as an array.',
|
||||||
|
optional => 1,
|
||||||
|
default => 0,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
returns => {
|
returns => {
|
||||||
@ -499,9 +505,23 @@ __PACKAGE__->register_method ({
|
|||||||
user => {
|
user => {
|
||||||
type => 'string',
|
type => 'string',
|
||||||
enum => [qw(oath u2f)],
|
enum => [qw(oath u2f)],
|
||||||
description => "The type of TFA the user has set, if any.",
|
description =>
|
||||||
|
"The type of TFA the user has set, if any."
|
||||||
|
. " Only set if 'multiple' was not passed.",
|
||||||
optional => 1,
|
optional => 1,
|
||||||
},
|
},
|
||||||
|
types => {
|
||||||
|
type => 'array',
|
||||||
|
description =>
|
||||||
|
"Array of the user configured TFA types, if any."
|
||||||
|
. " Only available if 'multiple' was not passed.",
|
||||||
|
optional => 1,
|
||||||
|
items => {
|
||||||
|
type => 'string',
|
||||||
|
enum => [qw(totp u2f yubico webauthn recovedry)],
|
||||||
|
description => 'A TFA type.',
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
type => "object"
|
type => "object"
|
||||||
},
|
},
|
||||||
@ -514,15 +534,24 @@ __PACKAGE__->register_method ({
|
|||||||
my $realm_cfg = $domain_cfg->{ids}->{$realm};
|
my $realm_cfg = $domain_cfg->{ids}->{$realm};
|
||||||
die "auth domain '$realm' does not exist\n" if !$realm_cfg;
|
die "auth domain '$realm' does not exist\n" if !$realm_cfg;
|
||||||
|
|
||||||
|
my $res = {};
|
||||||
my $realm_tfa = {};
|
my $realm_tfa = {};
|
||||||
$realm_tfa = PVE::Auth::Plugin::parse_tfa_config($realm_cfg->{tfa}) if $realm_cfg->{tfa};
|
$realm_tfa = PVE::Auth::Plugin::parse_tfa_config($realm_cfg->{tfa}) if $realm_cfg->{tfa};
|
||||||
|
$res->{realm} = $realm_tfa->{type} if $realm_tfa->{type};
|
||||||
|
|
||||||
my $tfa_cfg = cfs_read_file('priv/tfa.cfg');
|
my $tfa_cfg = cfs_read_file('priv/tfa.cfg');
|
||||||
|
if ($param->{multiple}) {
|
||||||
|
my $tfa = $tfa_cfg->get_user($username);
|
||||||
|
my $user = [];
|
||||||
|
foreach my $type (keys %$tfa) {
|
||||||
|
next if !scalar($tfa->{$type}->@*);
|
||||||
|
push @$user, $type;
|
||||||
|
}
|
||||||
|
$res->{user} = $user;
|
||||||
|
} else {
|
||||||
my $tfa = $tfa_cfg->{users}->{$username};
|
my $tfa = $tfa_cfg->{users}->{$username};
|
||||||
|
|
||||||
my $res = {};
|
|
||||||
$res->{realm} = $realm_tfa->{type} if $realm_tfa->{type};
|
|
||||||
$res->{user} = $tfa->{type} if $tfa->{type};
|
$res->{user} = $tfa->{type} if $tfa->{type};
|
||||||
|
}
|
||||||
return $res;
|
return $res;
|
||||||
}});
|
}});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user