display dates as real dates in Excel export, #23121, update for current RT
[freeside.git] / rt / share / html / Search / Elements / ResultsStructuredView
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 => undef
50 $OrderBy => 'id'
51 $Order => 'ASC'
52 $Format => undef
53
54 #Callbacks
55 $WriteHeader => sub { $RT::Logger->error('WriteHeader callback required'); '' }
56 $WriteRow    => sub { $RT::Logger->error('WriteRow callback required'); '' }
57 </%ARGS>
58 <%INIT>
59
60 use HTML::TreeBuilder;
61 use HTML::FormatText;
62
63 my $Tickets = RT::Tickets->new( $session{'CurrentUser'} );
64 $Tickets->FromSQL( $Query );
65 if ( $OrderBy =~ /\|/ ) {
66     # Multiple Sorts
67     my @OrderBy = split /\|/, $OrderBy;
68     my @Order   = split /\|/, $Order;
69     $Tickets->OrderByCols(
70         map { { FIELD => $OrderBy[$_], ORDER => $Order[$_] } }
71         ( 0 .. $#OrderBy )
72     );
73 }
74 else {
75     $Tickets->OrderBy( FIELD => $OrderBy, ORDER => $Order );
76 }
77
78 # Convert the format string to column info
79 $Format = $m->comp('/Elements/ScrubHTML', Content => $Format);
80 my @Format = $m->comp('/Elements/CollectionAsTable/ParseFormat', 
81                       Format => $Format);
82
83 # Generate the header row
84 my $item = 0;
85 my @header;
86 foreach my $column (@Format) {
87 # see /Element/CollectionAsTable/Header
88     my $title = $column->{'title'} || '';
89     if ( $title eq 'NEWLINE' ) {
90         # ignore these for now
91         undef $column;
92         next;
93     }
94     $title = '' if $title eq 'NBSP';
95
96     if ( !defined $column->{'title'} ) {
97         my $attr = $column->{'attribute'} || $column->{'last_attribute'};
98         my $tmp = $m->comp( '/Elements/ColumnMap',
99                 Class => 'RT__Ticket',
100                 Name  => $attr,
101                 Attr  => 'title'
102                 );
103         $title = ProcessColumnMapValue($tmp, Arguments => [ $attr ]);
104     }
105
106     push @header, $title;
107
108 } #foreach $column
109
110 &{ $WriteHeader }(@header);
111
112 my $plaintext = HTML::FormatText->new;
113 my $row = 1;
114 my $ColumnMap = {};
115 while ( my $Ticket = $Tickets->Next()) {
116     my $height = 0;
117     my @row = ();
118     foreach my $column ( @Format ) {
119         next if !defined $column;
120
121         my $value = '';
122         my @out;
123         # Ignore almost all formatting here.
124         foreach my $subcol ( @{ $column->{output} } ) {
125             my ($col) = ($subcol =~ /^__(.*?)__$/ );
126
127             if ( !$col ) {
128                 push @out, $subcol;
129                 next;
130             }
131
132             if ( !exists $ColumnMap->{$col}{'value'} ) {
133                 my $map = {};
134                 foreach ('attribute', 'value') {
135                     $map->{$_} = $m->comp(
136                         '/Elements/ColumnMap',
137                         Class => 'RT__Ticket',
138                         Name  => $col,
139                         Attr  => $_,
140                     );
141                 }
142                 $ColumnMap->{$col} = $map;
143             }
144
145             push @out, ProcessColumnMapValue(
146                 $ColumnMap->{$col}{'value'},
147                 Arguments => [ $Ticket, $row ],
148             );
149         } #foreach $subcol
150         $value = join('', '<span>', @out, '</span>');
151         # strip out all HTML except line breaks
152         my $tree = HTML::TreeBuilder->new->parse($value);
153         my $text = $plaintext->format($tree);
154         # along with leading/trailing whitespace
155         my @lines = map { s/^\s*//; s/\s*$//; $_ } split("\n", $text);
156
157         # then provide separate lines to the callback
158         push @row, \@lines;
159     } #foreach $column
160
161     &{ $WriteRow }(@row);
162
163 } # while $Tickets->Next
164
165 </%INIT>