CGI::Application::Plugin::Authorization - Authorization framework for CGI::Application
use base qw(CGI::Application); use CGI::Application::Plugin::Authentication; use CGI::Application::Plugin::Authorization;
# default config for runmode authorization __PACKAGE__->authz->config( DRIVER => [ 'HTGroup', FILE => 'htgroup' ], );
# Using a named configuration to distinguish it from # the above configuration __PACKAGE__->authz('dbaccess')->config( DRIVER => [ 'DBI', DBH => $self->dbh, TABLES => ['user', 'access'], JOIN_ON => 'user.id = access.user_id', CONSTRAINTS => { 'user.name' => '__USERNAME__', 'access.table' => '__PARAM_1__', 'access.item_id' => '__PARAM_2__' } ], );
sub admin_runmode { my $self = shift;
# User must be in the admin group to have access to this runmode
return $self->authz->forbidden unless $self->authz->authorize('admin');
# rest of the runmode
...
}
sub update_widget { my $self = shift; my $widget = $self->query->param('widget_id');
# Can this user edit this widget in the widgets table?
return $self->authz->forbidden unless $self->authz('dbaccess')->authorize(widgets => $widget);
# save changes to the widget
...
}
CGI::Application::Plugin::Authorization adds the ability to authorize users for
specific tasks. Once a user has been authenticated and you know who you are
dealing with, you can then use this plugin to control what that user has access
to. It imports two methods (authz and authorization) into your
the CGI::Application manpage module. Both of these methods are interchangeable, so you
should choose one and use it consistently throughout your code. Through the
authz method you can call all the methods of the
CGI::Application::Plugin::Authorization plugin.
There could be multiple ways that you may want to authorize actions in different parts of your code. These differences may conflict with each other. For example you may have runmode level authorization that requires that the user belongs to a certain group. But secondly, you may have row level database authorization that requires that the username column of the table contains the name of the current user. These configurations would conflict with each other since they are authorizing using different information. To solve this you can create multiple named configurations, by specifying a unique name to the c<authz> method.
__PACKAGE__->authz('dbaccess')->config( DRIVER => [ 'DBI', ... ], ); # later $self->authz('dbaccess')->authorize(widgets => $widget_id);
These methods are interchangeable and provided for users that either prefer brevity, or clarity. Everything is controlled through this method call, which will return a CGI::Application::Plugin::Authorization object, or just the class name if called as a class method. When using the plugin, you will always first call $self->authz or __PACKAGE__->authz and then the method you wish to invoke. You can create multiple named authorization modules by providing a unique name to the call to authz. This will allow you to handle different types of authorization in your modules. For example, you could use the main configuration to do runmode level authorization, and use a named configuration to manage database row level authorization.
This method is used to configure the CGI::Application::Plugin::Authorization module. It can be called as an object method, or as a class method.
The following parameters are accepted:
Here you can choose which authorization module(s) you want to use to perform the authorization. For simplicity, you can leave off the CGI::Application::Plugin::Authorization::Driver:: part when specifying the DRIVER parameter. If this module requires extra parameters, you can pass an array reference that contains as the first parameter the name of the module, and the required parameters as the rest of the array. You can provide multiple drivers which will be used, in order, to check the permissions until a valid response is received.
DRIVER => [ 'DBI', dbh => $self->dbh ],
- or -
DRIVER => [
[ 'HTGroup', file => '.htgroup' ],
[ 'LDAP', binddn => '...', host => 'localhost', ... ]
],
Here you can specify a runmode that the user will be redirected to if they fail the authorization checks.
FORBIDDEN_RUNMODE => 'forbidden'
If your forbidden page is external to this module, then you can use this option to specify a URL that the user will be redirected to when they fail the authorization checks. If both FORBIDDEN_URL and FORBIDDEN_RUNMODE are specified, then the latter will take precedence.
FORBIDDEN_URL => 'http://example.com/forbidden.html'
This option allows you to provide a method that should return us the username of the currently logged in user. It will be passed the current authz objects as the only parameter. This is not a required option, and can be omitted if you use the Authentication plugin, or if your authentication system sets $ENV{REMOTE_USER}.
GET_USERNAME => sub { my $authz = shift; return $authz->cgiapp->my_username }
This method takes a list of runmodes that are to be authorized. If a user tries to access one of these runmodes, then they will be redirected to the forbidden page unless they are a member of the proper group. The runmode names can be a list of simple strings, regular expressions, or special directives that start with a colon. This method is cumulative, so if it is called multiple times, the new values are added to existing entries. It returns a list of all entries that have been saved so far.
# match all runmodes __PACKAGE__->authz->authz_runmodes([':all' => 'admin']);
# only protect runmodes one and two __PACKAGE__->authz->authz_runmodes([one => 'admin'], [two => 'admin'], );
# protect only runmodes that start with auth_ __PACKAGE__->authz->authz_runmodes([qr/^authz_/ => 'admin');
# protect all runmodes that *do not* start with public_ __PACKAGE__->authz->authz_runmodes([qr/^(?!public_)/ => 'admin']);
This method accepts the name of a runmode, and if that runmode is a authorized runmode (ie does a user need to be a member of a particular group) then this method returns the corresponding group name.
This method creates a new the CGI::Application::Plugin::Authorization manpage object.
It requires as it's only parameter a the CGI::Application manpage object. This method
should never be called directly, since the authz method that is imported
into the the CGI::Application manpage module will take care of creating the
the CGI::Application::Plugin::Authorization manpage object when it is required.
This method works the same way as new, except that it returns the same
Authorization object for the duration of the request. This method should never
be called directly, since the authz method that is imported into the
the CGI::Application manpage module will take care of creating the
the CGI::Application::Plugin::Authorization manpage object when it is required.
This method will test to see if the current user has access to the given resource. It will take the given parameters and test them against the DRIVER classes that have been configured. A true return value means the user should have access to the given resource.
# is the current user in the admin group if ($self->authz->authorize('admingroup')) { # perform an admin action }
This method will return the name of the currently logged in user. It uses three different methods to figure out the username:
Use the subroutine provided by the GET_USERNAME option to figure out the current username
See if the the CGI::Application::Plugin::Authentication manpage plugin is being used, and retrieve the username through this plugin
See if the REMOTE_USER environment variable is set and use that value
This method will return a list of driver objects that are used for this authorization instance.
This will return the underlying CGI::Application object.
This method is called during the prerun stage to register some custom runmodes that the Authentication plugin requires in order to function.
We'll automatically add the authz_forbidden run mode if you are using
CGI::Application 4.0 or greater.
If you are using an older version of CGI::Application you will need to add it yourself.
sub cgiapp_prerun { my $self = shift;
$self->run_modes( authz_forbidden => \&CGI::Application::Plugin::Authorization::authz_forbidden, );
}
This method is a CGI::Application prerun callback that will be automatically registered for you if you are using CGI::Application 4.0 or greater. If you are using an older version of CGI::Application you will have to create your own cgiapp_prerun method and make sure you call this method from there.
sub cgiapp_prerun { my $self = shift;
$self->CGI::Application::Plugin::Authentication::prerun_callback();
}
This method is be called during the prerun stage if the current user is not authorized, and they are trying to access an authz runmode. It will redirect to the page that has been configured as the forbidden page, based on the value of FORBIDDEN_RUNMODE or FORBIDDEN_URL If nothing is configured then the default forbidden page will be used.
This will return a forbidden page. It checks the configuration to see if there is a custom runmode or URL to redirect to, otherwise it calls the builtin authz_forbidden runmode.
This runmode is provided if you do not want to create your own forbidden runmode. It will display a simple error page to the user.
This runmode is provided for convenience when an external redirect needs to be done. It just returns an empty string.
In a CGI::Application module:
package MyCGIApp;
use base qw(CGI::Application); use CGI::Application::Plugin::AutoRunmode; use CGI::Application::Plugin::Authentication; use CGI::Application::Plugin::Authorization; # Configure Authentication MyCGIApp->authen->config( DRIVER => 'Dummy', ); MyCGIApp->authen->protected_runmodes(qr/^admin_/);
# Configure Authorization (manages runmode authorization) MyCGIApp->authz->config( DRIVER => [ 'DBI', DBH => $self->dbh, TABLES => ['user', 'usergroup', 'group'], JOIN_ON => 'user.id = usergroup.user_id AND usergroup.group_id = group.id', CONSTRAINTS => { 'user.name' => '__USERNAME__', 'group.name' => '__GROUP__', } ], ); MyCGIApp->authz->authz_runmodes( [a_runmode => 'a_group'], [qr/^admin_/ => 'admin'], [':all' => 'all_group'], [sub {my $rm = shift; return ($rm eq "dangerous_rm")} => 'super_group'], );
# Configure second Authorization module using a named configuration __PACKAGE__->authz('dbaccess')->config( DRIVER => [ 'DBI', DBH => $self->dbh, TABLES => ['user', 'access'], JOIN_ON => 'user.id = access.user_id', CONSTRAINTS => { 'user.name' => '__USERNAME__', 'access.table' => '__PARAM_1__', 'access.item_id' => '__PARAM_2__' } ], );
sub start : Runmode { my $self = shift;
}
sub admin_one : Runmode { my $self = shift; # The user will only get here if they are logged in and # belong to the admin group
}
sub admin_widgets : Runmode { my $self = shift; # The user will only get here if they are logged in and # belong to the admin group
# Can this user edit this widget in the widgets table?
my $widget_id = $self->query->param('widget_id');
return $self->authz->forbidden unless $self->authz('dbaccess')->authorize(widgets => $widget_id);
}
The module is definately in a usable state, but there are still some parts missing that I would like to add in:
This is alpha software and as such, the features and interface are subject to change. So please check the Changes file when upgrading.
the CGI::Application::Plugin::Authentication manpage, the CGI::Application manpage, perl(1)
Cees Hek <ceeshek@gmail.com>
Thanks to SiteSuite (http://www.sitesuite.com.au) for funding the development of this plugin and for releasing it to the world.
Copyright (c) 2005, SiteSuite. All rights reserved.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENCE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.