The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Linux Build Status Windows Build status Dependency Status Coverage Status

CGI::ACL

Decide whether to allow a client to run this script

VERSION

Version 0.01

SYNOPSIS

Does what it says on the tin.

use CGI::Info;
use CGI::ACL;

my $acl = CGI::ACL->new();
# ...
my $denied = $acl->all_denied(info => CGI::Info->new());

SUBROUTINES/METHODS

new

Creates a CGI::ACL object.

allow_ip

Give an IP (or CIDR) that we allow to connect to us

use CGI::ACL;

# Allow Google to connect to us
my $acl = CGI::ACL->new()->allow_ip(ip => '8.35.80.39');

deny_country

Give a country, or a reference to a list of countries, that we will not allow access to

use CGI::ACL;

# Don't allow the UK to connect to us
my $acl = CGI::ACL->new()->deny_country('UK');

all_denied

If any of the restrictions return false, return false, which should allow access

use CGI::Info;
use CGI::Lingua;
use CGI::ACL;

# Allow Google to connect to us
my $acl = CGI::ACL->new()->allow_ip(ip => '8.35.80.39');

if($acl->all_denied(info => CGI::Info->new())) {
    print 'You are not allowed to view this site';
    return;
}

$acl = CGI::ACL->new()->deny_country(country => 'br');

if($acl->all_denied(lingua => CGI::Lingua->new(supported => ['en']))) {
    print 'Brazilians cannot view this site for now';
    return;
}

AUTHOR

Nigel Horne, <njh at bandsman.co.uk>

BUGS

Please report any bugs or feature requests to bug-cgi-acl at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=CGI-ACL. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SEE ALSO

CGI::Info

SUPPORT

You can find documentation for this module with the perldoc command.

perldoc CGI::ACL

You can also look for information at:

LICENSE AND COPYRIGHT

Copyright 2017 Nigel Horne.

This program is released under the following licence: GPL