Beagle

 view release on metacpan or  search on metacpan

lib/Beagle/Cmd/Command/follow.pm  view on Meta::CPAN


has type => (
    isa           => 'BeagleBackendType',
    is            => 'rw',
    documentation => 'type of the backend',
    traits        => ['Getopt'],
);

no Any::Moose;
__PACKAGE__->meta->make_immutable;

sub command_names { qw/follow clone/ };

sub execute {
    my ( $self, $opt, $args ) = @_;
    die "beagle follow repo_uri1 [...]" unless @$args;
    die "can't follow multiple beagles with --name"
      if @$args > 1 && $self->name;

    my $name  = $self->name;
    my $depth = $self->depth;
    my $type  = $self->type;
    require File::Which;
    if ($type) {
        if ( $type eq 'git' && !File::Which::which('git') ) {
            die "no git found";
        }
    }
    else {
        if ( File::Which::which('git') ) {
            $type = 'git';
        }
        else {
            warn 'no git found, back to fs';
            $type = 'fs';
        }
    }

    for my $root (@$args) {

        $depth = 0 unless $depth > 0;

        if ( !$name ) {
            $root =~ m{(([^/\\]+[/\\]){$depth}[^/\\]+)$};
            $name = $1 or die "can't resolve the name";
            $name =~ s/\.git$//;
        }

        $name = tweak_name( $name );

        my $f_root = catdir( backends_root(), split /\//, $name );
        if ( -e $f_root ) {
            if ( $self->force ) {
                remove_tree($f_root);
            }
            else {
                die "$f_root already exists, use -f or --force to overwrite";
            }
        }

        my $parent = encode( locale_fs => parent_dir($f_root) );
        make_path($parent) or die "failed to create $parent" unless -d $parent;

        if ( $type eq 'git' ) {
            require Beagle::Wrapper::git;
            my $git = Beagle::Wrapper::git->new( verbose => $self->verbose );

            my $default    = core_config;
            my $user_name  = $default->{user_name};
            my $user_email = $default->{user_email};

            my ( $ret, $out ) = $git->clone( $root, $f_root );
            die "failed to clone $root: $out" unless $ret;
            $git->root($f_root);
            if ($user_name) {
                $git->config( '--add', 'user.name', $user_name );
            }
            if ($user_email) {
                $git->config( '--add', 'user.email', $user_email );
            }
        }
        elsif ( $type eq 'fs' ) {
            require File::Copy::Recursive;
            File::Copy::Recursive::dircopy( $root, $f_root );
        }

        my $all = roots();

        $all->{$name} = {
            remote => $root,
            local  => catdir( backends_root(), split /\//, $name ),
            type   => $type,
        };

        set_roots($all);

        puts "followed $root.";
        undef $name;
    }
}


1;

__END__

=head1 NAME

Beagle::Cmd::Command::follow - follow beagles

=head1 SYNOPSIS

    $ beagle follow /path/to/foo.git                    # named as "foo"
    $ beagle follow /path/to/foo/bar.git --depth 2      # named as "foo/bar"
    $ beagle follow /path/to/foo.git --name foobar      # manually name
    $ beagle follow /path/to/foo.git /path/to/bar.git

=head1 AUTHOR

    sunnavy <sunnavy@gmail.com>



( run in 1.587 second using v1.01-cache-2.11-cpan-6736b670a1e )