Initial commit
[buildfarm-server.git] / cgi-bin / show_history2.pl
1 #!/usr/bin/perl
2
3 use strict;
4 use DBI;
5 use Template;
6 use CGI;
7
8 use vars qw($dbhost $dbname $dbuser $dbpass $dbport);
9
10
11 require "$ENV{BFConfDir}/BuildFarmWeb.pl";
12 #require "BuildFarmWeb.pl";
13
14 die "no dbname" unless $dbname;
15 die "no dbuser" unless $dbuser;
16
17 my $dsn="dbi:Pg:dbname=$dbname";
18 $dsn .= ";host=$dbhost" if $dbhost;
19 $dsn .= ";port=$dbport" if $dbport;
20
21 my $db = DBI->connect($dsn,$dbuser,$dbpass);
22
23 die $DBI::errstr unless $db;
24
25 my $query = new CGI;
26 my $member = $query->param('nm');
27 my $branch = $query->param('br');
28
29 # we don't really need to do this join, since we only want
30 # one row from buildsystems. but it means we only have to run one
31 # query. If it gets heavy we'll split it up and run two
32
33 my $statement = <<EOS;
34
35   select (now() at time zone 'GMT')::timestamp(0) - snapshot as when_ago,
36       sysname, snapshot, b.status, stage,
37       operating_system, os_version, compiler, compiler_version, architecture 
38   from buildsystems s, 
39        build_status b 
40   where name = ?
41         and branch = ?
42         and s.status = 'approved'
43         and name = sysname
44   order by snapshot desc
45   limit 240
46
47 EOS
48 ;
49
50 my $statrows=[];
51 my $sth=$db->prepare($statement);
52 $sth->execute($member,$branch);
53 while (my $row = $sth->fetchrow_hashref)
54 {
55         push(@$statrows,$row);
56 }
57 $sth->finish;
58
59 $db->disconnect;
60
61 my $template = new Template({EVAL_PERL => 1, 
62                              INCLUDE_PATH => "/home/community/pgbuildfarm/templates",
63                                 });
64
65 print "Content-Type: text/html\n\n";
66
67 $template->process("dyn/history.tt",
68         {statrows=>$statrows, branch=>$branch, member => $member});
69