X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=rt%2Fshare%2Fhtml%2FNoAuth%2Frss%2Fdhandler;h=cdeae81e6aeb874c6eb3a1dd36a7fbf854fd4be1;hb=1c538bfabc2cd31f27067505f0c3d1a46cba6ef0;hp=1446e6cc4c5eb48a406845943c56ba2114e3645f;hpb=4f5619288413a185e9933088d9dd8c5afbc55dfa;p=freeside.git diff --git a/rt/share/html/NoAuth/rss/dhandler b/rt/share/html/NoAuth/rss/dhandler index 1446e6cc4..cdeae81e6 100644 --- a/rt/share/html/NoAuth/rss/dhandler +++ b/rt/share/html/NoAuth/rss/dhandler @@ -45,4 +45,37 @@ %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} -<& /Search/Elements/ResultsRSSView, %ARGS &> +<%init> +my $path = $m->dhandler_arg; + +my $notfound = sub { + my $mesg = shift; + $r->headers_out->{'Status'} = '404 Not Found'; + $RT::Logger->info("Error encountered in rss generation: $mesg"); + $m->clear_and_abort; +}; + +$notfound->("Invalid path: $path") unless $path =~ m!^([^/]+)/([^/]+)/?!; + +my ( $name, $auth ) = ( $1, $2 ); + +# Unescape parts +$name =~ s/\%([0-9a-z]{2})/chr(hex($1))/gei; + +# convert to perl strings +$name = Encode::decode( "UTF-8", $name); + +my $user = RT::User->new(RT->SystemUser); +$user->Load($name); +$notfound->("Invalid user: $user") unless $user->id; + +$notfound->("Invalid authstring") + unless $user->ValidateAuthString( $auth, + $ARGS{Query} . $ARGS{Order} . $ARGS{OrderBy} ); + +my $cu = RT::CurrentUser->new; +$cu->Load($user); +local $session{'CurrentUser'} = $cu; + +$m->comp("/Search/Elements/ResultsRSSView", %ARGS); +