diff options
Diffstat (limited to 'usr/src/libpiny')
-rw-r--r-- | usr/src/libpiny/debian/changelog | 6 | ||||
-rw-r--r-- | usr/src/libpiny/lib/Piny/Repo.pm | 22 | ||||
-rw-r--r-- | usr/src/libpiny/lib/Piny/User.pm | 26 |
3 files changed, 54 insertions, 0 deletions
diff --git a/usr/src/libpiny/debian/changelog b/usr/src/libpiny/debian/changelog index 891d7f4..79952b6 100644 --- a/usr/src/libpiny/debian/changelog +++ b/usr/src/libpiny/debian/changelog @@ -1,3 +1,9 @@ +libpiny-perl (0.5) unstable; urgency=low + + * Allow listing repos and querying access rights. + + -- Julian Blake Kongslie <jblake@omgwallhack.org> Tue, 29 Jun 2010 22:28:59 -0700 + libpiny-perl (0.4) unstable; urgency=low * Switch to native packaging. diff --git a/usr/src/libpiny/lib/Piny/Repo.pm b/usr/src/libpiny/lib/Piny/Repo.pm index 6dcabca..26d936a 100644 --- a/usr/src/libpiny/lib/Piny/Repo.pm +++ b/usr/src/libpiny/lib/Piny/Repo.pm @@ -99,6 +99,12 @@ sub remove_access { $s->group( )->remove_member( @users ); }; +sub has_access { + my ( $s, $user ) = @_; + + return $s->owner( )->uid( ) == $user->uid( ) or $user->has_group( $s->group( ) ); +}; + # Triggers sub _rename_repo { @@ -132,6 +138,22 @@ sub _change_owner { find( { wanted => sub { chown( $new_owner->uid( ), -1, $_ ) or die "Couldn't chown $_: $!"; }, no_chdir => 1 }, $s->path( ) ); }; +# Class methods + +sub all_repos { + my ( $class, $dir ) = @_; + + $dir = "/srv/git" unless defined $dir; + + my @ret; + + find( { wanted => sub { print "$_\n"; if ( /^[^.].*\.git$/ ) { $File::Find::prune = 1; push( @ret, $File::Find::name ); }; } }, $dir ); + + @ret = map { print "$_ "; s/^\Q$dir\E\/?//; s/\.git$//; print "$_\n"; $class->new( name => $_ ); } @ret; + + return @ret; +}; + # Builder methods # If constructed with just one argument, then treat it as a repo name. diff --git a/usr/src/libpiny/lib/Piny/User.pm b/usr/src/libpiny/lib/Piny/User.pm index e0687a3..f9a5f0d 100644 --- a/usr/src/libpiny/lib/Piny/User.pm +++ b/usr/src/libpiny/lib/Piny/User.pm @@ -77,6 +77,32 @@ sub remove_group { }; }; +sub has_group { + my ( $s, $group ) = @_; + + foreach my $owngroup ( $s->groups( ) ) { + return if $owngroup->gid( ) == $group->gid( ); + }; + + return; +}; + +# Class methods + +sub all_users { + my ( $class ) = @_; + + endpwent( ); + + my @ret; + + while ( my @info = getpwent( ) ) { + push( @ret, $class->new( uid => $info[2] ) ); + }; + + return @ret; +}; + # Builder methods # If constructed with just one argument, then |