
CGI::Session::AUS - Session management for Schema::RDBMS::AUS

use CGI::Session::AUS;
$ENV{AUS_DB_DSN} = 'DBI:Pg:';
$session = new CGI::Session::AUS();
$session->login($user, $password);
$session->param('foo');
etc..

CGI::Session::AUS is a subclass of CGI::Session that provides access to sessions being used under Schema::RDBMS::AUS. It automatically configures the session object to use AUS's driver, and also provides access to the extra information that is stored on a session in the AUS schema.

Create a CGI::Session::AUS object the same way as you would create a CGI::Session object; just always make sure the driver is specified as "aus". By default, CGI::Session::AUS will use the Storable serializer to save information to the database. For full details on the CGI::Session interface, see CGI::Session. The extensions that CGI::Session::AUS provides are described below:

The following methods help tie sessions to users (also see the "user" method in "METADATA METHODS" below):
Attempt to log a user in with the given username and password. %log_options is a hash of additional options to pass to Schema::RDBMS::AUS::User's login method. Some options (ip, etc) will be automatically set for you by log_opts, documented below. Any additional parameters passed in will end up in the user's authentication log.
Logging a user in implicitly flushes the session to the database.
If this session has a logged in user, log that user out and disassociate them from the session.
Logging a user out implicitly flushes the session to the database.

The following methods can be used to obtain extra information about the session:
Returns a Schema::RDBMS::AUS::User object if this session is logged in, undef otherwise.
When a session is flushed, if there is an associated user, that user is always saved as well. However, a session is only flushed if it has changed. If you have only changed the user and have not changed the session, you will have to save the user yourself!
Returns the time that this session was created. The format of this time will depend on your database engine. Future versions may convert this to epoch for you (I'm still debating this).
Returns the last time that this session was used.

These methods are used internally by CGI::Session::AUS, but you might find them nifty too:
Returns the remote IP address detected for this session. This comes from one of two places:
This is set in most CGI and mod_perl environments and is considered the most accurate.
CGI::Session does it's own IP detection and puts the detected remote IP here. If REMOTE_ADDR is not set, we will use this as the remote IP.
If neither of these sources are filled in, remote_ip returns undef.
Returns a hash containing options suitable to pass to Schema::RDBMS::AUS::User's login and logout methods, to provide information to write in the authentication log. The following key/value pairs can be returned:
The user's remote IP address, as returned by remote_ip (documented above).
This session's unique ID string.
If we are logged in, the logged in user's name.
If we are logged in, the logged in user's ID.
Our database handle, so that it can be shared with the user object.

The whole purpose of CGI::Session::AUS is to integrate Schema::RDBMS::AUS::User with CGI::Session. In order to facilitate this, the following CGI::Session methods have been overridden in CGI::Session::AUS:

Tyler "Crackerjack" MacDonald <japh@crackerjack.net>

Copyright 2006 Tyler "Crackerjack" MacDonald <japh@crackerjack.net>
This is free software; You may distribute it under the same terms as perl itself.
