X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Plugin-Session-State-Cookie.git;a=blobdiff_plain;f=lib%2FCatalyst%2FPlugin%2FSession%2FState%2FCookie.pm;h=a87ccc892602cd8c20989e48036f5b39c564620c;hp=7fbde70b66c4309deec3f35f7b5bfea1458dae82;hb=8bdcbb468aedff34275a7fb30b18ea8be066255b;hpb=431c1b4bc991f19500eaf6314a4a68bba10e5762 diff --git a/lib/Catalyst/Plugin/Session/State/Cookie.pm b/lib/Catalyst/Plugin/Session/State/Cookie.pm index 7fbde70..a87ccc8 100644 --- a/lib/Catalyst/Plugin/Session/State/Cookie.pm +++ b/lib/Catalyst/Plugin/Session/State/Cookie.pm @@ -7,7 +7,7 @@ use warnings; use NEXT; use Catalyst::Utils (); -our $VERSION = "0.04"; +our $VERSION = "0.05"; sub setup_session { my $c = shift; @@ -38,8 +38,21 @@ sub set_session_id { sub update_session_cookie { my ( $c, $updated ) = @_; - my $cookie_name = $c->config->{session}{cookie_name}; - $c->response->cookies->{$cookie_name} = $updated; + + unless ( $c->cookie_is_rejecting( $updated ) ) { + my $cookie_name = $c->config->{session}{cookie_name}; + $c->response->cookies->{$cookie_name} = $updated; + } +} + +sub cookie_is_rejecting { + my ( $c, $cookie ) = @_; + + if ( $cookie->{path} ) { + return 1 if index $c->request->path, $cookie->{path}; + } + + return 0; } sub make_session_cookie { @@ -49,6 +62,7 @@ sub make_session_cookie { my $cookie = { value => $sid, ( $cfg->{cookie_domain} ? ( domain => $cfg->{cookie_domain} ) : () ), + ( $cfg->{cookie_path} ? ( path => $cfg->{cookie_path} ) : () ), %attrs, }; @@ -190,6 +204,10 @@ user's browser is shut down. If this attribute set true, the cookie will only be sent via HTTPS. +=item cookie_path + +The path of the request url where cookie should be baked. + =back =head1 CAVEATS