mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-23 18:55:18 +01:00
19f3ebd353
This patch provides a command-line tool for managing Harbor resources like users, projects, images, etc.
28 lines
964 B
Python
28 lines
964 B
Python
from harborclient import base
|
|
|
|
|
|
class RepositoryManager(base.Manager):
|
|
def get(self, id):
|
|
"""Get a Repository."""
|
|
return self._get("/repositories/%s" % id)
|
|
|
|
def list(self, project):
|
|
"""Get repositories accompany with relevant project and repo name."""
|
|
repositories = self._list("/repositories?project_id=%s" % project)
|
|
return repositories
|
|
|
|
def list_tags(self, repo_name):
|
|
"""Get the tag of the repository."""
|
|
return self.api.client.get(
|
|
"/repositories/%s/tags" % repo_name)
|
|
|
|
def get_manifests(self, repo_name, tag):
|
|
"""Get manifests of a relevant repository."""
|
|
return self.api.client.get(
|
|
"/repositories/%(repo_name)s/tags/%(tag)s/manifest"
|
|
% {"repo_name": repo_name, "tag": tag})
|
|
|
|
def get_top(self, count):
|
|
"""Get public repositories which are accessed most."""
|
|
return self._list("/repositories/top?count=%s" % count)
|