From 0df6b8d376c6cbac0ed3df910cdcc10c06bd3e18 Mon Sep 17 00:00:00 2001 From: Julian Blake Kongslie Date: Thu, 18 Mar 2010 13:06:24 -0700 Subject: Add methods for managing group membership, and some more constraints. --- usr/src/libpiny/lib/Piny/Repo.pm | 47 ++++++++++++++++++++++++++++++++++++++-- 1 file changed, 45 insertions(+), 2 deletions(-) (limited to 'usr/src/libpiny/lib/Piny/Repo.pm') diff --git a/usr/src/libpiny/lib/Piny/Repo.pm b/usr/src/libpiny/lib/Piny/Repo.pm index 4783960..6dcabca 100644 --- a/usr/src/libpiny/lib/Piny/Repo.pm +++ b/usr/src/libpiny/lib/Piny/Repo.pm @@ -4,20 +4,43 @@ package Piny::Repo; use Moose; +use Moose::Util::TypeConstraints; use File::Find qw( find ); +use Piny::Group; use Piny::User; +# Types + +subtype 'Reponame' + => as 'Str' + => where { $_ =~ /^[a-zA-Z0-9][a-zA-Z0-9_.-]*$/ } + => message { 'That name is not in the correct format for a piny repo.' } + ; + +subtype 'SimpleText' + => as 'Str' + => where { $_ =~ /^[\x{0020}-\x{FDCF}\x{FDF0}-\x{FFFD}]{1,80}$/ } + => message { 'That description is not in the correct format for a piny repo.' } + ; + # Attributes has 'name' => ( is => 'rw' - , isa => 'Str' + , isa => 'Reponame' , trigger => \&_rename_repo , required => 1 ); +has 'group' => + ( is => 'ro' + , isa => 'Piny::Group' + , lazy_build => 1 + , init_arg => undef + ); + has 'path' => ( is => 'ro' , isa => 'Str' @@ -27,7 +50,7 @@ has 'path' => has 'description' => ( is => 'rw' - , isa => 'Str' + , isa => 'SimpleText' , trigger => \&_set_description , lazy_build => 1 , init_arg => undef @@ -62,6 +85,20 @@ has 'globally_writable' => , init_arg => undef ); +# Public methods + +sub add_access { + my ( $s, @users ) = @_; + + $s->group( )->add_member( @users ); +}; + +sub remove_access { + my ( $s, @users ) = @_; + + $s->group( )->remove_member( @users ); +}; + # Triggers sub _rename_repo { @@ -108,6 +145,12 @@ around BUILDARGS => sub { }; }; +sub _build_group { + my ( $s ) = @_; + + return Piny::Group->new( groupname => "git-" . $s->name( ) ); +}; + sub _build_path { my ( $s ) = @_; -- cgit v1.2.3