X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FGitalist%2FModel%2FCollectionOfRepos.pm;h=e9e6fb49e5b4534b46fed7d62225f18137947b58;hb=ca5cfe83ce7641811fa4befb2905d1e62afbc845;hp=2820b535ec7172918e0a40ef1f23137913c0509f;hpb=7bf1a6f5b5a0f73770455e4acbd88982451fde5c;p=catagits%2FGitalist.git diff --git a/lib/Gitalist/Model/CollectionOfRepos.pm b/lib/Gitalist/Model/CollectionOfRepos.pm index 2820b53..e9e6fb4 100644 --- a/lib/Gitalist/Model/CollectionOfRepos.pm +++ b/lib/Gitalist/Model/CollectionOfRepos.pm @@ -1,84 +1,153 @@ package Gitalist::Model::CollectionOfRepos; use Moose; -use Gitalist::Git::CollectionOfRepositories::FromDirectory; -use Gitalist::Git::CollectionOfRepositories::FromListOfDirectories; -use MooseX::Types::Moose qw/Maybe ArrayRef/; +use MooseX::Types::Moose qw/Undef Maybe ArrayRef Str/; use MooseX::Types::Common::String qw/NonEmptySimpleStr/; +use MooseX::Types::LoadableClass qw/ LoadableClass /; +use Gitalist::Git::Types qw/ ArrayRefOfDirs Dir DirOrUndef /; use Moose::Util::TypeConstraints; use Moose::Autobox; +use Path::Class qw/ dir /; use namespace::autoclean; extends 'Catalyst::Model'; +with 'Catalyst::Component::ApplicationAttribute'; with 'Catalyst::Component::InstancePerContext'; -my $repo_dir_t = subtype NonEmptySimpleStr, - where { -d $_ }, - message { 'Cannot find repository dir: "' . $_ . '", please set up gitalist.conf, or set GITALIST_REPO_DIR environment or pass the --repo_dir parameter when starting the application' }; +has class => ( + isa => LoadableClass, + is => 'ro', + lazy => 1, + coerce => 1, + builder => '_build_class', +); -my $arrayof_repos_dir_t = subtype ArrayRef[$repo_dir_t], - where { 1 }, - message { 'Cannot find repository directories listed in config - these are invalid directories: ' . join(', ', $_->flatten) }; +sub _build_class { + my ($self) = @_; -coerce $arrayof_repos_dir_t, - from NonEmptySimpleStr, - via { [ $_ ] }; + if($self->whitelist && -f $self->whitelist) { + return 'Gitalist::Git::CollectionOfRepositories::FromDirectory::WhiteList'; + } + elsif($self->search_recursively) { + return 'Gitalist::Git::CollectionOfRepositories::FromDirectoryRecursive'; + } + elsif ($self->repos) { + return 'Gitalist::Git::CollectionOfRepositories::FromListOfDirectories'; + } + elsif ($self->repos_dir) { + return 'Gitalist::Git::CollectionOfRepositories::FromDirectory'; + } + else { + return "Don't know where to get repositores from. Try a --repos_dir option, or setting up config"; + } +} -has config_repo_dir => ( - isa => NonEmptySimpleStr, - is => 'ro', - init_arg => 'repo_dir', - predicate => 'has_config_repo_dir', +has args => ( + isa => 'HashRef', + is => 'ro', + default => sub { {} }, +); + +has search_recursively => ( + is => 'ro', + isa => 'Bool', + default => 0, +); + +## XX What is this for? +has export_ok => ( + is => 'ro', + isa => 'Str', +); + +has whitelist => ( + is => 'ro', + isa => 'Str', + predicate => '_has_whitelist', ); has repo_dir => ( - isa => $repo_dir_t, + is => 'ro', + isa => DirOrUndef, + coerce => 1, + predicate => '_has_repo_dir', +); + +# Simple directory of repositories (for list) +has repos_dir => ( is => 'ro', - lazy_build => 1 + isa => DirOrUndef, + coerce => 1, + builder => '_build_repos_dir', + lazy => 1, ); +# Directory containing list of one or more repositories has repos => ( - isa => $arrayof_repos_dir_t, is => 'ro', - default => sub { [] }, - traits => ['Array'], - handles => { - _repos_count => 'count', - }, + isa => ArrayRefOfDirs, coerce => 1, ); -sub _build_repo_dir { +sub _build_repos_dir { my $self = shift; - $ENV{GITALIST_REPO_DIR} ? - $ENV{GITALIST_REPO_DIR} - : $self->has_config_repo_dir - ? $self->config_repo_dir - : ''; + my $opts = $self->_application->run_options || {}; + return $self->_has_repo_dir && $self->repo_dir + || $opts->{repos_dir} || $ENV{GITALIST_REPO_DIR} || undef; } -after BUILD => sub { - my $self = shift; - # Explode loudly at app startup time if there is no list of - # repositories or repos dir, rather than on first hit - $self->_repos_count || $self->repo_dir; -}; - sub build_per_context_instance { - my ($self, $app) = @_; - if ($self->_repos_count) { - Gitalist::Git::CollectionOfRepositories::FromListOfDirectories->new(repos => $self->repos); - } - else { - Gitalist::Git::CollectionOfRepositories::FromDirectory->new(repo_dir => $self->repo_dir); - } + my ($self, $ctx) = @_; + + $self->class(); + + if ($self->repos_dir) { $self->repos_dir->resolve } + + my %args = ( + export_ok => $self->export_ok || '', + $self->_has_whitelist ? (whitelist => $self->whitelist) : (), + repos => $self->repos, + repo_dir => $self->repos_dir, + vhost => $ctx->request->uri->host, + %{ $self->args } + ); + + my $class = $self->class; + + $ctx->log->debug("Using class '$class'") if $ctx->debug; + + return $class->new(%args); } __PACKAGE__->meta->make_immutable; __END__ +=encoding UTF-8 + +=head1 NAME + +Gitalist::Model::CollectionOfRepos - Model::CollectionOfRepos module for Gitalist + +=head1 DESCRIPTION + +This Model is a factory for an object implementing the L +interface. + +The simple options passed on the command line (like C<--repos_dir>), a class will by picked by default +L. + +This can be overridden from config by explicitly passing in a class name and args for that class +in config: + + + class MyClassName + + ... + + + =head1 AUTHORS See L for authors.