1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-27 10:03:20 +00:00

- Add p5-DBIx-Safe 1.2.5

The purpose of DBIx::Safe is to give controlled, limited access to an
application, rather than simply passing it a raw database handle through DBI.
DBIx::Safe acts as a wrapper to the database, by only allowing through the
commands you tell it to. It filters all things related to the database handle -
methods and attributes.

The typical usage is for your application to create a database handle via a
normal DBI call to new(), then pass that to DBIx::Safe->new(), which will return
you a DBIx::Safe object. After specifying exactly what is and what is not
allowed, you can pass the object to the untrusted application. The object will
act very similar to a DBI database handle, and in most cases can be used
interchangeably.

By default, nothing is allowed to run at all. There are many things you can
control. You can specify which SQL commands are allowed, by indicating the first
word in the SQL statement (e.g. 'SELECT'). You can specify which database
methods are allowed to run (e.g. 'ping'). You can specify a regular expression
that allows matching SQL statements to run (e.g. 'qr{SET TIMEZONE}'). You can
specify a regular expression that is NOT allowed to run (e.g. qr(UPDATE xxx}).
Finally, you can indicate which database attributes are allowed to be read and
changed (e.g. 'PrintError'). For all of the above, there are matching methods to
remove them as well.

WWW: http://search.cpan.org/dist/DBIx-Safe/

Feature safe:	yes
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2011-12-05 11:44:19 +00:00
parent ef0637a389
commit dcb485b324
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=286921
5 changed files with 59 additions and 0 deletions

View File

@ -378,6 +378,7 @@
SUBDIR += p5-DBIx-RetryOverDisconnects
SUBDIR += p5-DBIx-SQLEngine
SUBDIR += p5-DBIx-SQLite-Simple
SUBDIR += p5-DBIx-Safe
SUBDIR += p5-DBIx-SearchBuilder
SUBDIR += p5-DBIx-Sequence
SUBDIR += p5-DBIx-Simple

View File

@ -0,0 +1,27 @@
# New ports collection makefile for: p5-DBIx-Safe
# Date created: 2011-12-05
# Whom: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= DBIx-Safe
PORTVERSION= 1.2.5
CATEGORIES= databases perl5
MASTER_SITES= CPAN
MASTER_SITE_SUBDIR= CPAN:TURNSTEP
PKGNAMEPREFIX= p5-
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Safer access to your database through a DBI database handle
BUILD_DEPENDS= p5-DBD-Pg>=1.49:${PORTSDIR}/databases/p5-DBD-Pg \
p5-DBI>=1.490:${PORTSDIR}/databases/p5-DBI
RUN_DEPENDS= p5-DBD-Pg>=1.49:${PORTSDIR}/databases/p5-DBD-Pg \
p5-DBI>=1.490:${PORTSDIR}/databases/p5-DBI
PERL_CONFIGURE= yes
MAN3= DBIx::Safe.3
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (DBIx-Safe-1.2.5.tar.gz) = 73279fd98b20034d3735dee67e2b89ac63d55449c3c64dd1a7ba0df10fbe0acf
SIZE (DBIx-Safe-1.2.5.tar.gz) = 16958

View File

@ -0,0 +1,24 @@
The purpose of DBIx::Safe is to give controlled, limited access to an
application, rather than simply passing it a raw database handle through DBI.
DBIx::Safe acts as a wrapper to the database, by only allowing through the
commands you tell it to. It filters all things related to the database handle -
methods and attributes.
The typical usage is for your application to create a database handle via a
normal DBI call to new(), then pass that to DBIx::Safe->new(), which will return
you a DBIx::Safe object. After specifying exactly what is and what is not
allowed, you can pass the object to the untrusted application. The object will
act very similar to a DBI database handle, and in most cases can be used
interchangeably.
By default, nothing is allowed to run at all. There are many things you can
control. You can specify which SQL commands are allowed, by indicating the first
word in the SQL statement (e.g. 'SELECT'). You can specify which database
methods are allowed to run (e.g. 'ping'). You can specify a regular expression
that allows matching SQL statements to run (e.g. 'qr{SET TIMEZONE}'). You can
specify a regular expression that is NOT allowed to run (e.g. qr(UPDATE xxx}).
Finally, you can indicate which database attributes are allowed to be read and
changed (e.g. 'PrintError'). For all of the above, there are matching methods to
remove them as well.
WWW: http://search.cpan.org/dist/DBIx-Safe/

View File

@ -0,0 +1,5 @@
%%SITE_PERL%%/DBIx/Safe.pm
%%SITE_PERL%%/%%PERL_ARCH%%/auto/DBIx/Safe/.packlist
@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/DBIx/Safe
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/DBIx
@dirrmtry %%SITE_PERL%%/DBIx