#!/usr/bin/perl # $Id: admingraph.cgi,v 1.4 2006/05/13 01:13:01 jonz Exp $ # DSPAM # COPYRIGHT (C) 2002-2006 JONATHAN A. ZDZIARSKI # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; version 2 # of the License. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. use CGI ':standard'; use GD::Graph::bars; use strict; use vars qw { %CONFIG %FORM @spam @nonspam @period @data @inoc @sm @fp @wh }; # Read configuration parameters common to all CGI scripts require "configure.pl"; %FORM = &ReadParse(); GD::Graph::colour::read_rgb("rgb.txt"); do { my($spam, $nonspam, $sm, $fp, $inoc, $wh, $period) = split(/\_/, $FORM{'data'}); @spam = split(/\,/, $spam); @nonspam = split(/\,/, $nonspam); @sm = split(/\,/, $sm); @fp = split(/\,/, $fp); @inoc = split(/\,/, $inoc); @wh = split(/\,/, $wh); @period = split(/\,/, $period); }; @data = ([@period], [@inoc], [@wh], [@spam], [@nonspam], [@sm], [@fp]); my $mygraph = GD::Graph::bars->new(500, 250); $mygraph->set( x_label => "$FORM{'x_label'}", y_label => 'Number of Messages', title => "$FORM{'title'}", legend_placement => 'RT', legend_spacing => 2, bar_width => 4, bar_spacing => 0, long_ticks => 1, legend_marker_height => 4, show_values => 0, boxclr => 'gray90', cumulate => 1, x_labels_vertical => 1, y_tick_number => 4, fgclr => 'gray85', boxclr => 'gray95', textclr => 'black', legendclr => 'black', labelclr => 'gray60', axislabelclr => 'gray40', borderclrs => [ undef ], dclrs => [ qw ( mediumblue purple red green yellow orange ) ] ) or warn $mygraph->error; if ($CONFIG{'3D_GRAPHS'} == 1) { $mygraph->set( shadowclr => 'darkgray', shadow_depth => 3, bar_width => 3, bar_spacing => 2, borderclrs => [ qw ( black ) ] ) or warn $mygraph->error; } $mygraph->set_legend_font(GD::gdMediumBoldFont); $mygraph->set_legend(' Inoculations',' Auto-Whitelisted',' Spam', ' Nonspam',' Spam Misses',' False Positives'); my $myimage = $mygraph->plot(\@data) or die $mygraph->error; print "Content-type: image/png\n\n"; print $myimage->png; sub ReadParse { my(@pairs, %FORM); if ($ENV{'REQUEST_METHOD'} =~ /GET/i) { @pairs = split(/&/, $ENV{'QUERY_STRING'}); } else { my($buffer); read(STDIN, $buffer, $ENV{'CONTENT_LENGTH'}); @pairs = split(/\&/, $buffer); } foreach(@pairs) { my($name, $value) = split(/\=/, $_); $name =~ tr/+/ /; $name =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg; $value =~ tr/+/ /; $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg; $value =~ s///g; $FORM{$name} = $value; } return %FORM; }