Adding upstream version 2.25.15.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
This commit is contained in:
parent
10737b110a
commit
b543f2e88d
485 changed files with 191459 additions and 0 deletions
42
lib/Devscripts/Salsa/list_repos.pm
Normal file
42
lib/Devscripts/Salsa/list_repos.pm
Normal file
|
@ -0,0 +1,42 @@
|
|||
# Lists projects of group/user
|
||||
package Devscripts::Salsa::list_repos; # list_projects
|
||||
|
||||
use strict;
|
||||
use Devscripts::Output;
|
||||
use Moo::Role;
|
||||
|
||||
sub list_repos {
|
||||
my ($self, $match) = @_;
|
||||
my $projects;
|
||||
my $count = 0;
|
||||
my $opts = {
|
||||
order_by => 'name',
|
||||
sort => 'asc',
|
||||
simple => 1,
|
||||
archived => $self->config->archived,
|
||||
($match ? (search => $match) : ()),
|
||||
};
|
||||
if ($self->group_id) {
|
||||
$projects
|
||||
= $self->api->paginator('group_projects', $self->group_id, $opts);
|
||||
} else {
|
||||
$projects
|
||||
= $self->api->paginator('user_projects', $self->user_id, $opts);
|
||||
}
|
||||
while ($_ = $projects->next) {
|
||||
$count++;
|
||||
print <<END;
|
||||
Id : $_->{id}
|
||||
Name: $_->{name}
|
||||
URL : $_->{web_url}
|
||||
|
||||
END
|
||||
}
|
||||
unless ($count) {
|
||||
ds_warn "No projects found";
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
1;
|
Loading…
Add table
Add a link
Reference in a new issue