c4600c66eee68725687e8343a7b64bb94d9fab2c
[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-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 {
107     my @header;
108     foreach my $attr (@attrs) {
109         my $label = $attr;
110         $label =~ s'Obj-.(?:AsString|Name|ISO)''g;
111         $label =~ s'-\>MemberEmailAddressesAsString''g;
112         push @header, $label;
113     }
114
115     $_ += @header - 1 foreach values %cf_name_to_pos;
116
117     foreach my $name ( sort { $cf_name_to_pos{$a} <=> $cf_name_to_pos{$b} } keys %cf_name_to_pos ) {
118         push @header, "CF-". $name;
119     }
120     my $ws_col = 0;
121     foreach my $ws_val ( @header ) {
122         $worksheet->write(0, $ws_col, $ws_val);
123         $ws_col++;
124     }
125 }
126
127 my $i = 0;
128 my $ws_row = 1;
129 while ( my $Ticket = $Tickets->Next()) {
130     my @row;
131     foreach my $attr (@attrs) {
132         my $value;
133         if ($attr =~ /(.*)->ISO$/ and $Ticket->$1->Unix <= 0) {
134             $value = '';
135         } else {
136             my $method = '$Ticket->'.$attr.'()';
137             $method =~ s/->ISO\(\)$/->ISO( Timezone => 'user' )/;
138             $value = eval $method;
139             if ($@) {die "Failed to find $attr - ". $@}; 
140         }
141         push @row, $value;
142     }
143
144     my $values = $Ticket->CustomFieldValues;
145     $values->OrderByCols; # don't sort them
146     while (my $value = $values->Next) {
147         my $pos = $cf_name_to_pos{ $cf_id_to_name{ $value->CustomField } };
148         next unless $pos;
149
150         $row[$pos] = '' unless defined $row[$pos];
151         $row[$pos] .= ', ' if $row[$pos];
152         $row[$pos] .= $value->Content;
153     }
154
155     my $ws_col = 0;
156     foreach my $ws_val ( @row ) {
157         $worksheet->write($ws_row, $ws_col, $ws_val);
158         $ws_col++;
159     }
160     $ws_row++;
161
162     unless (++$i%10) {
163         $i = 0;
164         $m->flush_buffer;
165     }
166 }
167
168 $workbook->close;
169 close($fh);
170 $m->print($xls);
171 $m->abort();
172 </%INIT>