All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.azure.toolkit.lib.containerregistry.Tag Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License. See License.txt in the project root for license information.
 */

package com.microsoft.azure.toolkit.lib.containerregistry;

import com.azure.containers.containerregistry.models.ArtifactTagProperties;
import com.microsoft.azure.toolkit.lib.Azure;
import com.microsoft.azure.toolkit.lib.account.IAccount;
import com.microsoft.azure.toolkit.lib.account.IAzureAccount;
import com.microsoft.azure.toolkit.lib.common.model.AbstractAzResource;
import com.microsoft.azure.toolkit.lib.common.model.AbstractAzResourceModule;
import com.microsoft.azure.toolkit.lib.common.model.Deletable;
import lombok.SneakyThrows;

import javax.annotation.Nonnull;
import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;
import java.time.OffsetDateTime;
import java.util.Collections;
import java.util.List;

public class Tag extends AbstractAzResource implements Deletable {
    protected Tag(@Nonnull String name, @Nonnull TagModule module) {
        super(name, module);
    }

    protected Tag(@Nonnull Tag tag) {
        super(tag);
    }

    @Nonnull
    @Override
    public List> getSubModules() {
        return Collections.emptyList();
    }

    @Nonnull
    @Override
    protected String loadStatus(@Nonnull ArtifactTagProperties remote) {
        return Status.OK;
    }

    @Nonnull
    @Override
    @SneakyThrows(UnsupportedEncodingException.class)
    public String getPortalUrl() {
        final IAccount account = Azure.az(IAzureAccount.class).account();
        final Repository repository = this.getParent().getParent();
        final ContainerRegistry registry = repository.getParent();
        final String encodedRegistryId = URLEncoder.encode(registry.getId(), "UTF-8");
        final String encodedRepositoryName = URLEncoder.encode(repository.getName(), "UTF-8");
        return String.format("%s/#blade/Microsoft_Azure_ContainerRegistries/TagMetadataBlade/registryId/%s/repositoryName/%s/tag/%s", account.getPortalUrl(), encodedRegistryId, encodedRepositoryName, this.getName());
    }

    @Nonnull
    public String getDigest() {
        return this.remoteOptional().map(ArtifactTagProperties::getDigest).orElse("");
    }

    @Nonnull
    public OffsetDateTime getLastUpdatedOn() {
        return this.remoteOptional().map(ArtifactTagProperties::getLastUpdatedOn).orElse(OffsetDateTime.MIN);
    }

    public String getFullName() {
        final Repository repository = this.getParent().getParent();
        final ContainerRegistry registry = repository.getParent();
        return String.format("%s/%s:%s", registry.getLoginServerUrl(), repository.getName(), this.getName());
    }

    public String getImageName() {
        final Repository repository = this.getParent().getParent();
        return String.format("%s:%s", repository.getName(), this.getName());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy