]> i-scream Git - www.i-scream.org.git/blobdiff - cgi-bin/cvslog.cgi
Move to https where possible.
[www.i-scream.org.git] / cgi-bin / cvslog.cgi
index bb2dc3f7388ee882d955e28221baac44d388046e..49bb105d23840ff7a41f30fd941527448d7007fe 100755 (executable)
-#!/usr/bin/perl
+#!/usr/bin/perl -w
 
+use CGI qw/:standard/;
+$query=new CGI;
+my($period)=$query->param('period');
+$period = "today" unless defined $period;
+my($modulelist)=$query->param('module');
+my $moduleext=""; $moduleext=":$modulelist" if defined $modulelist;
+
+my($firstdate);
+if($period eq "days") {
+    my($days)=$query->param('days');
+    $days = 1 unless defined $days;
+    if ($days < 1) {$days = 1};
+    $heading = "i-scream CVS$moduleext commits in the past $days day(s)";
+    $days--;
+    $firstdate = ">" . `/bin/date -v-${days}d +%Y/%m/%d`;
+}
+elsif($period eq "date") {
+    my($date)=$query->param('date');
+    $date = `/bin/date +%Y/%m/%d` unless defined $date;
+    $heading = "i-scream CVS$moduleext commits on $date";
+    $firstdate = "$date 00:00<$date 23:59"
+}
+elsif($period eq "since") {
+    my($date)=$query->param('date');
+    $date = `/bin/date +%Y/%m/%d` unless defined $date;
+    $heading = "i-scream CVS$moduleext commits since $date";
+    $firstdate = ">$date";
+}
+elsif($period eq "thisweek") {
+    $firstdate = ">last Sunday";
+    $heading = "i-scream CVS$moduleext commits this week";
+}
+else {
+    # default to "today only"
+    $firstdate = ">" . `/bin/date +%Y/%m/%d`;
+    $heading = "Today's i-scream CVS$moduleext commits";
+}
+
+my($cvsroot) = "/cvs/i-scream";
+
+$modulelist = `ls $cvsroot` unless defined $modulelist;
+$modulelist =~ s/[\r\n]/ /gm;
+
+my($cvs2clpath) = "/usr/local/bin/cvs2cl";
+my($cvs2clargs) = "--stdout --no-wrap --no-common-dir -r -t -w -S -U $cvsroot/CVSROOT/users -l \"-d$firstdate\" -g \"-d$cvsroot\" -g \"-Q\"";
+my($updatecmd) = "/home/iscream/bin/fullcvsupdate.sh $modulelist";
+my($logcmd) = "cd /tmp/i-scream/cvstmp && $cvs2clpath $cvs2clargs";
+
+my ($incdir) = "../htdocs";
+
+# Include files
+my ($doctype) = "$incdir/doctype.inc";
+my ($style) = "$incdir/style.inc";
+my ($header) = "$incdir/header.inc";
+my ($footer) = "$incdir/footer.inc";
+my ($menu) = "$incdir/menu-static.inc" ;
+
+# Section markers
+my ($secwho) = 1;
+my ($secfiles) = 2;
+my ($seclog) = 3;
+
+# This should be application/xhtml+xml
 print "Content-type: text/html\n\n";
 
-my($today) = `date \"+%Y/%m/%d\"`;
-my($cvs) = "/home/cut/tdb1/bin/cvs";
-my($cvs2clpath) = "/home/cut/tdb1/bin/cvs2cl";
-my($cvsroot) = "/usr/local/proj/co600_10/cvs";
-my($cvs2clargs) = "--stdout -r -b -t -w -U $cvsroot/CVSROOT/users -l \"-d'\>$today'\" -g \"-d$cvsroot\" -g \"-Q\"";
-my($cmd) = "cd /home/cut/tdb1/cvsscripttemp && $cvs -d $cvsroot -Q update -d && $cvs2clpath $cvs2clargs *";
+&print_html($doctype);
 
-my(@lines) = `$cmd 2>&1`;
+print <<"END";
+
+  <head>
+    <title>
+      i-scream CVS Commit Logs
+    </title>
+END
+
+&print_html($style);
 
 print <<"END";
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 
-<html>
+  </head>
+  <body>
+    <div id="container">
+      <div id="main">
+END
 
-<head>
- <title>The i-scream Project Daily Commit Log</title>
- <meta name="description" content="The i-scream Project is a central 
-monitoring system for Unix, Linux and NT servers.">
- <meta name="keywords" content="i-scream, project, central monitoring 
-system, unix, linux, nt, server, alert">
- <meta name="generator" content="notepad on acid, aye.">
-</head>
+&print_html($header);
 
-<body bgcolor="#ffffff" link="#0000ff" alink="#3333cc" vlink="#3333cc" 
-text="#000066">
+print <<"END";
 
-<a href="http://www.i-scream.org.uk"><img border="0" src="../i-scream.gif"></a>
+        <div id="contents">
+          <h1 class="top">
+            i-scream CVS Commit Logs
+          </h1>
+          <h2>
+            $heading
+          </h2>
+          <div id="cvslog">
+END
 
-<h3>Today's i-scream CVS commits</h3>
+print `$updatecmd >/dev/null 2>&1`;
 
-<a href="viewcvs.cgi">Browse i-scream CVS repository</a>
+my(@modules) = split (/\s+/, $modulelist);
 
