8b3f11b6474615f8fe16836d35c89bb03689198a
[freeside.git] / rt / share / html / Search / Results.xls
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %# 
3 %# COPYRIGHT:
4 %# 
5 %# This software is Copyright (c) 1996-2009 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/licenses/old-licenses/gpl-2.0.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 => ''
50 $OrderBy => 'id'
51 $Order => 'ASC'
52 </%ARGS>
53 <%INIT>
54
55 use Spreadsheet::WriteExcel;
56 my $xls;
57 my $fh;
58 open ($fh, ">",  \$xls) or die "$!";
59 my $workbook = Spreadsheet::WriteExcel->new($fh) or die $!;
60 my $worksheet = $workbook->add_worksheet();
61
62 my $Tickets = RT::Tickets->new( $session{'CurrentUser'} );
63 $Tickets->FromSQL( $Query );
64 if ( $OrderBy =~ /\|/ ) {
65     # Multiple Sorts
66     my @OrderBy = split /\|/, $OrderBy;
67     my @Order   = split /\|/, $Order;
68     $Tickets->OrderByCols(
69         map { { FIELD => $OrderBy[$_], ORDER => $Order[$_] } }
70         ( 0 .. $#OrderBy )
71     );
72 }
73 else {
74     $Tickets->OrderBy( FIELD => $OrderBy, ORDER => $Order );
75 }
76
77 my %cf_id_to_name;
78 my %cf_name_to_pos;
79 {
80     my $cfs = RT::SQL::PossibleCustomFields(
81         Query => $Query, CurrentUser => $session{'CurrentUser'},
82     );
83     while ( my $cf = $cfs->Next ) {
84         my $name = $cf->Name;
85         $cf_id_to_name{ $cf->id } = $name;
86         next if $cf_name_to_pos{ $name };
87
88         $cf_name_to_pos{ $name } = 
89             (sort { $b <=> $a } values %cf_name_to_pos)[0] + 1;
90     }
91 }
92
93 my @attrs = qw(
94     id QueueObj->Name Subject Status
95     TimeEstimated TimeWorked TimeLeft
96     Priority FinalPriority
97     OwnerObj->Name 
98     Requestors->MemberEmailAddressesAsString
99     Cc->MemberEmailAddressesAsString
100     AdminCc->MemberEmailAddressesAsString
101     DueObj->ISO ToldObj->ISO CreatedObj->ISO
102     ResolvedObj->ISO LastUpdatedObj->ISO
103 );
104
105 $r->content_type('application/vnd.ms-excel');
106 $r->header_out('Content-Disposition' => 'attachment;filename="Results.xls"');
107 {
108     my @header;
109     foreach my $attr (@attrs) {
110         my $label = $attr;
111         $label =~ s'Obj-.(?:AsString|Name|ISO)''g;
112         $label =~ s'-\>MemberEmailAddressesAsString''g;
113         push @header, $label;
114     }
115
116     $_ += @header - 1 foreach values %cf_name_to_pos;
117
118     foreach my $name ( sort { $cf_name_to_pos{$a} <=> $cf_name_to_pos{$b} } keys %cf_name_to_pos ) {
119         push @header, "CF-". $name;
120     }
121     my $ws_col = 0;
122     foreach my $ws_val ( @header ) {
123         $worksheet->write(0, $ws_col, $ws_val);
124         $ws_col++;
125     }
126 }
127
128 my $i = 0;
129 my $ws_row = 1;
130 while ( my $Ticket = $Tickets->Next()) {
131     my @row;
132     foreach my $attr (@attrs) {
133         my $value;
134         if ($attr =~ /(.*)->ISO$/ and $Ticket->$1->Unix <= 0) {
135             $value = '';
136         } else {
137             my $method = '$Ticket->'.$attr.'()';
138             $method =~ s/->ISO\(\)$/->ISO( Timezone => 'user' )/;
139             $value = eval $method;
140             if ($@) {die "Failed to find $attr - ". $@}; 
141         }
142         push @row, $value;
143     }
144
145     my $values = $Ticket->CustomFieldValues;
146     $values->OrderByCols; # don't sort them
147     while (my $value = $values->Next) {
148         my $pos = $cf_name_to_pos{ $cf_id_to_name{ $value->CustomField } };
149         next unless $pos;
150
151         $row[$pos] = '' unless defined $row[$pos];
152         $row[$pos] .= ', ' if $row[$pos];
153         $row[$pos] .= $value->Content;
154     }
155
156     my $ws_col = 0;
157     foreach my $ws_val ( @row ) {
158         $worksheet->write($ws_row, $ws_col, $ws_val);
159         $ws_col++;
160     }
161     $ws_row++;
162
163     unless (++$i%10) {
164         $i = 0;
165         $m->flush_buffer;
166     }
167 }
168
169 $workbook->close;
170 close($fh);
171 $m->print($xls);
172 $m->abort();
173 </%INIT>