Gantry::Utils::AuthCDBI - Class::DBI base model for Gantry Auth


Gantry documentation  | view source Contained in the Gantry distribution.

Index


NAME

Top

Gantry::Utils::AuthCDBI - Class::DBI base model for Gantry Auth

SYNOPSIS

Top

This module expects to retrieve the database connection, username and password from the apache conf file like this:

<Location / > PerlOptions +GlobalRequest

    PerlSetVar auth_dbconn 'dbi:Pg:[database]'
    PerlSetVar auth_dbuser 'myuser'
    PerlSetVar auth_dbpass 'mypass'
</Location>

Or, from the cgi engines constructor:

    my $cgi = Gantry::Engine::CGI->new(
        locations => ...,
        config => {
            auth_dbconn =>  'dbi:Pg:[database]',
            auth_dbuser =>  'myuser',
            auth_dbpass =>  'mypass',
        }
    );

Or, from a script:

    #!/usr/bin/perl

    use Gangtry::Utils::DBConnHelper::Script;

    Gangtry::Utils::DBConnHelper::Script->set_auth_db_conn(
        {
            auth_dbconn =>  'dbi:Pg:[database]',
            auth_dbuser =>  'myuser',
            auth_dbpass =>  'mypass',
        }
    );

DESCRIPTION

Top

This module provide the base methods for Class::DBI, including the db connection through Gantry::Utils::ModelHelper (and its friends in the Gantry::Utils::DBConnHelper family).

METHODS

Top

get_db_options

Returns the dbi connection options, which are usually supplied by Class::DBI's _default_attributes method.

AUTHOR

Top

Tim Keefer <tkeefer@gmail.com>

COPYRIGHT and LICENSE

Top


Gantry documentation  | view source Contained in the Gantry distribution.