]> git.uio.no Git - usit-rt.git/blame - share/html/Search/Elements/ResultsRSSView
Upgrade to 4.2.8
[usit-rt.git] / share / html / Search / Elements / ResultsRSSView
CommitLineData
84fb5b46
MKG
1%# BEGIN BPS TAGGED BLOCK {{{
2%#
3%# COPYRIGHT:
4%#
3ffc5f4f 5%# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC
84fb5b46
MKG
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>
84fb5b46
MKG
49my $old_current_user;
50
51if ( $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
3ffc5f4f
MKG
68 # Decode from bytes to characters
69 $name = Encode::decode( "UTF-8", $name );
84fb5b46
MKG
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 $old_current_user = $session{'CurrentUser'};
80 my $cu = RT::CurrentUser->new;
81 $cu->Load($user);
82 $session{'CurrentUser'} = $cu;
83}
84
85my $Tickets = RT::Tickets->new($session{'CurrentUser'});
86$Tickets->FromSQL($ARGS{'Query'});
87if ($OrderBy =~ /\|/) {
88 # Multiple Sorts
89 my @OrderBy = split /\|/,$OrderBy;
90 my @Order = split /\|/,$Order;
91 $Tickets->OrderByCols(
92 map { { FIELD => $OrderBy[$_], ORDER => $Order[$_] } } ( 0
93 .. $#OrderBy ) );;
94} else {
95 $Tickets->OrderBy(FIELD => $OrderBy, ORDER => $Order);
96}
3ffc5f4f 97$r->content_type('application/rss+xml; charset=utf-8');
84fb5b46
MKG
98
99
100
101 # create an RSS 1.0 file (http://purl.org/rss/1.0/)
102 use XML::RSS;
103 my $rss = XML::RSS->new(version => '1.0');
3ffc5f4f
MKG
104
105 my $url;
106 if ( RT->Config->Get('CanonicalizeURLsInFeeds') ) {
107 $url = RT->Config->Get('WebURL');
108 }
109 else {
110 $url = RT::Interface::Web::GetWebURLFromRequest();
111 }
112
84fb5b46
MKG
113 $rss->channel(
114 title => RT->Config->Get('rtname').": Search " . $ARGS{'Query'},
3ffc5f4f 115 link => $url,
84fb5b46
MKG
116 description => "",
117 dc => {
118 },
119 generator => "RT v" . $RT::VERSION,
120 syn => {
121 updatePeriod => "hourly",
122 updateFrequency => "1",
123 updateBase => "1901-01-01T00:00+00:00",
124 },
125 );
126
127
128 while ( my $Ticket = $Tickets->Next()) {
3ffc5f4f 129 my $creator_str = $Ticket->CreatorObj->Format;
84fb5b46
MKG
130 $creator_str =~ s/[\r\n]//g;
131 $rss->add_item(
132 title => $Ticket->Subject || loc('No Subject'),
3ffc5f4f 133 link => $url . "Ticket/Display.html?id=".$Ticket->id,
84fb5b46
MKG
134 description => $Ticket->Transactions->First->Content,
135 dc => { creator => $creator_str,
136 date => $Ticket->CreatedObj->RFC2822,
137 },
138 guid => $Ticket->Queue . '_' . $Ticket->id,
139 );
140 }
141
142$m->out($rss->as_string);
143$session{'CurrentUser'} = $old_current_user if $old_current_user;
144$m->abort();
145</%INIT>
146<%ARGS>
147$OrderBy => 'Created'
148$Order => 'ASC'
149</%ARGS>
150