--- loncom/configuration/SSL.pm 2016/08/07 04:18:21 1.4 +++ loncom/configuration/SSL.pm 2019/04/12 02:41:47 1.9 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Checksum installed LON-CAPA modules and some configuration files # -# $Id: SSL.pm,v 1.4 2016/08/07 04:18:21 raeburn Exp $ +# $Id: SSL.pm,v 1.9 2019/04/12 02:41:47 raeburn Exp $ # # The LearningOnline Network with CAPA # @@ -31,7 +31,7 @@ package LONCAPA::SSL; use strict; use lib '/home/httpd/lib/perl/'; -use Apache::lonlocal(); +use Apache::lonlocal; use Apache::lonnet(); use Apache::loncommon(); use Apache::lonhtmlcommon(); @@ -48,7 +48,7 @@ sub print_certstatus { 'avai' => 'Available', 'yes' => 'Yes', 'no' => 'No', - 'cn' => 'Common Name', + 'cn' => 'Common Name (CN)', 'start' => 'Valid From', 'end' => 'Valid To', 'alg' => 'Signature Algorithm', @@ -61,14 +61,21 @@ sub print_certstatus { 'ca' => 'LON-CAPA CA Certificate', 'expired' => 'Expired', 'future' => 'Future validity', + 'nokey' => 'No key', + 'otherkey' => 'No matching key', + 'revoked' => 'Revoked by CA', + 'wrongcn' => 'Incorrect CN', + 'mismatch' => 'Mismatched Issuer', ); my @files = qw(key host hostname ca); my @fields = qw(status cn start end alg size email); foreach my $server (sort(keys(%{$servers}))) { - my ($result,$hashref) = &Apache::lonnet::get_servercerts_info($server,$context); + my $hostname = $servers->{$server}; + my ($result,$hashref) = &Apache::lonnet::get_servercerts_info($server, + $hostname, + $context); if ($result eq 'ok' && ref($hashref) eq 'HASH') { if ($target eq 'web') { - my $hostname = &Apache::lonnet::hostname($server); $message .= "
$hostname ($server)". &Apache::loncommon::start_data_table(). &Apache::loncommon::start_data_table_header_row()."\n"; @@ -79,6 +86,7 @@ sub print_certstatus { } else { $message .= $server.':'; } + my %csr; foreach my $file (@files) { if ($target eq 'web') { $message .= &Apache::loncommon::start_data_table_row()."\n". @@ -86,12 +94,12 @@ sub print_certstatus { } else { $message .= $file.'='; } - if (ref($hashref->{$file}) eq 'HASH') { + if ((ref($hashref->{$file}) eq 'HASH') && (keys(%{$hashref->{$file}}) > 0)) { my ($starttime,$endtime,$dateinvalid); if ($target eq 'web') { $message .= ''.$lt{'yes'}.''; } else { - $message .= $lt{'yes'}.','; + $message .= 'yes,'; } unless ($file eq 'key') { if ($hashref->{$file}->{'end'} ne '') { @@ -99,7 +107,11 @@ sub print_certstatus { if (ref($dt)) { $endtime = $dt->epoch; if ($endtime < time) { - $dateinvalid = $lt{'expired'}; + if ($target eq 'web') { + $dateinvalid = $lt{'expired'}; + } else { + $dateinvalid = 'expired'; + } } } } @@ -109,7 +121,11 @@ sub print_certstatus { $starttime = $dt->epoch; if ($starttime > time) { unless ($dateinvalid) { - $dateinvalid = $lt{'future'}; + if ($target eq 'web') { + $dateinvalid = $lt{'future'}; + } else { + $dateinvalid = 'future'; + } } } } @@ -136,6 +152,20 @@ sub print_certstatus { } elsif ($target eq 'web') { $display = &Apache::lonhtmlcommon::confirm_success($display); } + } elsif (($display eq 'nokey') || ($display eq 'otherkey') || + ($display eq 'revoked') || ($display eq 'expired') || + ($display eq 'wrongcn') || ($display eq 'mismatch')) { + if ($target eq 'web') { + $display = $lt{$display}; + } + if (ref($hashref->{$file.'-csr'}) eq 'HASH') { + if ($hashref->{$file.'-csr'}->{$item} eq 'ok') { + if ($target eq 'web') { + $display .= '
'.&mt('(New request awaiting signature)'); + } + $csr{$file} = 1; + } + } } } elsif ($item eq 'start') { if ($starttime) { @@ -162,13 +192,27 @@ sub print_certstatus { } } else { if ($target eq 'web') { - $message .= ''.$lt{'no'}.''; + $message .= ''.$lt{'no'}.''; } else { - $message .= $lt{'no'}.','; + $message .= 'no,'; + } + if ((($file eq 'host') || ($file eq 'hostname')) && + (ref($hashref->{$file.'-csr'}) eq 'HASH')) { + if ($hashref->{$file.'-csr'}->{'status'} eq 'ok') { + if ($target eq 'web') { + my $colspan = scalar(@fields); + $message .= ''. + &mt('Request for [_1] awaiting signature', + $lt{$file}).''; + } + $csr{$file} = 1; + } } foreach my $item (@fields) { if ($target eq 'web') { - $message .= ' '; + unless ($csr{$file}) { + $message .= ' '; + } } else { $message .= ','; } @@ -184,6 +228,18 @@ sub print_certstatus { if ($target eq 'web') { $message .= &Apache::loncommon::end_data_table().'
'; } else { + if (keys(%csr)) { + foreach my $file (keys(%csr)) { + if (ref($hashref->{$file.'-csr'}) eq 'HASH') { + $message .= $file.'-csr=yes,'; + foreach my $item (@fields) { + $message .= $hashref->{$file.'-csr'}->{$item}.','; + } + $message =~ s/,$//; + $message .= '&'; + } + } + } $message =~ s/\&$//; } $message .= "\n";