| AxKit-App-TABOO documentation | Contained in the AxKit-App-TABOO distribution. |
AxKit::App::TABOO::XSP::User - User information management and authorization tag library for TABOO
Add the user: namespace to your XSP <xsp:page> tag, e.g.:
<xsp:page
language="Perl"
xmlns:xsp="http://apache.org/xsp/core/v1"
xmlns:user="http://www.kjetil.kjernsmo.net/software/TABOO/NS/User"
>
Add this taglib to AxKit (via httpd.conf or .htaccess):
AxAddXSPTaglib AxKit::App::TABOO::XSP::User
This XSP taglib provides a few tags to retrieve, set, modify and save user information, as it communicates with TABOO Data objects, particulary AxKit::App::TABOO::Data::User and <AxKit::App::TABOO::Data::User::Contributor>.
Apache::AxKit::Language::XSP::SimpleTaglib has been used to write this taglib.
<store/>It will take whatever data it finds in the Apache::Request object
held by AxKit, and hand it to a new AxKit::App::TABOO::Data::User
object, which will use whatever data it finds useful. It may also take
newpasswd1 and newpasswd2 fields, and if they are encountered,
they will be checked if they are equal and then the password will be
encrypted before it is sent to the Data object. The Data object is
then instructed to save itself.
<new-user/>This tag will store the contents of an Apache::Request object in the data store, but perform little checks on the data given. The only thing it checks is that the username isn't in use and allready. Then, if the authlevel is different from 1, it is checked if the logged in user is privileged to set the authlevel.
<get-passwd username="foo"/>This tag will return the password of a user. The username may be given
in an attribute or child element named username.
<get-authlevel username="foo"/>This tag will return the authorization level of a user, which is an
integer that may be used to grant or deny access to certain elements
or pages. The username may be given in an attribute or child element
named username.
<get-user username="foo"/>This tag will return and XML representation of the user
information. The username may be given in an attribute or child
element named username.
<exists username="foo"/>This tag will check if a user allready exists. Like
<password-matches> this tag is a boolean tag, which has
child elements <true> and <false>. It takes a
username, which may be given as an attribute or a child element named
username, and if the user is found in the data store, the contents
of <true> child element is included, otherwise, the
contents of <false> is included.
<is-authorized authlevel="5" username="foo"><valid-authlevels/>This returns a list of the authorization levels that the present user can legitimitely set. This is an ugly and temporary solution, I think it should be worked out elsewhere than the taglib, but I couldn't find a way to do it....
<random-password/>Shamelessly stolen from Jörg Walter's AxKit::XSP::Auth taglib, this would generate a new random password, see his documentation for details.
<authnuser/>This tag will return the username of the logged in and authenticated user.
Currently, <exists> checks if a user exists by checking if
the real name is defined. This is likely to change in the future. Do
not rely on this behaviour, but do make sure every-one has a real
name!
See AxKit::App::TABOO.
| AxKit-App-TABOO documentation | Contained in the AxKit-App-TABOO distribution. |
package AxKit::App::TABOO::XSP::User; use 5.6.0; use strict; use warnings; use Apache::AxKit::Language::XSP::SimpleTaglib; use Apache::AxKit::Exception; use AxKit; use AxKit::App::TABOO; use AxKit::App::TABOO::Data::User; use AxKit::App::TABOO::Data::User::Contributor; use Session; use Apache::Cookie; use Crypt::GeneratePassword; use Data::Dumper; use vars qw/$NS/; our $VERSION = '0.4'; # Some constants # TODO: This stuff should go somewhere else! use constant GUEST => 0; use constant NEWMEMBER => 1; use constant MEMBER => 2; use constant OLDTIMER => 3; use constant ASSISTANT => 4; use constant EDITOR => 5; use constant ADMIN => 6; use constant DIRECTOR => 7; use constant GURU => 8; use constant GOD => 9;
$NS = 'http://www.kjetil.kjernsmo.net/software/TABOO/NS/User'; # Shamelessly lifted from Joergs module sub makeSalt { my $result = '$1$'; my @chars = ('.', '/', 0..9, 'A'..'Z', 'a'..'z'); for (0..7) { $result .= $chars[int(rand(64))]; } $result .= '$'; return $result; } # This little sub takes the user name of the user we want to change # the authlevel of, and returns a hash with the smallest and highest # level we are allowed to give that user. sub authlevel_extremes { my $username = shift; my $r = Apache->request; my $session = AxKit::App::TABOO::session($r); my $authlevel = AxKit::App::TABOO::authlevel($session); my $maxlevel = ($username eq AxKit::App::TABOO::loggedin($session)) ? $authlevel : ($authlevel - 2); my $user = AxKit::App::TABOO::Data::User::Contributor->new(); my $oldlevel = $user->load_authlevel($username); my $minlevel = ($authlevel < AxKit::App::TABOO::XSP::User::ADMIN) ? $oldlevel : 0; return {'minlevel' => $minlevel, 'maxlevel' => $maxlevel}; } sub _sanatize_username { my $tmp = lc shift; $tmp =~ tr/a-z/_/cs; return $tmp; } sub _exists_check { my $username = shift; my $user = AxKit::App::TABOO::Data::User->new(); if (($username =~ m/comment|thread|all|respond|edit/) || ($user->load_name($username)) || ($username ne _sanatize_username($username))) { return 1; } else { return 0; } } package AxKit::App::TABOO::XSP::User::Handlers;
sub store { return << 'EOC'; my %args = map { $_ => join('', $cgi->param($_)) } $cgi->param; my $session = AxKit::App::TABOO::session($r); my $editinguser = AxKit::App::TABOO::loggedin($session); my $authlevel = AxKit::App::TABOO::authlevel($session); AxKit::Debug(9, $editinguser . " logged in at level " . $authlevel); unless (defined($authlevel)) { throw Apache::AxKit::Exception::Retval( return_code => AUTH_REQUIRED, -text => "Not authenticated and authorized with an authlevel"); } my $user = AxKit::App::TABOO::Data::User::Contributor->new(); # Retrieve old data $user->load(what => '*', limit => {'username' => $args{'username'}}); if ($args{'username'} eq 'guest') { throw Apache::AxKit::Exception::Retval( return_code => FORBIDDEN, -text => "Leave the guest user alone!"); } if ($args{'username'} eq $editinguser) { # It is the user editing his own data if ($args{'authlevel'} > $authlevel) { throw Apache::AxKit::Exception::Retval( return_code => FORBIDDEN, -text => "Can you say privilege escalation, huh?"); } if (($args{'newpasswd1'}) && ($args{'newpasswd2'})) { # So, we want to update password if ($args{'newpasswd1'} eq $args{'newpasswd2'}) { $args{'passwd'} = crypt($args{'newpasswd1'}, AxKit::App::TABOO::XSP::User::makeSalt()); delete $args{'newpasswd1'}; delete $args{'newpasswd2'}; } else { throw Apache::AxKit::Exception::Error(-text => "Passwords don't match"); } } } else { # It is a higher privileged user editing another user's data. my @changing = $user->apache_request_changed(\%args); # These are the fields sought to be changed AxKit::Debug(10, "Changing fields: " . join(", ", @changing)); if ((scalar @changing == 1) && grep(/authlevel/, @changing)) { # Then, it is only the authlevel that is to be changed, and OK levels are given by authlevel_extremes. my $extremes = AxKit::App::TABOO::XSP::User::authlevel_extremes($args{'username'}); if ((${$extremes}{'minlevel'} > ${$extremes}{'maxlevel'}) || ($args{'authlevel'} > ${$extremes}{'maxlevel'}) || ($args{'authlevel'} < ${$extremes}{'minlevel'})) { throw Apache::AxKit::Exception::Retval( return_code => FORBIDDEN, -text => "You may only set an authlevel between " . ${$extremes}{'minlevel'} . " and " . ${$extremes}{'maxlevel'} . ". Your level: " . $authlevel); } } else { # Any other fields require ADMIN privs if ($authlevel < AxKit::App::TABOO::XSP::User::ADMIN) { throw Apache::AxKit::Exception::Retval( return_code => FORBIDDEN, -text => "Admin Privileges are needed to edit other user's data. Your level: " . $authlevel); } } } $user->populate(\%args); $user->save(); EOC }
sub new_user { return << 'EOC'; my %args = map { $_ => join('', $cgi->param($_)) } $cgi->param; my $user = AxKit::App::TABOO::Data::User::Contributor->new(); if($args{'username'} =~ m/comment|thread|all|respond|edit/) { throw Apache::AxKit::Exception::Retval( return_code => FORBIDDEN, -text => "Username matching a administratively prohibited name") } if($user->load_name($args{'username'})) { throw Apache::AxKit::Exception::Retval( return_code => FORBIDDEN, -text => "User exists allready") } my $extremes = AxKit::App::TABOO::XSP::User::authlevel_extremes(''); if(($args{'authlevel'} > ${$extremes}{'maxlevel'}) || (! $args{'authlevel'})) { $args{'authlevel'} = 1; } $args{'passwd'} = crypt($args{'passwd'}, AxKit::App::TABOO::XSP::User::makeSalt()); $user->populate(\%args); AxKit::Debug(9, "Saving new user " . $args{'username'}); $user->save(); EOC }
sub get_passwd : expr attribOrChild(username) { return << 'EOC'; my $user = AxKit::App::TABOO::Data::User->new(); $user->load_passwd($attr_username); EOC }
sub get_authlevel : expr attribOrChild(username) { return << 'EOC'; my $user = AxKit::App::TABOO::Data::User::Contributor->new(); $user->load_authlevel($attr_username); EOC }
sub get_user : struct attribOrChild(username) { return << 'EOC'; my $user = AxKit::App::TABOO::Data::User::Contributor->new(); $user->load(what => '*', limit => {'username' => $attr_username}); my $doc = XML::LibXML::Document->new(); my $root = $doc->createElementNS('http://www.kjetil.kjernsmo.net/software/TABOO/NS/User/Output', 'user:get-user'); $doc->setDocumentElement($root); $user->write_xml($doc, $root); # Return an XML representation EOC }
sub exists : attribOrChild(username) { return ''; # Gotta be something here } sub exists___true__open { return << 'EOC'; if (AxKit::App::TABOO::XSP::User::_exists_check($attr_username)) { EOC } sub exists___true { return '}' } sub exists___false__open { return << 'EOC'; unless (AxKit::App::TABOO::XSP::User::_exists_check($attr_username)) { EOC } sub exists___false { return '}' }
sub is_authorized : attribOrChild(username,authlevel) { return ''; # Gotta be something here } sub is_authorized___true__open { return << 'EOC'; my $session = AxKit::App::TABOO::session($r); my $editinguser = AxKit::App::TABOO::loggedin($session); my $authlevel = AxKit::App::TABOO::authlevel($session); AxKit::Debug(9, $editinguser . " is authorized at level " . $authlevel); if ((defined($editinguser)) && (defined($authlevel))) { if (($attr_username eq $editinguser) || (($attr_authlevel) && ($attr_authlevel <= $authlevel))) # Grant access { EOC } sub is_authorized___true { return '} }' } sub is_authorized___false__open { return << 'EOC'; my $session = AxKit::App::TABOO::session($r); my $editinguser = AxKit::App::TABOO::loggedin($session); my $authlevel = AxKit::App::TABOO::authlevel($session); if ((! defined($editinguser) || ($attr_username ne $editinguser)) && ((! defined($authlevel)) || ($attr_authlevel > $authlevel))) # Deny access { EOC } sub is_authorized___false { return '}' }
sub valid_authlevels : nodelist({http://www.kjetil.kjernsmo.net/software/TABOO/NS/User/Output}level) attribOrChild(username) { return << 'EOC'; # my @levels = ("Guest", "New member", "Member", "Oldtimer", "Assistant", "Editor", "Administrator", "Director", "Guru", "God"); my $extremes = AxKit::App::TABOO::XSP::User::authlevel_extremes($attr_username); (${$extremes}{'minlevel'} > ${$extremes}{'maxlevel'}) ? () : (${$extremes}{'minlevel'} .. ${$extremes}{'maxlevel'}); EOC }
sub random_password : expr attribOrChild(lang,signs,numbers,minlen,maxlen) { return 'Crypt::GeneratePassword::word(int($attr_minlen)||7,int($attr_maxlen)||7,$attr_lang,int($attr_signs),(defined $attr_numbers?int($attr_numbers):2))'; }
sub authnuser : expr { return 'AxKit::App::TABOO::loggedin(AxKit::App::TABOO::session($r));' } 1;