c57a61793d4744f6ac4a09281f523d483e770489
[buildfarm-server.git] / cgi-bin / show_history.pl
1 #!/usr/bin/perl
2
3 =comment
4
5 Copyright (c) 2003-2010, Andrew Dunstan
6
7 See accompanying License file for license details
8
9 =cut 
10
11 use strict;
12 use DBI;
13 use Template;
14 use CGI;
15
16 use vars qw($dbhost $dbname $dbuser $dbpass $dbport $template_dir);
17
18 use FindBin qw($RealBin);
19 require "$RealBin/../BuildFarmWeb.pl";
20
21 die "no dbname" unless $dbname;
22 die "no dbuser" unless $dbuser;
23
24 my $dsn="dbi:Pg:dbname=$dbname";
25 $dsn .= ";host=$dbhost" if $dbhost;
26 $dsn .= ";port=$dbport" if $dbport;
27
28 my $db = DBI->connect($dsn,$dbuser,$dbpass);
29
30 die $DBI::errstr unless $db;
31
32 my $query = new CGI;
33 my $member = $query->param('nm'); $member =~ s/[^a-zA-Z0-9_ -]//g;
34 my $branch = $query->param('br'); $branch =~ s/[^a-zA-Z0-9_ -]//g;
35 my $hm = $query->param('hm');  $hm =~ s/[^a-zA-Z0-9_ -]//g;
36 $hm = '240' unless $hm =~ /^\d+$/;
37
38 my $latest_personality = $db->selectrow_arrayref(q{
39             select os_version, compiler_version
40             from personality
41             where name = ?
42             order by effective_date desc limit 1
43         }, undef, $member);
44
45 my $systemdata = q{
46     select operating_system, os_version, compiler, compiler_version, architecture,
47       owner_email, sys_notes_ts::date AS sys_notes_date, sys_notes
48     from buildsystems b
49     where b.status = 'approved'
50         and name = ?
51 };
52
53 my $statement = qq{
54    with x as 
55    (  select * 
56       from build_status_recent_500
57       where sysname = ? 
58          and branch = ?
59    ) 
60    select (now() at time zone 'GMT')::timestamp(0) - snapshot as when_ago, 
61             sysname, snapshot, status, stage 
62    from x 
63    order by snapshot desc  
64    limit $hm
65 }
66 ;
67
68 my $sth = $db->prepare($systemdata);
69 $sth->execute($member);
70 my $sysrow = $sth->fetchrow_hashref;
71 my $statrows=[];
72 $sth=$db->prepare($statement);
73 $sth->execute($member,$branch);
74 while (my $row = $sth->fetchrow_hashref)
75 {
76     last unless $sysrow;
77     while (my($k,$v) = each %$sysrow) { $row->{$k} = $v; }
78     $row->{owner_email} =~ s/\@/ [ a t ] /;
79     if ($latest_personality)
80     {
81         $row->{os_version} = $latest_personality->[0];
82         $row->{compiler_version} = $latest_personality->[1];
83     }
84     push(@$statrows,$row);
85 }
86
87 $sth->finish;
88
89 $db->disconnect;
90
91 my $template_opts = { INCLUDE_PATH => $template_dir, EVAL_PERL => 1 };
92 my $template = new Template($template_opts);
93
94 print "Content-Type: text/html\n\n";
95
96 $template->process('history.tt',
97                    {statrows=>$statrows, 
98                     branch=>$branch, 
99                     member => $member,
100                     hm => $hm
101                     });
102
103 exit;