9951a7756503014022088bc9db6c1eb8c3577b08
[manu/RT-Extension-SearchResults-XLS.git] / html / Search / Results.xls
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %# 
3 %# COPYRIGHT:
4 %# 
5 %# This software is Copyright (c) 1996-2008 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 $OrderBy => 'id'
50 $Order => 'ASC'
51 </%ARGS>
52 <%INIT>
53
54 use Spreadsheet::WriteExcel;
55 my $xls;
56 my $fh;
57 open ($fh, ">",  \$xls) or die "$!";
58 my $workbook = Spreadsheet::WriteExcel->new($fh) or die $!;
59 my $worksheet = $workbook->add_worksheet();
60
61 my $Tickets = RT::Tickets->new( $session{'CurrentUser'} );
62 $Tickets->FromSQL( $ARGS{'Query'} );
63 if ( $OrderBy =~ /\|/ ) {
64
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 else {
73   $Tickets->OrderBy( FIELD => $OrderBy, ORDER => $Order );
74 }
75
76 my @rows;
77 my %known_cfs;
78
79 my @attrs = qw( id QueueObj->Name Subject Status TimeEstimated TimeWorked TimeLeft Priority FinalPriority OwnerObj->Name 
80                 Requestors->MemberEmailAddressesAsString Cc->MemberEmailAddressesAsString AdminCc->MemberEmailAddressesAsString
81                 DueObj->ISO ToldObj->ISO CreatedObj->ISO ResolvedObj->ISO LastUpdatedObj->ISO);
82
83 $r->content_type('application/vnd.ms-excel');
84 while ( my $Ticket = $Tickets->Next()) {
85     my $row;
86     foreach my $attr (@attrs) {
87         if ($attr =~ /(.*)->ISO$/ and $Ticket->$1->Unix <= 0) {
88             $row->{$attr} = "";
89         } else {
90             my $method = '$Ticket->'.$attr.'()';
91             $method =~ s/->ISO\(\)$/->ISO( Timezone => 'user' )/;
92             $row->{$attr} = eval $method;
93             if ($@) {die "Failed to find $attr - ". $@}; 
94         }
95     }
96
97     my $cfs = $Ticket->QueueObj->TicketCustomFields();
98     while (my $cf = $cfs->Next) {
99         $known_cfs{$cf->Id} = $cf->Name;
100         my @content;
101         my $values = $Ticket->CustomFieldValues($cf->Id);
102         while (my $value = $values->Next) {
103             push @content, $value->Content;
104         }
105         $row->{'CustomField-'.$cf->Id} = join(', ',@content);
106     }
107     push @rows, $row;
108 }
109
110
111     my @header;
112     my $ws_col = 0;
113     foreach my $attr (@attrs) {
114         my $label = $attr;
115         $label =~ s'Obj-.(?:AsString|Name|ISO)''g;
116         $label =~ s'-\>MemberEmailAddressesAsString''g;
117         $worksheet->write(0, $ws_col, $label);
118         $ws_col++;
119     }
120     foreach my $id (sort keys %known_cfs) {
121         $worksheet->write(0, $ws_col, "CF-".$known_cfs{$id});
122         $ws_col++;
123     }
124 }
125
126 my $ws_row = 1;
127 foreach my $row (@rows) {
128     my $ws_col = 0;
129     my @row;
130     foreach my $attr(@attrs) {
131         $worksheet->write($ws_row, $ws_col, $row->{"$attr"});
132         $ws_col++;
133     }
134     foreach my $id (sort keys %known_cfs) {
135         my $val = $row->{'CustomField-'.$id};
136         $worksheet->write($ws_row, $ws_col, $val);
137         $ws_col++;
138     }
139     $ws_row++;
140 }
141
142 $workbook->close;
143 close($fh);
144 $m->print($xls);
145 $m->abort();
146 </%INIT>