]> git.proxmox.com Git - proxmox-acme.git/blame - src/PVE/ACME/StandAlone.pm
plugins: refactor setup/teardown signatures
[proxmox-acme.git] / src / PVE / ACME / StandAlone.pm
CommitLineData
5460050d
WL
1package PVE::ACME::StandAlone;
2
3use strict;
4use warnings;
5
6use HTTP::Daemon;
7use HTTP::Response;
8
9use base qw(PVE::ACME::Challenge);
10
11sub supported_challenge_types {
12 return { 'http-01' => 1 };
13}
14
435e1726
WL
15sub type {
16 return 'standalone';
17}
18
19sub properties {
20 return {};
21}
22
23sub options {
24 return {
25 nodes => { optional => 1 },
26 disable => { optional => 1 },
27 };
28}
29
30sub extract_challenge {
31 my ($self, $challenge) = @_;
32
33 return PVE::ACME::Challenge->extract_challenge($challenge, 'http-01');
34}
35
16925001
WL
36sub get_subplugins {
37 return [];
38}
39
5460050d 40sub setup {
f00829fd 41 my ($self, $acme, $auth, $data) = @_;
5460050d 42
d18383f0 43 print "Setting up webserver\n";
5460050d 44
f00829fd
FG
45 my $challenge = $self->extract_challenge($auth->{challenges});
46 my $key_auth = $acme->key_authorization($challenge->{token});
5460050d
WL
47
48 my $server = HTTP::Daemon->new(
49 LocalPort => 80,
50 ReuseAddr => 1,
d18383f0 51 ) or die "Failed to initialize HTTP daemon\n";
5460050d
WL
52 my $pid = fork() // die "Failed to fork HTTP daemon - $!\n";
53 if ($pid) {
d18383f0
WL
54 $data->{server} = $server;
55 $data->{pid} = $pid;
f00829fd 56 $data->{url} = $challenge->{url};
5460050d
WL
57 } else {
58 while (my $c = $server->accept()) {
59 while (my $r = $c->get_request()) {
d18383f0 60 if ($r->method() eq 'GET' and
f00829fd 61 $r->uri->path eq "/.well-known/acme-challenge/$challenge->{token}") {
d18383f0 62 my $resp = HTTP::Response->new(200, 'OK', undef, $key_auth);
5460050d
WL
63 $resp->request($r);
64 $c->send_response($resp);
65 } else {
66 $c->send_error(404, 'Not found.')
67 }
68 }
69 $c->close();
70 $c = undef;
71 }
72 }
73}
74
75sub teardown {
f00829fd 76 my ($self, $acme, $auth, $data) = @_;
5460050d 77
d18383f0
WL
78 eval { $data->{server}->close() };
79 kill('KILL', $data->{pid});
80 waitpid($data->{pid}, 0);
5460050d
WL
81}
82
831;