dataset/seed/lemonldap/templates/interne_well_known.pl

22 lines
633 B
Perl
Raw Normal View History

2023-06-23 08:12:05 +02:00
#!/usr/bin/env perl
# retrieve and modify (if no argument) well-known file
2022-03-08 19:42:28 +01:00
use HTTP::Tiny;
use JSON qw(from_json to_json);
2023-06-23 08:12:05 +02:00
my $baseUrl = 'https://{{ general.network.interface_0.domain_name_eth0 }}/';
2022-03-08 19:42:28 +01:00
my $response = HTTP::Tiny->new->get('http://localhost/.well-known/openid-configuration');
die "Failed!\n" unless $response->{success};
my $json = from_json($response->{content});
2023-06-23 08:12:05 +02:00
$num_args = $#ARGV + 1;
if ($num_args == 0) {
$json->{token_endpoint} = $baseUrl . 'oauth2/token';
$json->{userinfo_endpoint} = $baseUrl . 'oauth2/userinfo';
$json->{jwks_uri} = $baseUrl . 'oauth2/jwks';
}
2022-03-08 19:42:28 +01:00
printf to_json($json) . "\n";