CSV download, #10855
[freeside.git] / rt / share / html / Search / Results.tsv
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %#
3 %# COPYRIGHT:
4 %#
5 %# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
6 %#                                          <sales@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 LastUpdatedByObj->Name
96 );
97
98 $r->content_type('text/tab-separated-values');
99 $r->header_out('Content-Disposition' => 'attachment;filename="Results.tsv"');
100 {
101     my @header;
102     foreach my $attr (@attrs) {
103         my $label = $attr;
104         $label =~ s'Obj-.(?:AsString|Name|ISO)''g;
105         $label =~ s'-\>MemberEmailAddressesAsString''g;
106         push @header, $label;
107     }
108
109     $_ += @header - 1 foreach values %cf_name_to_pos;
110
111     foreach my $name ( sort { $cf_name_to_pos{$a} <=> $cf_name_to_pos{$b} } keys %cf_name_to_pos ) {
112         push @header, "CF-". $name;
113     }
114     $m->out(join("\t", @header));
115     $m->out("\n");
116     $m->flush_buffer;
117 }
118
119 my $i = 0;
120 while ( my $Ticket = $Tickets->Next()) {
121     my @row;
122     foreach my $attr (@attrs) {
123         my $value;
124         if ($attr =~ /(.*)->ISO$/ and $Ticket->$1->Unix <= 0) {
125             $value = '';
126         } else {
127             my $method = '$Ticket->'.$attr.'()';
128             $method =~ s/->ISO\(\)$/->ISO( Timezone => 'user' )/;
129             $value = eval $method;
130             if ($@) {die "Failed to find $attr - ". $@}; 
131         }
132         push @row, $value;
133     }
134
135     my $values = $Ticket->CustomFieldValues;
136     $values->OrderByCols; # don't sort them
137     while (my $value = $values->Next) {
138         my $pos = $cf_name_to_pos{ $cf_id_to_name{ $value->CustomField } };
139         next unless $pos;
140
141         $row[$pos] = '' unless defined $row[$pos];
142         $row[$pos] .= ', ' if $row[$pos];
143         $row[$pos] .= $value->Content;
144     }
145
146     # remove tabs from all field values, they screw up the tsv
147     for (@row) {
148         $_ = '' unless defined;
149         $_ =~ s/(?:\n|\r)//g;
150         $_ =~ s{\t}{    }g;
151     }
152
153     $m->out(join("\t",@row));
154     $m->out("\n");
155
156     unless (++$i%10) {
157         $i = 0;
158         $m->flush_buffer;
159     }
160 }
161
162 $m->abort();
163 </%INIT>