import rt 3.8.7
[freeside.git] / rt / share / html / Search / Results.tsv
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 my $Tickets = RT::Tickets->new( $session{'CurrentUser'} );
56 $Tickets->FromSQL( $Query );
57 if ( $OrderBy =~ /\|/ ) {
58     # Multiple Sorts
59     my @OrderBy = split /\|/, $OrderBy;
60     my @Order   = split /\|/, $Order;
61     $Tickets->OrderByCols(
62         map { { FIELD => $OrderBy[$_], ORDER => $Order[$_] } }
63         ( 0 .. $#OrderBy )
64     );
65 }
66 else {
67     $Tickets->OrderBy( FIELD => $OrderBy, ORDER => $Order );
68 }
69
70 my %cf_id_to_name;
71 my %cf_name_to_pos;
72 {
73     my $cfs = RT::SQL::PossibleCustomFields(
74         Query => $Query, CurrentUser => $session{'CurrentUser'},
75     );
76     while ( my $cf = $cfs->Next ) {
77         my $name = $cf->Name;
78         $cf_id_to_name{ $cf->id } = $name;
79         next if $cf_name_to_pos{ $name };
80
81         $cf_name_to_pos{ $name } = 
82             (sort { $b <=> $a } values %cf_name_to_pos)[0] + 1;
83     }
84 }
85
86 my @attrs = qw(
87     id QueueObj->Name Subject Status
88     TimeEstimated TimeWorked TimeLeft
89     Priority FinalPriority
90     OwnerObj->Name 
91     Requestors->MemberEmailAddressesAsString
92     Cc->MemberEmailAddressesAsString
93     AdminCc->MemberEmailAddressesAsString
94     DueObj->ISO ToldObj->ISO CreatedObj->ISO
95     ResolvedObj->ISO LastUpdatedObj->ISO
96 );
97
98 $r->content_type('application/vnd.ms-excel');
99 {
100     my @header;
101     foreach my $attr (@attrs) {
102         my $label = $attr;
103         $label =~ s'Obj-.(?:AsString|Name|ISO)''g;
104         $label =~ s'-\>MemberEmailAddressesAsString''g;
105         push @header, $label;
106     }
107
108     $_ += @header - 1 foreach values %cf_name_to_pos;
109
110     foreach my $name ( sort { $cf_name_to_pos{$a} <=> $cf_name_to_pos{$a} } keys %cf_name_to_pos ) {
111         push @header, "CF-". $name;
112     }
113     $m->out(join("\t", @header));
114     $m->out("\n");
115     $m->flush_buffer;
116 }
117
118 my $i = 0;
119 while ( my $Ticket = $Tickets->Next()) {
120     my @row;
121     foreach my $attr (@attrs) {
122         my $value;
123         if ($attr =~ /(.*)->ISO$/ and $Ticket->$1->Unix <= 0) {
124             $value = '';
125         } else {
126             my $method = '$Ticket->'.$attr.'()';
127             $method =~ s/->ISO\(\)$/->ISO( Timezone => 'user' )/;
128             $value = eval $method;
129             if ($@) {die "Failed to find $attr - ". $@}; 
130         }
131         push @row, $value;
132     }
133
134     my $values = $Ticket->CustomFieldValues;
135     $values->OrderByCols; # don't sort them
136     while (my $value = $values->Next) {
137         my $pos = $cf_name_to_pos{ $cf_id_to_name{ $value->CustomField } };
138         next unless $pos;
139
140         $row[$pos] = '' unless defined $row[$pos];
141         $row[$pos] .= ', ' if $row[$pos];
142         $row[$pos] .= $value->Content;
143     }
144
145     # remove tabs from all field values, they screw up the tsv
146     for (@row) {
147         $_ = '' unless defined;
148         $_ =~ s/(?:\n|\r)//g;
149         $_ =~ s{\t}{    }g;
150     }
151
152     $m->out(join("\t",@row));
153     $m->out("\n");
154
155     unless (++$i%10) {
156         $i = 0;
157         $m->flush_buffer;
158     }
159 }
160
161 $m->abort();
162 </%INIT>