/usr/share/perl5/MasonX/Request/WithApacheSession.pm is in libmasonx-request-withapachesession-perl 0.30-3.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 | package MasonX::Request::WithApacheSession;
use 5.005;
use strict;
use vars qw($VERSION @ISA);
$VERSION = '0.30';
use Apache::Session::Wrapper 0.13;
use HTML::Mason 1.16;
use HTML::Mason::Exceptions ( abbr => [ qw( param_error error ) ] );
use HTML::Mason::Request;
use Params::Validate qw(:all);
Params::Validate::validation_options( on_fail => sub { param_error( join '', @_ ) } );
# This may change later
@ISA = qw(HTML::Mason::Request);
#
# This is a bit of a hack, ideally we could do this:
#
# __PACKAGE__->contained_objects( class => 'Apache::Session::Wrapper',
# prefix => 'session_',
# );
#
# and let Class::Container sort it all out. We'd also need a way to
# override some of the contained class's defaults.
#
my $wrapper_p = Apache::Session::Wrapper->valid_params;
{
my %p = map { ( "session_$_" => $wrapper_p->{$_} ) } keys %$wrapper_p;
foreach my $k ( grep { exists $p{$_}{depends} } keys %p )
{
my %new = %{ $p{$k} };
my @d = ref $new{depends} ? @{ $new{depends} } : $new{depends};
$new{depends} = [ map { ( "session_$_" ) } @d ];
$p{$k} = \%new;
}
$p{session_cookie_name}{default} = 'MasonX-Request-WithApacheSession-cookie';
# We'll always provide this, so the user doesn't need to.
delete $p{session_param_name}{depends};
__PACKAGE__->valid_params
( # This is for backwards compatibility, it's been renamed to
# param_name
session_args_param =>
{ type => SCALAR,
optional => 1,
descr => 'Name of the parameter to use for session tracking',
},
%p,
);
}
sub new
{
my $class = shift;
$class->alter_superclass( $HTML::Mason::ApacheHandler::VERSION ?
'HTML::Mason::Request::ApacheHandler' :
$HTML::Mason::CGIHandler::VERSION ?
'HTML::Mason::Request::CGI' :
'HTML::Mason::Request' );
my $self = $class->SUPER::new(@_);
return $self if $self->is_subrequest;
# backwards compatibility
$self->{session_param_name} =
$self->{session_args_param} if exists $self->{session_args_param};
my %extra;
if ( $self->can('apache_req') )
{
%extra = ( header_object => $self->apache_req,
param_object => $self->apache_req,
);
}
elsif ( $self->can('cgi_request') && $self->can('cgi_object') )
{
%extra = ( header_object => $self->cgi_request,
param_object => $self->cgi_object,
);
}
$self->{apache_session_wrapper} =
Apache::Session::Wrapper->new
( %extra,
map { $_ => $self->{"session_$_"} }
grep { exists $self->{"session_$_"} }
keys %$wrapper_p
);
return $self;
}
sub wrapper
{
$_[0]->is_subrequest
? $_[0]->parent_request->wrapper
: $_[0]->{apache_session_wrapper}
}
sub exec
{
my $self = shift;
return $self->SUPER::exec(@_)
if $self->is_subrequest;
my @r;
if (wantarray)
{
@r = $self->SUPER::exec(@_);
}
else
{
$r[0] = $self->SUPER::exec(@_);
}
$self->wrapper->cleanup_session;
return wantarray ? @r : $r[0];
}
BEGIN
{
foreach my $meth ( qw( session delete_session ) )
{
no strict 'refs';
*{$meth} = sub { shift->wrapper->$meth(@_) };
}
}
1;
__END__
=head1 NAME
MasonX::Request::WithApacheSession - Add a session to the Mason Request object
=head1 SYNOPSIS
In your F<httpd.conf> file:
PerlSetVar MasonRequestClass MasonX::Request::WithApacheSession
PerlSetVar MasonSessionCookieDomain .example.com
PerlSetVar MasonSessionClass Apache::Session::File
PerlSetVar MasonSessionDirectory /tmp/sessions/data
PerlSetVar MasonSessionLockDirectory /tmp/sessions/locks
Or when creating an ApacheHandler object:
my $ah =
HTML::Mason::ApacheHandler->new
( request_class => 'MasonX::Request::WithApacheSession',
session_cookie_domain => '.example.com',
session_class => 'Apache::Session::File',
session_directory => '/tmp/sessions/data',
session_lock_directory => '/tmp/sessions/locks',
);
In a component:
$m->session->{foo} = 1;
if ( $m->session->{bar}{baz} > 1 ) { ... }
=head1 DESCRIPTION
This module integrates C<Apache::Session> into Mason by adding methods
to the Mason Request object available in all Mason components.
Any subrequests created by a request share the same session.
=head1 USAGE
To use this module you need to tell Mason to use this class for
requests. This can be done in one of two ways. If you are
configuring Mason via your F<httpd.conf> file, simply add this:
PerlSetVar MasonRequestClass MasonX::Request::WithApacheSession
If you are using a F<handler.pl> file, simply add this parameter to
the parameters given to the ApacheHandler constructor:
request_class => 'MasonX::Request::WithApacheSession'
=head1 METHODS
This class adds two methods to the Request object.
=over 4
=item * session
This method returns a hash tied to the C<Apache::Session> class.
=item * delete_session
This method deletes the existing session from persistent storage. If
you are using the built-in cookie mechanism, it also deletes the
cookie in the browser.
=back
=head1 CONFIGURATION
This module accepts quite a number of parameters, most of which are
simply passed through to C<Apache::Session::Wrapper>. For this
reason, you are advised to familiarize yourself with the
C<Apache::Session::Wrapper> documentation before attempting to
configure this module.
If you are creating your own Interp/ApacheHandler/CGIHandler object in
a script or module, you should pass this object the parameters
intended for C<Apache::Session::Wrapper>, prefixed with "session_".
So to set the "class" parameter for C<Apache::Session::Wrapper>, you
pass in a "session_class" parameter.
If you are configuring Mason via your F<httpd.conf> file, you should
pass the "StudlyCaps" version of the name, prefixed by "MasonSession".
So the "class" parameter would be "MasonSessionClass".
A few examples:
=over 4
=item * class becomes session_class / MasonSessionClass
=item * always_write becomes session_always_write / MasonSessionAlwaysWrite
=back
When running under ApacheHandler or CGIHandler, this module takes care
of passing the "header_object" and "param_object" parameters to
C<Apache::Session::Wrapper>. These will be the C<Apache::Request> or
C<CGI.pm> objects, as applicable.
The "cookie_name" parameter defaults to
"MasonX-Request-WithApacheSession-cookie" when you use this module,
instead of "Apache-Session-Wrapper-cookie".
Finally, for backwards compatiblity, this module accepts a
"session_args_param" parameter, which corresponds to the "param_name"
parameter for C<Apache::Session::Wrapper>.
=head1 SUPPORT
As can be seen by the number of parameters above, C<Apache::Session>
has B<way> too many possibilities for me to test all of them. This
means there are almost certainly bugs.
Bug reports and requests for help should be sent to the mason-users
list. See http://www.masonhq.com/resources/mailing_lists.html for
more details.
=head1 AUTHOR
Dave Rolsky, <autarch@urth.org>
=head1 SEE ALSO
HTML::Mason
=cut
|