pre-0.02 commit
[catagits/Web-Session.git] / lib / Plack / Middleware / Session.pm
CommitLineData
bd992981 1package Plack::Middleware::Session;
2use strict;
3use warnings;
4
de784fad 5our $VERSION = '0.02';
30cc0a71 6our $AUTHORITY = 'cpan:STEVAN';
7
bd992981 8use Plack::Session;
9use Plack::Request;
10use Plack::Response;
ad80e445 11use Plack::Util;
12use Scalar::Util;
bd992981 13
14use parent 'Plack::Middleware';
15
d6af4aa8 16use Plack::Util::Accessor qw(
17 state
18 store
19 session_class
20);
bd992981 21
fe1bfe7d 22sub prepare_app {
23 my $self = shift;
fe1bfe7d 24
d6af4aa8 25 $self->session_class( 'Plack::Session' ) unless $self->session_class;
26 $self->state( 'Cookie' ) unless $self->state;
ad80e445 27
28 $self->state( $self->inflate_backend('Plack::Session::State', $self->state) );
29 $self->store( $self->inflate_backend('Plack::Session::Store', $self->store) );
30}
31
32sub inflate_backend {
33 my($self, $prefix, $backend) = @_;
34
35 return $backend if defined $backend && Scalar::Util::blessed $backend;
36
37 my @class;
38 push @class, $backend if defined $backend; # undef means the root class
39 push @class, $prefix;
40
41 Plack::Util::load_class(@class)->new();
fe1bfe7d 42}
43
bd992981 44sub call {
45 my $self = shift;
46 my $env = shift;
47
d6af4aa8 48 $env->{'plack.session'} = $self->session_class->new(
3dbe8dfa 49 state => $self->state,
bd992981 50 store => $self->store,
51 request => Plack::Request->new( $env )
52 );
53
fe1bfe7d 54 my $res = $self->app->($env);
55 $self->response_cb($res, sub {
56 my $res = Plack::Response->new(@{$_[0]});
726a37c1 57 $env->{'plack.session'}->finalize( $res );
b2504d01 58 $res = $res->finalize;
59 $_[0]->[0] = $res->[0];
60 $_[0]->[1] = $res->[1];
fe1bfe7d 61 });
bd992981 62}
63
641;
65
66__END__
ac4892f4 67
68=pod
69
70=head1 NAME
71
72Plack::Middleware::Session - Middleware for session management
73
74=head1 SYNOPSIS
75
3d92cf47 76 use Plack::Builder;
ac4892f4 77
3d92cf47 78 my $app = sub {
536da026 79 my $env = shift;
80 return [
81 200,
82 [ 'Content-Type' => 'text/plain' ],
83 [ 'Hello, your Session ID is ' . $env->{'plack.session'}->id ]
84 ];
3d92cf47 85 };
86
87 builder {
88 enable 'Session';
89 $app;
90 };
91
ad80e445 92 # Or, use the File store backend (great if you use multiprocess server)
93 # For more options, see perldoc Plack::Session::Store::File
94 builder {
95 enable 'Session', store => 'File';
96 $app;
97 };
98
ac4892f4 99=head1 DESCRIPTION
100
3d92cf47 101This is a Plack Middleware component for session management. By
ad80e445 102default it will use cookies to keep session state and store data in
103memory. This distribution also comes with other state and store
104solutions. See perldoc for these backends how to use them.
3d92cf47 105
536da026 106It should be noted that we store the current session in the
107C<plack.session> key inside the C<$env> where you can access it
108as needed. Additionally, as of version 0.09, you can call the
109C<session> method of a L<Plack::Request> instance to fetch
110whatever is stored in C<plack.session>.
111
3d92cf47 112=head2 State
113
114=over 4
115
116=item L<Plack::Session::State>
117
118This will maintain session state by passing the session through
119the request params. It does not do this automatically though,
120you are responsible for passing the session param.
121
122=item L<Plack::Session::State::Cookie>
123
124This will maintain session state using browser cookies.
125
126=back
127
128=head2 Store
129
130=over 4
131
132=item L<Plack::Session::Store>
133
134This is your basic in-memory session data store. It is volatile storage
135and not recommended for multiprocessing environments. However it is
136very useful for development and testing.
137
138=item L<Plack::Session::Store::File>
139
140This will persist session data in a file. By default it uses
141L<Storable> but it can be configured to have a custom serializer and
142deserializer.
143
20ede533 144=item L<Plack::Session::Store::Cache>
3d92cf47 145
20ede533 146This will persist session data using the L<Cache> interface.
3d92cf47 147
148=item L<Plack::Session::Store::Null>
149
150Sometimes you don't care about storing session data, in that case
151you can use this noop module.
152
153=back
154
30cc0a71 155=head1 OPTIONS
156
157The following are options that can be passed to this mdoule.
158
159=over 4
160
161=item I<state>
162
163This is expected to be an instance of L<Plack::Session::State> or an
164object that implements the same interface. If no option is provided
165the default L<Plack::Session::State::Cookie> will be used.
166
167=item I<store>
168
169This is expected to be an instance of L<Plack::Session::Store> or an
170object that implements the same interface. If no option is provided
171the default L<Plack::Session::Store> will be used.
172
173It should be noted that this default is an in-memory volatile store
174is only suitable for development (or single process servers). For a
175more robust solution see L<Plack::Session::Store::File> or
176L<Plack::Session::Store::Cache>.
177
178=item I<session_class>
179
180This can be used to override the actual session class. It currently
181defaults to L<Plack::Session> but you can substitute any class which
182implements the same interface.
183
184=back
185
ac4892f4 186=head1 BUGS
187
188All complex software has bugs lurking in it, and this module is no
189exception. If you find a bug please either email me, or add the bug
190to cpan-RT.
191
192=head1 AUTHOR
193
194Tatsuhiko Miyagawa
195
196Stevan Little E<lt>stevan.little@iinteractive.comE<gt>
197
198=head1 COPYRIGHT AND LICENSE
199
200Copyright 2009 Infinity Interactive, Inc.
201
202L<http://www.iinteractive.com>
203
204This library is free software; you can redistribute it and/or modify
205it under the same terms as Perl itself.
206
207=cut
208
209