rt 4.0.23
[freeside.git] / rt / share / html / Search / Elements / ResultsRSSView
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %#
3 %# COPYRIGHT:
4 %#
5 %# This software is Copyright (c) 1996-2015 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 <%INIT>
49 my $current_user = $session{CurrentUser};
50
51 if ( $m->request_comp->path =~ RT->Config->Get('WebNoAuthRegex') ) {
52     my $path = $m->dhandler_arg;
53
54     my $notfound = sub {
55         my $mesg = shift;
56         $r->headers_out->{'Status'} = '404 Not Found';
57         $RT::Logger->info("Error encountered in rss generation: $mesg");
58         $m->clear_and_abort;
59     };
60
61     $notfound->("Invalid path: $path") unless $path =~ m!^([^/]+)/([^/]+)/?!;
62
63     my ( $name, $auth ) = ( $1, $2 );
64
65     # Unescape parts
66     $name =~ s/\%([0-9a-z]{2})/chr(hex($1))/gei;
67
68     # Decode from bytes to characters
69     $name = Encode::decode( "UTF-8", $name );
70
71     my $user = RT::User->new(RT->SystemUser);
72     $user->Load($name);
73     $notfound->("Invalid user: $user") unless $user->id;
74
75     $notfound->("Invalid authstring")
76       unless $user->ValidateAuthString( $auth,
77               $ARGS{Query} . $ARGS{Order} . $ARGS{OrderBy} );
78
79     $current_user = RT::CurrentUser->new;
80     $current_user->Load($user);
81 }
82
83 my $Tickets = RT::Tickets->new($current_user);
84 $Tickets->FromSQL($ARGS{'Query'});
85 if ($OrderBy =~ /\|/) {
86     # Multiple Sorts
87     my @OrderBy = split /\|/,$OrderBy;
88     my @Order = split /\|/,$Order;
89     $Tickets->OrderByCols(
90         map { { FIELD => $OrderBy[$_], ORDER => $Order[$_] } } ( 0
91         .. $#OrderBy ) );;
92 } else {
93     $Tickets->OrderBy(FIELD => $OrderBy, ORDER => $Order);
94 }
95 $r->content_type('application/rss+xml');
96
97
98
99         # create an RSS 1.0 file (http://purl.org/rss/1.0/)
100         use XML::RSS;
101         my $rss = XML::RSS->new(version => '1.0');
102         $rss->channel(
103           title        => RT->Config->Get('rtname').": Search " . $ARGS{'Query'},
104           link         => RT->Config->Get('WebURL'),
105           description  => "",
106           dc => {
107           },
108           generator    => "RT v" . $RT::VERSION,
109           syn => {
110             updatePeriod     => "hourly",
111             updateFrequency  => "1",
112             updateBase       => "1901-01-01T00:00+00:00",
113           },
114         );
115
116
117     while ( my $Ticket = $Tickets->Next()) {
118         my $creator_str = $m->scomp('/Elements/ShowUser', User => $Ticket->CreatorObj);
119         $creator_str =~ s/[\r\n]//g;
120
121         # Get the plain-text content; it is interpreted as HTML by RSS
122         # readers, so it must be escaped (and is escaped _again_ when
123         # inserted into the XML).
124         my $content = $Ticket->Transactions->First->Content;
125         $content = $m->interp->apply_escapes( $content, 'h');
126
127         $rss->add_item(
128           title       =>  $Ticket->Subject || loc('No Subject'),
129           link        => RT->Config->Get('WebURL')."Ticket/Display.html?id=".$Ticket->id,
130           description => $content,
131           dc          => { creator => $creator_str,
132                            date => $Ticket->CreatedObj->RFC2822,
133                          },
134           guid        => $Ticket->Queue . '_' . $Ticket->id,
135         );
136     }
137
138 $m->out($rss->as_string);
139 $m->abort();
140 </%INIT>
141 <%ARGS>
142 $OrderBy => 'Created'
143 $Order => 'ASC'
144 </%ARGS>
145