Use SSL/TLS when configured to do so.
[mirror/userdir-ldap-cgi.git] / machines.cgi
1 #!/usr/bin/perl
2 # $Id: machines.cgi,v 1.12 2006/12/27 23:00:04 rmurray Exp $
3
4 # (c) 1999 Randolph Chung. Licensed under the GPL. <tausq@debian.org>
5 # (c) 2004 Martin Schulze. Licensed under the GPL. <joey@debian.org>
6 # (c) 2006 Ryan Murray. Licensed under the GPL. <rmurray@debian.org>
7 # (c) 2008 Martin Zobel-Helas. Licensed under the GPL. <zobel@debian.org>
8
9 use lib '.';
10 use strict vars;
11 #use Apache::Registry;
12 use CGI;
13 use Util;
14 use Net::LDAP qw(:all);
15 use Fcntl;
16 use POSIX;
17 use MIME::Base64;
18 use Digest::MD5 qw(md5_hex);
19
20 my (%attrs, @attrorder, %summaryattrs, @summaryorder);
21
22 # This defines the description of the fields, and which fields are retrieved
23 %attrs = ('hostname' => 'Host name',
24           'admin' => 'Admin contact',
25           'architecture' => 'Architecture',
26           'distribution' => 'Distribution',
27           'access' => 'Access',
28           'sponsor' => 'Sponsor',
29           'sponsor-admin' => 'Sponsor admin',
30           'location' => 'Location',
31           'machine' => 'Processor',
32           'memory' => 'Memory',
33           'disk' => 'Disk space',
34           'bandwidth' => 'Bandwidth',
35           'status' => 'Status',
36           'notes' => 'Notes',
37           'sshrsahostkey' => 'SSH host key',
38           'sshrsahostfprint' => 'SSH host fingerprint',
39           'description' => 'Description',
40           'purpose' => 'purposes of this server',
41 #         'createtimestamp' => 'Entry created',
42 #         'modifytimestamp' => 'Entry modified'
43          );
44
45 # This defines what fields are displayed, and in what order
46 @attrorder = qw(hostname admin architecture distribution access
47                 sponsor sponsor-admin location machine memory
48                 disk bandwidth status notes sshrsahostkey sshrsahostfprint
49                 description purpose);
50
51 # ditto for summary
52 %summaryattrs = ('hostname' => 'Host name',
53                  'host'     => 'just for a link',
54                  'architecture' => 'Architecture',
55                  'distribution' => 'Distribution',
56                  'status' => 'Status',
57                  'access' => 'Access');
58                  
59 @summaryorder = ('hostname', 'architecture', 'distribution', 'status', 'access');                
60
61 # Global settings...
62 my %config = &Util::ReadConfigFile;
63
64 my ($ldap, $mesg, $dn, $entries, $data, %output, $key, $hostlist, $hostdetails, $selected, %summary);
65 sub DieHandler {
66   $ldap->unbind if (defined($ldap));
67 }
68
69 # human readable fingerprint
70 sub sshfingerprint {
71     my $key = shift;
72
73     return '' if (!$key);
74
75     my @field = split(/ /, $key);
76     return '' if $field[0] ne 'ssh-dss' and $field[0] ne 'ssh-rsa';
77     return '' if !$field[1];
78     my $fpr = md5_hex(decode_base64($field[1]));
79     my $hrfpr = $field[0] . " " . substr($fpr,0,2,"");
80     while (length $fpr > 0) {
81        $hrfpr .= ':' . substr($fpr,0,2,"");
82     }
83     return $hrfpr;
84 }
85
86 $SIG{__DIE__} = \&DieHandler;
87
88 my $query = new CGI;
89 my $host = lc($query->param('host'));
90 my $sortby = lc($query->param('sortby')) || "host";
91 my $sortorder = lc($query->param('sortorder')) || "asc";
92
93 &Util::HTMLSendHeader;
94 $ldap = Net::LDAP->new($config{ldaphost}) || &Util::HTMLError($!);
95 &Util::UpgradeConnection($ldap) unless $config{usessl} eq 'False';
96 $mesg;
97 $ldap->bind;
98
99 $mesg = $ldap->search(base  => $config{hostbasedn}, filter => 'host=*');
100 $mesg->code && &Util::HTMLError($mesg->error);
101 $entries = $mesg->as_struct;
102
103 foreach $dn (sort {$entries->{$a}->{host}->[0] cmp $entries->{$b}->{host}->[0]} keys(%$entries)) {
104   $data = $entries->{$dn};
105
106   my $thishost = $data->{host}->[0];
107   $selected = "";
108   
109   if (lc($thishost) eq $host) {
110     $output{havehostdata} = 1;
111
112     foreach $key (keys(%attrs)) {
113       $output{$key} = $data->{$key}->[0];
114     }
115   
116     $output{hostname} = undef;
117     foreach my $hostname (@{$data->{hostname}}) {
118       $output{hostname} .= sprintf("%s%s", ($output{hostname} ? ', ' : ''), $hostname);
119     }
120
121     # Modified/created time. TODO: maybe add is the name of the creator/modifier
122     $output{modifytimestamp} = &Util::FormatTimestamp($output{modifytimestamp});
123     $output{createtimestamp}  = &Util::FormatTimestamp($output{createtimestamp});
124     
125     # Format email addresses
126     $output{admin} = sprintf("<a href=\"mailto:%s\">%s</a>", $output{admin}, $output{admin});
127     $output{'sponsor-admin'} = sprintf("<a href=\"mailto:%s\">%s</a>", $output{'sponsor-admin'}, $output{'sponsor-admin'});
128
129     $output{sshrsahostkey} = undef;
130     foreach $key (@{$data->{sshrsahostkey}}) {
131       $output{sshrsahostkey} .= $key . "<br>";
132     }
133
134     foreach $key (@{$data->{sshrsahostkey}}) {
135       $output{sshrsahostfprint} .= sshfingerprint($key) . "<br>";
136     }
137     
138     # URL
139     my ($sponsor, $url) = undef;
140     $output{sponsor} = undef;
141     foreach $sponsor (@{$data->{sponsor}}) {
142       $sponsor =~ m#((http|ftp)://\S+)#i;
143       $url = $1;
144       $sponsor =~ s/\s*$url\s*//;
145       $output{sponsor} .= "<br>" if ($output{sponsor});
146       if ($url) {
147         $output{sponsor} .= sprintf("<a href=\"%s\">%s</a>", $url, $sponsor);
148       } else {
149         $output{sponsor} .= $sponsor;
150       }
151     }
152
153         #Reformat purposes to be pleasing for the human eye:
154         $output{purpose} = join(",", @{$data->{purpose}});
155     
156     $selected = " selected ";    
157   }
158   
159   $hostlist .= "<option value=\"$thishost\"$selected>$thishost\n";
160   
161   # collect summary info
162   foreach $key (keys(%summaryattrs)) {
163     $summary{$thishost}{$key} = $data->{$key}->[0];
164   }
165   
166   $summary{$thishost}{hostname} = undef;
167   foreach my $hostname (@{$data->{hostname}}) {
168     $summary{$thishost}{hostname} .= sprintf("%s<a href=\"machines.cgi?host=%s\">%s</a>", ($summary{$thishost}{hostname} ? '<br>' : ''), $summary{$thishost}{host}, $hostname);
169   }
170 }
171 $ldap->unbind;
172
173 if ($output{havehostdata}) {
174   $hostdetails = "<h1>Information about $output{hostname}</h1>\n";
175   $hostdetails .= "<ul>\n";
176   foreach $key (@attrorder) {
177     if ($output{$key}) {
178       $hostdetails .= "<li><b>$attrs{$key}:</b>$output{$key}\n";
179     }
180   }
181   $hostdetails .= "</ul>\n";
182 } else {
183   # display summary info
184   $hostdetails = "<h1>Summary</h1>\n";
185   $hostdetails .= "<table border=\"1\" width=\"90%\">\n<tr>";
186   foreach $key (@summaryorder) {
187     if ($sortby ne $key) {
188       $hostdetails .= "<th><a href=\"machines.cgi?sortby=$key&sortorder=asc\">$summaryattrs{$key}</a></th>";
189     } else {
190       if ($sortorder ne "dsc") {
191         $hostdetails .= "<th><a href=\"machines.cgi?sortby=$key&sortorder=dsc\">$summaryattrs{$key}</a></th>";
192       } else {
193         $hostdetails .= "<th><a href=\"machines.cgi?sortby=$key&sortorder=asc\">$summaryattrs{$key}</a></th>";
194       }
195     }
196   }
197   $hostdetails .= "</tr>\n";
198   
199   my @sorted;
200   if ($sortorder eq "asc") {
201      @sorted = sort {($summary{$a}->{$sortby} cmp $summary{$b}->{$sortby}) || ($summary{$a}->{'host'} cmp $summary{$b}->{'host'})} keys(%summary)
202   } else {
203      @sorted = sort {($summary{$b}->{$sortby} cmp $summary{$a}->{$sortby}) || ($summary{$a}->{'host'} cmp $summary{$b}->{'host'})} keys(%summary)
204   }
205   foreach $host (@sorted) {
206     $hostdetails .= "<tr>";
207     foreach $key (@summaryorder) {
208       $hostdetails .= "<td>$summary{$host}{$key}&nbsp;</td>";
209     }
210     $hostdetails .= "</tr>\n";
211   }
212   $hostdetails .= "</table>\n";
213 }
214
215 # Finally, we can write the output... yuck...
216 open (F, "<$config{hosthtml}") || &Util::HTMLError("Cannot open host template");
217 while (<F>) {
218   s/~hostlist~/$hostlist/;
219   s/~hostdetails~/$hostdetails/;
220   print;
221 }
222 close F;