-<pre>
+foreach my $module (@modules) {
+    my($firstentry) = 1;
+    my($sec) = 0;
+    print <<"END";
+            <div>
+              <h3>
+                <a href="https://cvs.i-scream.org/$module/" class="cvsloghead">$module module</a>
+              </h3>
 END
 
-foreach my $line (@lines) {
-    print HTML_encode($line);
+    my(@lines) = `$logcmd $module 2>&1`;
+    if(@lines == 0) {
+        print <<"END";
+              <p>
+                There have been no commits in this module during this period.
+              </p>
+END
+    }
+    else {
+        my(@log) = ();
+        foreach my $line (@lines) {
+
+            if ($line =~ /^([0-9]{4}-[0-9]{2}-[0-9]{2}.*?)\s+([^\s]+)(\s+<([^\s]+)>)?$/) {
+                my($datetime) = escapeHTML($1);
+                my($committer) = escapeHTML($2);
+                my($email) = $4;
+
+                if($sec != $secwho) {
+                    if($sec == $seclog) {
+                        @log = &trim_array(@log);
+                        foreach my $logline (@log) {
+                            $logline =~ s/^\t//;
+                            print escapeHTML("$logline\n");
+                        }
+                        @log = ();
+                        print <<"END";
+</pre>
+              </div>
+END
+                    }
+                    if($firstentry) {
+                        $firstentry = 0;
+                        print <<"END";
+              <div class="logitemfirst">
+END
+                    }
+                    else {
+                        print <<"END";
+              <div class="logitem">
+END
+                    }
+                    $sec = $secwho;
+                }
+
+                print <<"END";
+                <p>
+                  <b>
+                    $datetime
+                  </b>
+                  committed by
+END
+                if(defined $email) {
+                    print <<"END";
+                  <a href="mailto:$email">$committer</a>
+END
+                }
+                else {
+                    print <<"END";
+                  $committer
+END
+                }
+                print <<"END";
+                </p>
+END
+            }
+            elsif($line =~ /([^\s]+) (\([^,^\)]+(,[^\)]+)?\))([,:])/) {
+                my ($file, $rev, $tags, $ext) = ($1, $2, $3, $4);
+                $ext = escapeHTML($ext);
+                if($sec != $secfiles) {
+                    $sec = $secfiles;
+                    print <<"END";
+                <p>
+END
+                }
+                $file = escapeHTML($file);
+                print <<"END";
+                  <a href="https://cvs.i-scream.org/$file">$file</a>
+END
+                if($rev =~ /\(([^\s]+)\.(\d+)(.*)\)/) {
+                    my $start = $1;
+                    my $end = $2;
+                    my $other = $3;
+                    my $newrev = "$start.$end";
+                    my $oldrev;
+                    if($end != 1) {
+                        my $oldminver = $end-1;
+                        $oldrev = "$start.$oldminver";
+                    }
+                    elsif($start =~ /^((\d+\.)+)(\d+)$/) {
+                        $oldrev = $1;
+                        # take trailing . off old revision
+                        chop $oldrev;
+                    }
+                    if(defined $oldrev) {
+                        my $diff = ".diff?r1=$oldrev&amp;r2=$newrev";
+                        my $startend = escapeHTML("$start.$end");
+                        $other = escapeHTML($other);
+                        chomp $other;
+                        print <<"END";
+                  (<a href="https://cvs.i-scream.org/$file$diff">$startend</a>$other)$ext
+END
+                    }
+                    else {
+                        $rev = escapeHTML($rev);
+                        print <<"END";
+                  $rev$ext
+END
+                    }
+                }
+                else {
+                    $rev = escapeHTML($rev);
+                    print <<"END";
+                  $rev$ext
+END
+                }
+                if($ext !~ /:$/) {
+                    print <<"END";
+                  <br />
+END
+                }
+            }
+            else {
+                next if $sec == $secwho; # not done secfiles yet
+                if($sec != $seclog) {
+                    $sec = $seclog;
+                    print <<"END";
+                </p>
+                <pre>
+END
+                }
+                chomp $line;
+                push(@log, $line);
+            }
+        }
+        if($sec == $seclog) {
+            @log = &trim_array(@log);
+            foreach my $logline (@log) {
+                $logline =~ s/^\t//;
+                print escapeHTML("$logline\n");
+            }
+            @log = ();
+            print <<"END";
+</pre>
+              </div>
+END
+        }
+    }
+    print <<"END";
+            </div>
+END
 }
 
 print <<"END";
-</pre>
-</body>
+          </div>
+        </div>
+END
+
+&print_html($footer);
+
+print <<"END";
 
+      </div>
+END
+
+&print_html($menu);
+
+print <<"END";
+
+    </div>
+  </body>
 </html>
 END
 
 exit 0;
 
-#------------------------------------------------------
-# sub HTML_encode
-#
-# escape HTML characters that may cause problems when
-# shown either in the <body> or within text fields.
-#------------------------------------------------------
-sub HTML_encode ($){
-    my ($encoded) = @_;
-    $encoded =~ s/&/&amp;/g;
-    $encoded =~ s/"/&quot;/g;
-    $encoded =~ s/</&lt;/g;
-    $encoded =~ s/>/&gt;/g;
-    return $encoded;
+# Print the contents of a file containing html
+sub print_html {
+    my ($filename) = @_;
+    open(FILE, $filename);
+    while(<FILE>) {
+        print;
+    }
+    close FILE;
 }
 
+# Trim an array (remove beginning and end emptry entries)
+sub trim_array {
+   my (@array) = @_;
+   for(my $i = 0; $i < scalar @array; $i++) {
+       if($array[$i] ne "") {
+           splice @array, 0, $i;
+           last;
+       }
+   }
+   for(my $i = scalar @array - 1; $i >= 0; $i--) {
+       if($array[$i] ne "") {
+           splice @array, $i+1;
+           last;
+       }
+   }
+   return @array;
+}