Name

CatalystX::Usul::Model::Identity::Users::DBIC - Database user storage

Version

0.1.$Revision: 402 $

Synopsis

use CatalystX::Usul::Model::Identity::Users::DBIC;

my $class = CatalystX::Usul::Model::Identity::Users::DBIC;

my $user_obj = $class->new( $app, $config );

Description

User storage model for relational databases. This model makes use of DBIx::Class. It inherits from CatalystX::Usul::Model::Identity::Users and implements the required list of factory methods

Subroutines/Methods

build_per_context_instance

Make copies of DBIC model references available only after the application setup is complete

get_features

Returns a hashref of features supported by this store. Can be checked using the supports method implemented in CatalystX::Usul::Model

f_activate_account

Searches the user model for the supplies user name and if it exists sets the active column to true

f_change_password

Calls update_password in CatalystX::Usul::Identity::Users with the authenticate flag set to false, thereby forcing the user to authenticate. Passes the supplied arguments through

f_check_password

Calls authenticate in CatalystX::Usul::Identity::Users. Returns true if the authentication succeeded, false otherwise

f_create

Creates a new user object on the user model. Adds the user to the list of roles appropriate to the user profile

f_delete

Deletes a user object from the user model

f_get_primary_rid

Returns undef as primary role ids are not supported by this storage backend

f_get_user

Returns a hash ref of fields for the request user

f_get_users_by_rid

Returns an empty list as primary role ids are not supported by this storage backend

f_is_user

Returns true if the supplied user exists, false otherwise

f_list

Returns a list reference of users in the database

f_set_password

Calls update_password in CatalystX::Usul::Identity::Users with the authenticate flag set to true, which bypasses user authentication. Passes the supplied arguments through

f_update

Updates columns on the user object for the supplied user

f_update_password

Updates the users password in the database

f_user_report

Generate a report from the data in the user database

Diagnostics

None

Configuration and Environment

None

Dependencies

CatalystX::Usul::Model::Identity::Users
Crypt::PasswdMD5

Incompatibilities

There are no known incompatibilities in this module

Bugs and Limitations

There are no known bugs in this module. Please report problems to the address below. Patches are welcome

Author

Peter Flanigan, <Support at RoxSoft.co.uk>

License and Copyright

Copyright (c) 2008 Peter Flanigan. All rights reserved

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic

This program is distributed in the hope that it will be useful, but WITHOUT WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE