import rt 3.8.9
[freeside.git] / rt / share / html / Elements / ShowSearch
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 <&|/Widgets/TitleBox,
49     title => loc($search->Description, $ProcessedSearchArg->{'Rows'}),
50     title_href => $query_link_url.$QueryString,
51     titleright => $customize ? loc('Edit') : '',
52     titleright_href => $customize,
53     hideable => $hideable &>
54 <& $query_display_component, hideable => $hideable, %$ProcessedSearchArg, ShowNavigation => 0, Class => 'RT::Tickets' &>
55 </&>
56 <%init>
57 my $search;
58 my $user = $session{'CurrentUser'}->UserObj;
59 my $SearchArg;
60 my $customize;
61 my $query_display_component = '/Elements/CollectionList';
62 my $query_link_url = RT->Config->Get('WebPath').'/Search/Results.html';
63
64 if ($SavedSearch) {
65     my ( $container_object, $search_id ) = _parse_saved_search($SavedSearch);
66     unless ( $container_object ) {
67         $m->out(loc("Either you have no rights to view saved search [_1] or identifier is incorrect", $SavedSearch));
68         return;
69     }
70     $search = $container_object->Attributes->WithId($search_id);
71     unless ( $search->Id && ref( $SearchArg = $search->Content ) eq 'HASH' ) {
72         $m->out(loc("Saved Search [_1] not found", $SavedSearch)) unless $IgnoreMissing;
73         return;
74     }
75     $SearchArg->{'SearchType'} ||= 'Ticket';
76     if ( $SearchArg->{SearchType} ne 'Ticket' ) {
77
78         # XXX: dispatch to different handler here
79         $query_display_component
80             = '/Search/Elements/' . $SearchArg->{SearchType};
81         $query_link_url = RT->Config->Get('WebURL') . "/Search/$SearchArg->{SearchType}.html";
82     } elsif ($ShowCustomize) {
83         $customize = RT->Config->Get('WebPath') . '/Search/Build.html?'
84             . $m->comp( '/Elements/QueryString',
85             SavedSearchLoad => $SavedSearch );
86     }
87 } else {
88     ($search) = RT::System->new( $session{'CurrentUser'} ) ->Attributes->Named( 'Search - ' . $Name );
89     unless ( $search && $search->Id ) {
90         my (@custom_searches) = RT::System->new( $session{'CurrentUser'} )->Attributes->Named('SavedSearch');
91         foreach my $custom (@custom_searches) {
92             if ($custom->Description eq $Name) { $search = $custom; last }
93         }
94         unless ($search && $search->id) {
95             $m->out("Predefined search $Name not found");
96             return;
97         }
98     }
99
100     $SearchArg = $user->Preferences( $search, $search->Content );
101     if ($ShowCustomize) {
102         $customize = RT->Config->Get('WebPath') . '/Prefs/Search.html?'
103             . $m->comp( '/Elements/QueryString',
104                 name => ref($search) . '-' . $search->Id );
105     }
106 }
107
108 # ProcessedSearchArg is a search with overridings, but for link we use
109 # orginal search's poperties
110 my $ProcessedSearchArg = $SearchArg;
111 $ProcessedSearchArg = { %$SearchArg, %Override } if keys %Override;
112
113 $m->callback(
114     %ARGS,
115     CallbackName  => 'ModifySearch',
116     OriginalSearch => $SearchArg,
117     Search         => $ProcessedSearchArg,
118 );
119
120 foreach ( $SearchArg, $ProcessedSearchArg ) {
121     $_->{'Format'} ||= '';
122
123     $_->{'Format'} =~ s/__(Web(?:Path|Base|BaseURL))__/scalar RT->Config->Get($1)/ge;
124     # extract-message-catalog would "$1", so we avoid quotes for loc calls
125     $_->{'Format'} =~ s/__loc\(["']?(\w+)["']?\)__/my $f = "$1"; loc($f)/ge;
126     if ( $_->{'Query'} =~ /__Bookmarked__/ ) {
127         $_->{'Rows'} = 999;
128     }
129     elsif ( $_->{'Query'} =~ /__Bookmarks__/ ) {
130         $_->{'Rows'} = 999;
131
132         # DEPRECATED: will be here for a while up to 3.10/4.0
133         my $bookmarks = $session{'CurrentUser'}->UserObj->FirstAttribute('Bookmarks');
134         $bookmarks = $bookmarks->Content if $bookmarks;
135         $bookmarks ||= {};
136         my $query = join(" OR ", map " id = '$_' ", grep $bookmarks->{ $_ }, keys %$bookmarks ) || 'id=0';
137         $_->{'Query'} =~ s/__Bookmarks__/( $query )/g;
138     }
139 }
140
141 my $QueryString = '?' . $m->comp( '/Elements/QueryString', %$SearchArg );
142
143 </%init>
144 <%ARGS>
145 $Name           => undef
146 $SavedSearch    => undef
147 %Override       => ()
148 $IgnoreMissing  => undef
149 $hideable       => 1
150 $ShowCustomize => 1
151 </%ARGS>