| PurpleWiki documentation | Contained in the PurpleWiki distribution. |
PurpleWiki::ACL - Access control list.
use PurpleWiki::ACL;
my $acl = PurpleWiki::ACL->new;
if ($acl->canEdit($user, $pageId)) {
# let the user edit the page
}
else {
# return error message
}
Access control list for PurpleWiki. Currently, always returns true for canRead and false for canAdmin. If LoginToEdit is true in the config file, then will require the user to be logged in for canEdit to return true.
This can easily be subclassed for more sophisticated ACL schemes.
Constructor.
Always returns true.
If LoginToEdit is set, only returns true if user object is defined (i.e. user is logged in).
Also checks to see if IP address/hostname is on the banlist.
Always returns false.
Eugene Eric Kim, <eekim@blueoxen.org>
| PurpleWiki documentation | Contained in the PurpleWiki distribution. |
# PurpleWiki::ACL.pm # # $Id: ACL.pm 464 2004-08-09 01:38:51Z cdent $ # # Copyright (c) Blue Oxen Associates 2002-2004. All rights reserved. # # This file is part of PurpleWiki. PurpleWiki is derived from: # # UseModWiki v0.92 (c) Clifford A. Adams 2000-2001 # AtisWiki v0.3 (c) Markus Denker 1998 # CVWiki CVS-patches (c) Peter Merel 1997 # The Original WikiWikiWeb (c) Ward Cunningham # # PurpleWiki is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the # Free Software Foundation, Inc. # 59 Temple Place, Suite 330 # Boston, MA 02111-1307 USA package PurpleWiki::ACL; use 5.005; use strict; use PurpleWiki::Config; our $VERSION; $VERSION = sprintf("%d", q$Id: ACL.pm 464 2004-08-09 01:38:51Z cdent $ =~ /\s(\d+)\s/); ### constructor sub new { my $this = shift; my (%options) = @_; my $self; my $config = PurpleWiki::Config->instance; $self->{config} = $config; bless($self, $this); return $self; } ### methods sub canRead { my $self = shift; my ($user, $pageId) = @_; return 1; } sub canEdit { my $self = shift; my ($user, $pageId) = @_; if ($self->{config}->LoginToEdit) { (defined $user) ? return 1 : return 0; } # check ban list my ($status, $data) = PurpleWiki::Database::ReadFile($self->{config}->DataDir . "/banlist"); return 1 if (!$status); # No file exists, so no ban my $ip = $ENV{'REMOTE_ADDR'}; my $host = $ENV{REMOTE_HOST}; if ($host eq "") { # Catch errors (including bad input) without aborting the script eval 'use Socket; my $iaddr = inet_aton($ip});' . '$host = gethostbyaddr($iaddr, AF_INET)'; } foreach (split(/\n/, $data)) { next if ((/^\s*$/) || (/^#/)); # Skip empty, spaces, or comments return 0 if ($ip =~ /$_/i); return 0 if ($host =~ /$_/i); } return 1; } sub canAdmin { my $self = shift; my ($user, $pageId) = @_; return 0; } 1; __END__