Skip to content

harbor_cli.harbor.artifact

Attributes

AttrType = TypeVar('AttrType') module-attribute

Classes

ArtifactName

Bases: NamedTuple

Source code in harbor_cli/harbor/artifact.py
class ArtifactName(NamedTuple):
    domain: str | None
    project: str
    repository: str
    reference: str

Attributes

domain: str | None instance-attribute
project: str instance-attribute
repository: str instance-attribute
reference: str instance-attribute

Functions

parse_artifact_name(s: str) -> ArtifactName

Splits an artifact string into domain name (optional), project, repo, and reference (tag or digest).

Raises ValueError if the string is not in the correct format.

Parameters:

Name Type Description Default
s str

Artifact string in the form of [domain/]/{@sha256:,:}

required

Returns:

Type Description
ArtifactName

Named tuple of domain name (optional), project, repo, and reference (tag or digest).

Source code in harbor_cli/harbor/artifact.py
def parse_artifact_name(s: str) -> ArtifactName:
    """Splits an artifact string into domain name (optional), project,
    repo, and reference (tag or digest).

    Raises ValueError if the string is not in the correct format.

    Parameters
    ----------
    s : str
        Artifact string in the form of [domain/]<project>/<repo>{@sha256:<digest>,:<tag>}

    Returns
    -------
    ArtifactName
        Named tuple of domain name (optional), project, repo, and reference (tag or digest).
    """
    parts = s.split("/")
    if len(parts) == 3:
        domain, project, rest = parts
    elif len(parts) == 2:
        project, rest = parts
        domain = None
    else:
        raise ArtifactNameFormatError(s)

    # TODO: make this more robust
    if "@" in rest:
        repo, tag_or_digest = rest.split("@")
    elif ":" in rest:
        parts = rest.split(":")
        if len(parts) != 2:
            raise ArtifactNameFormatError(s)
        repo, tag_or_digest = parts
    else:
        raise ArtifactNameFormatError(s)

    return ArtifactName(domain, project, repo, tag_or_digest)

get_artifact_architecture(artifact: Artifact) -> str | None

Source code in harbor_cli/harbor/artifact.py
def get_artifact_architecture(artifact: Artifact) -> str | None:
    try:
        return str(artifact.extra_attrs["architecture"])  # type: ignore[index]
    except KeyError:
        return None

get_artifact_os(artifact: Artifact) -> str | None

Source code in harbor_cli/harbor/artifact.py
def get_artifact_os(artifact: Artifact) -> str | None:
    try:
        return str(artifact.extra_attrs["os"])  # type: ignore[index]
    except KeyError:
        return None

get_artifact_severity(artifact: Artifact) -> str | None

Attempt to get the severity string for an artifact. Not every artifact has a scan overview, and not every scan overview has a severity string.

Source code in harbor_cli/harbor/artifact.py
def get_artifact_severity(artifact: Artifact) -> str | None:
    """Attempt to get the severity string for an artifact.
    Not every artifact has a scan overview, and not every scan overview
    has a severity string.
    """
    try:
        return artifact.scan.severity  # type: ignore
    except AttributeError:
        return None