API-GitForge
view release on metacpan or search on metacpan
lib/API/GitForge/GitLab.pm view on Meta::CPAN
package API::GitForge::GitLab;
# ABSTRACT: common git forge operations using the GitLab API
#
# Copyright (C) 2020 Sean Whitton <spwhitton@spwhitton.name>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or (at
# your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
$API::GitForge::GitLab::VERSION = '0.007';
use 5.028;
use strict;
use warnings;
use Role::Tiny::With;
use Carp;
use GitLab::API::v4;
with "API::GitForge::Role::GitForge";
sub _make_api {
my $self = shift;
my %opts = (url => "https://" . $self->{_domain} . "/api/v4");
$opts{private_token} = $self->{_access_token}
if exists $self->{_access_token};
$self->{_api} = GitLab::API::v4->new(%opts);
}
sub _ensure_fork {
my ($self, $upstream) = @_;
my ($path, $repo) = _extract_project_id($upstream);
my $user = $self->{_api}->current_user->{username};
my @user_repos;
my $update_user_repos = sub {
@user_repos
= @{ $self->{_api}->projects({ search => "$user/$repo" }) };
};
my $repo_exists = sub {
grep { $_->{path_with_namespace} eq "$user/$repo" } @user_repos;
};
&$update_user_repos;
if (&$repo_exists) {
$self->_assert_fork_has_parent($upstream);
} else {
$self->{_api}->fork_project("$path/$repo");
until (&$repo_exists) {
sleep 5;
&$update_user_repos;
}
}
return "https://" . $self->{_domain} . "/$user/$repo.git";
}
sub _assert_fork_has_parent {
my ($self, $upstream) = @_;
my ($path, $repo) = _extract_project_id($upstream);
my $user = $self->{_api}->current_user->{username};
my $fork = $self->{_api}->project("$user/$repo");
$fork->{forked_from_project}{path_with_namespace} eq $path . "/" . $repo
or croak
"$user/$repo does not have parent $upstream; don't know what to do";
}
sub _clean_config_repo {
my ($self, $target) = @_;
( run in 1.021 second using v1.01-cache-2.11-cpan-e1769b4cff6 )