88821ab9f981c57fa87ecb5b438ce88d548b664a
[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 #Callbacks
54 $WriteHeader => sub { $RT::Logger->error('WriteHeader callback required'); '' }
55 $WriteRow    => sub { $RT::Logger->error('WriteRow callback required'); '' }
56 </%ARGS>
57 <%INIT>
58
59 use HTML::TreeBuilder;
60 use HTML::FormatText;
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 # Convert the format string to column info
78 $Format = $m->comp('/Elements/ScrubHTML', Content => $Format);
79 my @Format = $m->comp('/Elements/CollectionAsTable/ParseFormat', 
80                       Format => $Format);
81
82 # Generate the header row
83 my $item = 0;
84 my @header;
85 foreach my $column (@Format) {
86 # see /Element/CollectionAsTable/Header
87     my $title = $column->{'title'} || '';
88     if ( $title eq 'NEWLINE' ) {
89         # ignore these for now
90         undef $column;
91         next;
92     }
93     $title = '' if $title eq 'NBSP';
94
95     if ( !defined $column->{'title'} ) {
96         my $attr = $column->{'attribute'} || $column->{'last_attribute'};
97         my $tmp = $m->comp( '/Elements/ColumnMap',
98                 Class => 'RT__Ticket',
99                 Name  => $attr,
100                 Attr  => 'title'
101                 );
102         $title = ProcessColumnMapValue($tmp, Arguments => [ $attr ]);
103     }
104
105     push @header, $title;
106
107 } #foreach $column
108
109 &{ $WriteHeader }(@header);
110
111 my $plaintext = HTML::FormatText->new;
112 my $row = 1;
113 my $ColumnMap = {};
114 while ( my $Ticket = $Tickets->Next()) {
115     my $height = 0;
116     my @row = ();
117     foreach my $column ( @Format ) {
118         next if !defined $column;
119
120         my $value = '';
121         my @out;
122         # Ignore almost all formatting here.
123         foreach my $subcol ( @{ $column->{output} } ) {
124             my ($col) = ($subcol =~ /^__(.*?)__$/ );
125
126             if ( !$col ) {
127                 push @out, $subcol;
128                 next;
129             }
130
131             if ( !exists $ColumnMap->{$col}{'value'} ) {
132                 $ColumnMap->{$col}{'value'} = $m->comp(
133                     '/Elements/ColumnMap',
134                     Class => 'RT__Ticket',
135                     Name  => $col,
136                     Attr  => 'value',
137                 );
138             }
139
140             push @out, ProcessColumnMapValue(
141                 $ColumnMap->{$col}{'value'},
142                 Arguments => [ $Ticket, $row ],
143             );
144             use DDS;
145         } #foreach $subcol
146             warn Dump(\@out);
147         $value .= join('', @out);
148         # strip out all HTML except line breaks
149         my $tree = HTML::TreeBuilder->new->parse($value);
150         my $text = $plaintext->format($tree);
151         # along with leading/trailing whitespace
152         my @lines = map { s/^\s*//; s/\s*$//; $_ } split("\n", $text);
153
154         # then provide separate lines to the callback
155         push @row, \@lines;
156     } #foreach $column
157
158     &{ $WriteRow }(@row);
159
160 } # while $Tickets->Next
161
162 </%INIT>