delete_session is not an internal method
[catagits/Catalyst-Plugin-Session.git] / lib / Catalyst / Plugin / Session.pm
1 #!/usr/bin/perl
2
3 package Catalyst::Plugin::Session;
4 use base qw/Class::Accessor::Fast/;
5
6 use strict;
7 use warnings;
8
9 use NEXT;
10 use Catalyst::Exception ();
11 use Digest              ();
12 use overload            ();
13 use Object::Signature   ();
14
15 our $VERSION = "0.05";
16
17 my @session_data_accessors; # used in delete_session
18 BEGIN {
19     __PACKAGE__->mk_accessors(
20         "_session_delete_reason",
21         @session_data_accessors = qw/
22           _sessionid
23           _session
24           _session_expires
25           _session_data_sig
26           _flash
27           _flash_keep_keys
28           _flash_key_hashes
29           _tried_loading_session
30           /
31     );
32 }
33
34 sub setup {
35     my $c = shift;
36
37     $c->NEXT::setup(@_);
38
39     $c->check_session_plugin_requirements;
40     $c->setup_session;
41
42     return $c;
43 }
44
45 sub check_session_plugin_requirements {
46     my $c = shift;
47
48     unless ( $c->isa("Catalyst::Plugin::Session::State")
49         && $c->isa("Catalyst::Plugin::Session::Store") )
50     {
51         my $err =
52           (     "The Session plugin requires both Session::State "
53               . "and Session::Store plugins to be used as well." );
54
55         $c->log->fatal($err);
56         Catalyst::Exception->throw($err);
57     }
58 }
59
60 sub setup_session {
61     my $c = shift;
62
63     my $cfg = ( $c->config->{session} ||= {} );
64
65     %$cfg = (
66         expires        => 7200,
67         verify_address => 1,
68         %$cfg,
69     );
70
71     $c->NEXT::setup_session();
72 }
73
74 sub prepare_action {
75     my $c = shift;
76
77     if (    $c->config->{session}{flash_to_stash}
78         and $c->sessionid
79         and my $flash_data = $c->flash )
80     {
81         @{ $c->stash }{ keys %$flash_data } = values %$flash_data;
82     }
83
84     $c->NEXT::prepare_action(@_);
85 }
86
87 sub finalize {
88     my $c = shift;
89
90     $c->_save_session;
91     $c->_save_flash;
92
93     $c->NEXT::finalize(@_);
94 }
95
96 sub _save_session {
97     my $c = shift;
98
99     if ( my $sid = $c->sessionid ) {
100
101         # all sessions are extended at the end of the request
102         my $now = time;
103
104         if ( my $expires = $c->session_expires ) {
105             $c->store_session_data( "expires:$sid" => $expires );
106         }
107
108         if ( my $session_data = $c->_session ) {
109
110             no warnings 'uninitialized';
111             if ( Object::Signature::signature($session_data) ne
112                 $c->_session_data_sig )
113             {
114                 $session_data->{__updated} = $now;
115                 $c->store_session_data( "session:$sid" => $session_data );
116             }
117         }
118     }
119 }
120
121 sub _save_flash {
122     my $c = shift;
123
124     if ( my $sid = $c->sessionid ) {
125         if ( my $flash_data = $c->_flash ) {
126
127             my $hashes = $c->_flash_key_hashes || {};
128             my $keep = $c->_flash_keep_keys || {};
129             foreach my $key ( keys %$hashes ) {
130                 if ( !exists $keep->{$key} and Object::Signature::signature( \$flash_data->{$key} ) eq $hashes->{$key} ) {
131                     delete $flash_data->{$key};
132                 }
133             }
134
135             if (%$flash_data) {
136                 $c->store_session_data( "flash:$sid", $flash_data );
137             }
138             else {
139                 $c->delete_session_data("flash:$sid");
140             }
141         }
142     }
143 }
144
145 sub _load_session_expires {
146     my $c = shift;
147
148     if ( my $sid = $c->sessionid ) {
149         my $expires = $c->get_session_data("expires:$sid") || 0;
150
151         if ( $expires >= time() ) {
152             return $c->extend_session_expires( $expires );
153         } else {
154             $c->delete_session( "session expired" );
155             return 0;
156         }
157     } else {
158         $c->_session_expires( 0 );
159         return 0;
160     }
161 }
162
163 sub _load_session {
164     my $c = shift;
165
166     if ( my $sid = $c->sessionid ) {
167         if ( $c->session_expires ) {    # > 0
168
169             my $session_data = $c->get_session_data("session:$sid") || return;
170             $c->_session($session_data);
171
172             no warnings 'uninitialized';    # ne __address
173             if (   $c->config->{session}{verify_address}
174                 && $session_data->{__address} ne $c->request->address )
175             {
176                 $c->log->warn(
177                         "Deleting session $sid due to address mismatch ("
178                       . $session_data->{__address} . " != "
179                       . $c->request->address . ")"
180                 );
181                 $c->delete_session("address mismatch");
182                 return;
183             }
184
185             $c->log->debug(qq/Restored session "$sid"/) if $c->debug;
186             $c->_session_data_sig( Object::Signature::signature($session_data) ) if $session_data;
187             $c->_expire_session_keys;
188
189             return $session_data;
190         }
191     }
192
193     return;
194 }
195
196 sub _load_flash {
197     my $c = shift;
198
199     if ( my $sid = $c->sessionid ) {
200         if ( my $flash_data = $c->_flash
201             || $c->_flash( $c->get_session_data("flash:$sid") ) )
202         {
203             $c->_flash_key_hashes({ map { $_ => Object::Signature::signature( \$flash_data->{$_} ) } keys %$flash_data });
204             
205             return $flash_data;
206         }
207     }
208
209     return undef;
210 }
211
212 sub _expire_session_keys {
213     my ( $c, $data ) = @_;
214
215     my $now = time;
216
217     my $expire_times = ( $data || $c->_session || {} )->{__expire_keys} || {};
218     foreach my $key ( grep { $expire_times->{$_} < $now } keys %$expire_times ) {
219         delete $c->_session->{$key};
220         delete $expire_times->{$key};
221     }
222 }
223
224 sub delete_session {
225     my ( $c, $msg ) = @_;
226
227     # delete the session data
228     my $sid = $c->sessionid || return;
229     $c->delete_session_data("${_}:${sid}") for qw/session expires flash/;
230
231     $c->delete_session_id;
232
233     # reset the values in the context object
234     # see the BEGIN block
235     $c->$_(undef) for @session_data_accessors;
236
237     $c->_session_delete_reason($msg);
238 }
239
240 sub session_delete_reason {
241     my $c = shift;
242
243     $c->session_is_valid; # check that it was loaded
244
245     $c->_session_delete_reason(@_);
246 }
247
248 sub session_expires {
249     my $c = shift;
250
251     if ( defined( my $expires = $c->_session_expires ) ) {
252         return $expires;
253     } else {
254         return $c->_load_session_expires;
255     }
256 }
257
258 sub extend_session_expires {
259     my ( $c, $expires ) = @_;
260     $c->_session_expires( my $updated = $c->calculate_extended_session_expires( $expires ) );
261     $c->extend_session_id( $c->sessionid, $updated );
262     return $updated;
263 }
264
265 sub calculate_initial_session_expires {
266     my $c = shift;
267     return ( time() + $c->config->{session}{expires} );
268 }
269
270 sub calculate_extended_session_expires {
271     my ( $c, $prev ) = @_;
272     $c->calculate_initial_session_expires;
273 }
274
275 sub reset_session_expires {
276     my ( $c, $sid ) = @_;
277     $c->_session_expires( my $exp = $c->calculate_initial_session_expires );
278     $exp;
279 }
280
281 sub sessionid {
282     my $c = shift;
283     
284     return $c->_sessionid || do {
285         unless ( $c->_tried_loading_session ) {
286             $c->_tried_loading_session(1);
287             if ( defined( my $sid = $c->get_session_id ) ) {
288                 if ( $c->validate_session_id($sid) ) {
289                     $c->_sessionid( $sid );
290                     return $sid;
291                 } else {
292                     my $err = "Tried to set invalid session ID '$sid'";
293                     $c->log->error($err);
294                     Catalyst::Exception->throw($err);
295                 }
296             } else {
297                 return;
298             }
299         }
300     }
301 }
302
303 sub session_is_valid {
304     my $c = shift;
305
306     $c->_load_session unless $c->_session; # check expiry and also __address, etc
307
308     if ( $c->_session ) {
309         return 1;
310     } else {
311         return;
312     }
313 }
314
315 sub validate_session_id {
316     my ( $c, $sid ) = @_;
317
318     $sid and $sid =~ /^[a-f\d]+$/i;
319 }
320
321 sub session {
322     my $c = shift;
323
324     $c->_session || $c->_load_session || do {
325         $c->create_session_id;
326         $c->initialize_session_data;
327     };
328 }
329
330 sub keep_flash {
331     my ( $c, @keys ) = @_;
332     my $href = $c->_flash_keep_keys || $c->_flash_keep_keys({});
333     (@{$href}{@keys}) = ((undef) x @keys);
334 }
335
336 sub flash {
337     my $c = shift;
338     $c->_flash || $c->_load_flash || do {
339         $c->create_session_id;
340         $c->_flash( {} );
341       }
342 }
343
344 sub session_expire_key {
345     my ( $c, %keys ) = @_;
346
347     my $now = time;
348     @{ $c->session->{__expire_keys} }{ keys %keys } =
349       map { $now + $_ } values %keys;
350 }
351
352 sub initialize_session_data {
353     my $c = shift;
354
355     my $now = time;
356
357     return $c->_session(
358         {
359             __created => $now,
360             __updated => $now,
361
362             (
363                 $c->config->{session}{verify_address}
364                 ? ( __address => $c->request->address )
365                 : ()
366             ),
367         }
368     );
369 }
370
371 sub generate_session_id {
372     my $c = shift;
373
374     my $digest = $c->_find_digest();
375     $digest->add( $c->session_hash_seed() );
376     return $digest->hexdigest;
377 }
378
379 sub create_session_id {
380     my $c = shift;
381
382     my $sid = $c->generate_session_id;
383
384     $c->log->debug(qq/Created session "$sid"/) if $c->debug;
385
386     $c->_sessionid($sid);
387     $c->reset_session_expires;
388     $c->set_session_id($sid);
389
390     return $sid;
391 }
392
393 my $counter;
394
395 sub session_hash_seed {
396     my $c = shift;
397
398     return join( "", ++$counter, time, rand, $$, {}, overload::StrVal($c), );
399 }
400
401 my $usable;
402
403 sub _find_digest () {
404     unless ($usable) {
405         foreach my $alg (qw/SHA-1 SHA-256 MD5/) {
406             if ( eval { Digest->new($alg) } ) {
407                 $usable = $alg;
408                 last;
409             }
410         }
411         Catalyst::Exception->throw(
412                 "Could not find a suitable Digest module. Please install "
413               . "Digest::SHA1, Digest::SHA, or Digest::MD5" )
414           unless $usable;
415     }
416
417     return Digest->new($usable);
418 }
419
420 sub dump_these {
421     my $c = shift;
422
423     (
424         $c->NEXT::dump_these(),
425
426         $c->sessionid
427         ? ( [ "Session ID" => $c->sessionid ], [ Session => $c->session ], )
428         : ()
429     );
430 }
431
432
433 sub get_session_id { shift->NEXT::get_session_id(@_) }
434 sub set_session_id { shift->NEXT::set_session_id(@_) }
435 sub delete_session_id { shift->NEXT::delete_session_id(@_) }
436 sub extend_session_id { shift->NEXT::extend_session_id(@_) }
437
438 __PACKAGE__;
439
440 __END__
441
442 =pod
443
444 =head1 NAME
445
446 Catalyst::Plugin::Session - Generic Session plugin - ties together server side
447 storage and client side state required to maintain session data.
448
449 =head1 SYNOPSIS
450
451     # To get sessions to "just work", all you need to do is use these plugins:
452
453     use Catalyst qw/
454       Session
455       Session::Store::FastMmap
456       Session::State::Cookie
457       /;
458
459         # you can replace Store::FastMmap with Store::File - both have sensible
460         # default configurations (see their docs for details)
461
462         # more complicated backends are available for other scenarios (DBI storage,
463         # etc)
464
465
466     # after you've loaded the plugins you can save session data
467     # For example, if you are writing a shopping cart, it could be implemented
468     # like this:
469
470     sub add_item : Local {
471         my ( $self, $c ) = @_;
472
473         my $item_id = $c->req->param("item");
474
475         # $c->session is a hash ref, a bit like $c->stash
476         # the difference is that it' preserved across requests
477
478         push @{ $c->session->{items} }, $item_id;
479
480         $c->forward("MyView");
481     }
482
483     sub display_items : Local {
484         my ( $self, $c ) = @_;
485
486         # values in $c->session are restored
487         $c->stash->{items_to_display} =
488           [ map { MyModel->retrieve($_) } @{ $c->session->{items} } ];
489
490         $c->forward("MyView");
491     }
492
493 =head1 DESCRIPTION
494
495 The Session plugin is the base of two related parts of functionality required
496 for session management in web applications.
497
498 The first part, the State, is getting the browser to repeat back a session key,
499 so that the web application can identify the client and logically string
500 several requests together into a session.
501
502 The second part, the Store, deals with the actual storage of information about
503 the client. This data is stored so that the it may be revived for every request
504 made by the same client.
505
506 This plugin links the two pieces together.
507
508 =head1 RECCOMENDED BACKENDS
509
510 =over 4
511
512 =item Session::State::Cookie
513
514 The only really sane way to do state is using cookies.
515
516 =item Session::Store::File
517
518 A portable backend, based on Cache::File.
519
520 =item Session::Store::FastMmap
521
522 A fast and flexible backend, based on Cache::FastMmap.
523
524 =back
525
526 =head1 METHODS
527
528 =over 4
529
530 =item sessionid
531
532 An accessor for the session ID value.
533
534 =item session
535
536 Returns a hash reference that might contain unserialized values from previous
537 requests in the same session, and whose modified value will be saved for future
538 requests.
539
540 This method will automatically create a new session and session ID if none
541 exists.
542
543 =item session_expires
544
545 =item session_expires $reset
546
547 This method returns the time when the current session will expire, or 0 if
548 there is no current session. If there is a session and it already expired, it
549 will delete the session and return 0 as well.
550
551 If the C<$reset> parameter is true, and there is a session ID the expiry time
552 will be reset to the current time plus the time to live (see
553 L</CONFIGURATION>). This is used when creating a new session.
554
555 =item flash
556
557 This is like Ruby on Rails' flash data structure. Think of it as a stash that
558 lasts for longer than one request, letting you redirect instead of forward.
559
560 The flash data will be cleaned up only on requests on which actually use
561 $c->flash (thus allowing multiple redirections), and the policy is to delete
562 all the keys which haven't changed since the flash data was loaded at the end
563 of every request.
564
565     sub moose : Local {
566         my ( $self, $c ) = @_;
567
568         $c->flash->{beans} = 10;
569         $c->response->redirect( $c->uri_for("foo") );
570     }
571
572     sub foo : Local {
573         my ( $self, $c ) = @_;
574
575         my $value = $c->flash->{beans};
576
577         # ...
578
579         $c->response->redirect( $c->uri_for("bar") );
580     }
581
582     sub bar : Local {
583         my ( $self, $c ) = @_;
584
585         if ( exists $c->flash->{beans} ) { # false
586         
587         }
588     }
589
590 =item keep_flash @keys
591
592 If you wawnt to keep a flash key for the next request too, even if it hasn't
593 changed, call C<keep_flash> and pass in the keys as arguments.
594
595 =item delete_session REASON
596
597 This method is used to invalidate a session. It takes an optional parameter
598 which will be saved in C<session_delete_reason> if provided.
599
600 =item session_delete_reason
601
602 This accessor contains a string with the reason a session was deleted. Possible
603 values include:
604
605 =over 4
606
607 =item *
608
609 C<address mismatch>
610
611 =item *
612
613 C<session expired>
614
615 =back
616
617 =item session_expire_key $key, $ttl
618
619 Mark a key to expire at a certain time (only useful when shorter than the
620 expiry time for the whole session).
621
622 For example:
623
624     __PACKAGE__->config->{session}{expires} = 1000000000000; # forever
625
626     # later
627
628     $c->session_expire_key( __user => 3600 );
629
630 Will make the session data survive, but the user will still be logged out after
631 an hour.
632
633 Note that these values are not auto extended.
634
635 =back
636
637 =head1 INTERNAL METHODS
638
639 =over 4
640
641 =item setup
642
643 This method is extended to also make calls to
644 C<check_session_plugin_requirements> and C<setup_session>.
645
646 =item check_session_plugin_requirements
647
648 This method ensures that a State and a Store plugin are also in use by the
649 application.
650
651 =item setup_session
652
653 This method populates C<< $c->config->{session} >> with the default values
654 listed in L</CONFIGURATION>.
655
656 =item prepare_action
657
658 This methoid is extended.
659
660 It's only effect is if the (off by default) C<flash_to_stash> configuration
661 parameter is on - then it will copy the contents of the flash to the stash at
662 prepare time.
663
664 =item finalize
665
666 This method is extended and will extend the expiry time, as well as persist the
667 session data if a session exists.
668
669 =item initialize_session_data
670
671 This method will initialize the internal structure of the session, and is
672 called by the C<session> method if appropriate.
673
674 =item create_session_id
675
676 Creates a new session id using C<generate_session_id> if there is no session ID
677 yet.
678
679 =item validate_session_id SID
680
681 Make sure a session ID is of the right format.
682
683 This currently ensures that the session ID string is any amount of case
684 insensitive hexadecimal characters.
685
686 =item generate_session_id
687
688 This method will return a string that can be used as a session ID. It is
689 supposed to be a reasonably random string with enough bits to prevent
690 collision. It basically takes C<session_hash_seed> and hashes it using SHA-1,
691 MD5 or SHA-256, depending on the availibility of these modules.
692
693 =item session_hash_seed
694
695 This method is actually rather internal to generate_session_id, but should be
696 overridable in case you want to provide more random data.
697
698 Currently it returns a concatenated string which contains:
699
700 =over 4
701
702 =item *
703
704 A counter
705
706 =item *
707
708 The current time
709
710 =item *
711
712 One value from C<rand>.
713
714 =item *
715
716 The stringified value of a newly allocated hash reference
717
718 =item *
719
720 The stringified value of the Catalyst context object
721
722 =back
723
724 In the hopes that those combined values are entropic enough for most uses. If
725 this is not the case you can replace C<session_hash_seed> with e.g.
726
727     sub session_hash_seed {
728         open my $fh, "<", "/dev/random";
729         read $fh, my $bytes, 20;
730         close $fh;
731         return $bytes;
732     }
733
734 Or even more directly, replace C<generate_session_id>:
735
736     sub generate_session_id {
737         open my $fh, "<", "/dev/random";
738         read $fh, my $bytes, 20;
739         close $fh;
740         return unpack("H*", $bytes);
741     }
742
743 Also have a look at L<Crypt::Random> and the various openssl bindings - these
744 modules provide APIs for cryptographically secure random data.
745
746 =item dump_these
747
748 See L<Catalyst/dump_these> - ammends the session data structure to the list of
749 dumped objects if session ID is defined.
750
751 =back
752
753 =head1 USING SESSIONS DURING PREPARE
754
755 The earliest point in time at which you may use the session data is after
756 L<Catalyst::Plugin::Session>'s C<prepare_action> has finished.
757
758 State plugins must set $c->session ID before C<prepare_action>, and during
759 C<prepare_action> L<Catalyst::Plugin::Session> will actually load the data from
760 the store.
761
762         sub prepare_action {
763                 my $c = shift;
764
765                 # don't touch $c->session yet!
766
767                 $c->NEXT::prepare_action( @_ );
768
769                 $c->session;  # this is OK
770                 $c->sessionid; # this is also OK
771         }
772
773 =head1 CONFIGURATION
774
775     $c->config->{session} = {
776         expires => 1234,
777     };
778
779 All configuation parameters are provided in a hash reference under the
780 C<session> key in the configuration hash.
781
782 =over 4
783
784 =item expires
785
786 The time-to-live of each session, expressed in seconds. Defaults to 7200 (two
787 hours).
788
789 =item verify_address
790
791 When true, C<<$c->request->address>> will be checked at prepare time. If it is
792 not the same as the address that initiated the session, the session is deleted.
793
794 =item flash_to_stash
795
796 This option makes it easier to have actions behave the same whether they were
797 forwarded to or redirected to. On prepare time it copies the contents of
798 C<flash> (if any) to the stash.
799
800 =back
801
802 =head1 SPECIAL KEYS
803
804 The hash reference returned by C<< $c->session >> contains several keys which
805 are automatically set:
806
807 =over 4
808
809 =item __expires
810
811 This key no longer exists. Use C<session_expires> instead.
812
813 =item __updated
814
815 The last time a session was saved to the store.
816
817 =item __created
818
819 The time when the session was first created.
820
821 =item __address
822
823 The value of C<< $c->request->address >> at the time the session was created.
824 This value is only populated if C<verify_address> is true in the configuration.
825
826 =back
827
828 =head1 CAVEATS
829
830 =head2 Round the Robin Proxies
831
832 C<verify_address> could make your site inaccessible to users who are behind
833 load balanced proxies. Some ISPs may give a different IP to each request by the
834 same client due to this type of proxying. If addresses are verified these
835 users' sessions cannot persist.
836
837 To let these users access your site you can either disable address verification
838 as a whole, or provide a checkbox in the login dialog that tells the server
839 that it's OK for the address of the client to change. When the server sees that
840 this box is checked it should delete the C<__address> sepcial key from the
841 session hash when the hash is first created.
842
843 =head2 Race Conditions
844
845 In this day and age where cleaning detergents and dutch football (not the
846 american kind) teams roam the plains in great numbers, requests may happen
847 simultaneously. This means that there is some risk of session data being
848 overwritten, like this:
849
850 =over 4
851
852 =item 1.
853
854 request a starts, request b starts, with the same session id
855
856 =item 2.
857
858 session data is loaded in request a
859
860 =item 3.
861
862 session data is loaded in request b
863
864 =item 4.
865
866 session data is changed in request a
867
868 =item 5.
869
870 request a finishes, session data is updated and written to store
871
872 =item 6.
873
874 request b finishes, session data is updated and written to store, overwriting
875 changes by request a
876
877 =back
878
879 If this is a concern in your application, a soon to be developed locking
880 solution is the only safe way to go. This will have a bigger overhead.
881
882 For applications where any given user is only making one request at a time this
883 plugin should be safe enough.
884
885 =head1 AUTHORS
886
887 =over 4
888
889 =item Andy Grundman
890
891 =item Christian Hansen
892
893 =item Yuval Kogman, C<nothingmuch@woobling.org> (current maintainer)
894
895 =item Sebastian Riedel
896
897 =back
898
899 And countless other contributers from #catalyst. Thanks guys!
900
901 =head1 COPYRIGHT & LICENSE
902
903         Copyright (c) 2005 the aforementioned authors. All rights
904         reserved. This program is free software; you can redistribute
905         it and/or modify it under the same terms as Perl itself.
906
907 =cut
908
909