import rt 3.6.4
[freeside.git] / rt / html / Search / Chart
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %# 
3 %# COPYRIGHT:
4 %#  
5 %# This software is Copyright (c) 1996-2007 Best Practical Solutions, LLC 
6 %#                                          <jesse@bestpractical.com>
7 %# 
8 %# (Except where explicitly superseded by other copyright notices)
9 %# 
10 %# 
11 %# LICENSE:
12 %# 
13 %# This work is made available to you under the terms of Version 2 of
14 %# the GNU General Public License. A copy of that license should have
15 %# been provided with this software, but in any event can be snarfed
16 %# from www.gnu.org.
17 %# 
18 %# This work is distributed in the hope that it will be useful, but
19 %# WITHOUT ANY WARRANTY; without even the implied warranty of
20 %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21 %# General Public License for more details.
22 %# 
23 %# You should have received a copy of the GNU General Public License
24 %# along with this program; if not, write to the Free Software
25 %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
26 %# 02110-1301 or visit their web page on the internet at
27 %# http://www.gnu.org/copyleft/gpl.html.
28 %# 
29 %# 
30 %# CONTRIBUTION SUBMISSION POLICY:
31 %# 
32 %# (The following paragraph is not intended to limit the rights granted
33 %# to you to modify and distribute this software under the terms of
34 %# the GNU General Public License and is only of importance to you if
35 %# you choose to contribute your changes and enhancements to the
36 %# community by submitting them to Best Practical Solutions, LLC.)
37 %# 
38 %# By intentionally submitting any modifications, corrections or
39 %# derivatives to this work, or any other work intended for use with
40 %# Request Tracker, to Best Practical Solutions, LLC, you confirm that
41 %# you are the copyright holder for those contributions and you grant
42 %# Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
43 %# royalty-free, perpetual, license to use, copy, create derivative
44 %# works based on those contributions, and sublicense and distribute
45 %# those contributions and any derivatives thereof.
46 %# 
47 %# END BPS TAGGED BLOCK }}}
48 <%args>
49 $Query => "id > 0"
50 $PrimaryGroupBy => 'Queue'
51 $SecondaryGroupBy => undef
52 $ChartStyle => 'bars'
53 </%args>
54 <%init>
55 my @keys;
56 my @values;
57 my $chart_class;
58 use GD;
59 use GD::Text;
60
61 if ($ChartStyle eq 'pie') {
62     require GD::Graph::pie;
63     $chart_class = "GD::Graph::pie";
64 } else {
65     require GD::Graph::bars;
66     $chart_class = "GD::Graph::bars";
67 }
68
69 use RT::Report::Tickets;
70 my $tix = RT::Report::Tickets->new( $session{'CurrentUser'} );
71 $tix->FromSQL( $Query );
72 my $count_name = $tix->Column( FUNCTION => 'COUNT', FIELD => 'id' );
73 $tix->GroupBy( FIELD => $PrimaryGroupBy );
74 my $value_name = $tix->Column( FIELD => $PrimaryGroupBy );
75
76 my $chart = $chart_class->new( 600 => 400 );
77 if ($chart_class eq "GD::Graph::bars") {
78     $chart->set(
79         x_label => $tix->Label( $PrimaryGroupBy ),
80         x_labels_vertical => 1,
81         y_label => 'Tickets',
82         show_values => 1
83     );
84     $chart->set_legend_font( ['verdana', 'arial', gdMediumBoldFont], 12);
85 }
86
87 my %class = (
88     Queue => 'RT::Queue',
89     Owner => 'RT::User',
90 );
91 my $class = $class{ $PrimaryGroupBy };
92
93 while ( my $entry = $tix->Next ) {
94     if ( $class ) {
95         my $q = $class->new( $session{'CurrentUser'} );
96         $q->Load( $entry->__Value( $value_name ) );
97         push @keys, $q->Name;
98     }
99     else {
100         push @keys, $entry->__Value($value_name);
101     }
102
103     $keys[-1] ||= loc('(no value)');
104     if ($chart_class eq 'GD::Graph::pie') {
105         $keys[-1] .= " - ". $entry->__Value( $count_name );
106     }
107     push @values, $entry->__Value($count_name);
108 }
109
110 # XXX: Convert 1970-01-01 date to the 'Not Set'
111 # this code should be generalized!!!
112 if ( $PrimaryGroupBy =~ /(Daily|Monthly|Annually)$/ ) {
113     my $re;
114     $re = qr{1970-01-01} if $PrimaryGroupBy =~ /Daily$/;
115     $re = qr{1970-01} if $PrimaryGroupBy =~ /Monthly$/;
116     $re = qr{1970} if $PrimaryGroupBy =~ /Annually$/;
117     foreach (@keys) {
118         s/^$re/loc('Not Set')/e;
119     }   
120 }
121
122 unless (@keys && @values) {
123     @keys = ('');
124     @values = (0);
125 }
126
127 my %data;
128 foreach my $key (@keys) { $data{$key} = shift @values; }
129 my @sorted_keys = sort @keys;
130 my @sorted_values = map { $data{$_}} @sorted_keys;
131
132
133
134 my $plot = $chart->plot( [ [@sorted_keys], [@sorted_values] ] ) or die $chart->error;
135
136 if ( $plot->can('png') ) {
137     $r->content_type('image/png');
138     $m->out( $plot->png );
139 }
140 elsif ( $plot->can('gif') ) {
141     $r->content_type('image/gif');
142     $m->out( $plot->gif );
143 }
144 else { 
145     die "Your GD library appears to support neither PNG nor GIF";
146 }
147 $m->abort();
148 </%init>