/* * Copyright (C) 2011 JFrog Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.jfrog.build.client; import com.google.common.collect.*; import org.apache.commons.lang.StringUtils; import org.jfrog.build.api.BuildFileBean; import java.io.File; import java.lang.Comparable; import java.util.Map; import java.util.Properties; /** * Simple value object holding an artifact deploy request details. * * @author Yossi Shaul */ public class DeployDetails implements Comparable<DeployDetails> { /** * Artifact deployment path. */ String artifactPath; /** * The file to deploy. */ File file; /** * sha1 checksum of the file to deploy. */ String sha1; /** * md5 checksum of the file to deploy. */ String md5; /** * Properties to attach to the deployed file as matrix params. */ ArrayListMultimap<String, String> properties; /** * Target deploy repository. */ private String targetRepository; /** * @return Return the target deployment repository. */ public String getTargetRepository() { return targetRepository; } public String getArtifactPath() { return artifactPath; } public File getFile() { return file; } public ArrayListMultimap<String, String> getProperties() { return properties; } public String getSha1() { return sha1; } public String getMd5() { return md5; } public int compareTo(DeployDetails that) { return this.artifactPath.compareTo(that.artifactPath); } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } DeployDetails details = (DeployDetails) o; return artifactPath.equals(details.artifactPath); } @Override public int hashCode() { return artifactPath.hashCode(); } public static class Builder { private DeployDetails deployDetails; public Builder() { deployDetails = new DeployDetails(); } public DeployDetails build() { if (deployDetails.file == null || !deployDetails.file.exists()) { throw new IllegalArgumentException("File not found: " + deployDetails.file); } if (StringUtils.isBlank(deployDetails.targetRepository)) { throw new IllegalArgumentException("Target repository cannot be empty"); } if (StringUtils.isBlank(deployDetails.artifactPath)) { throw new IllegalArgumentException("Artifact path cannot be empty"); } return deployDetails; } public Builder bean(BuildFileBean bean) { Properties beanProperties = bean.getProperties(); if (beanProperties != null) { ArrayListMultimap<String, String> multimap = ArrayListMultimap.create(); for (Map.Entry<String, String> entry : Maps.fromProperties(beanProperties).entrySet()) { multimap.put(entry.getKey(), entry.getValue()); } deployDetails.properties = multimap; } deployDetails.sha1 = bean.getSha1(); deployDetails.md5 = bean.getMd5(); return this; } public Builder file(File file) { deployDetails.file = file; return this; } public Builder targetRepository(String targetRepository) { deployDetails.targetRepository = targetRepository; return this; } public Builder artifactPath(String artifactPath) { deployDetails.artifactPath = artifactPath; return this; } public Builder sha1(String sha1) { deployDetails.sha1 = sha1; return this; } public Builder md5(String md5) { deployDetails.md5 = md5; return this; } public Builder addProperty(String key, String value) { if (deployDetails.properties == null) { deployDetails.properties = ArrayListMultimap.create(); } deployDetails.properties.put(key, value); return this; } public Builder addProperties(Map<String, String> propertiesToAdd) { if (deployDetails.properties == null) { deployDetails.properties = ArrayListMultimap.create(); } deployDetails.properties.putAll(Multimaps.forMap(propertiesToAdd)); return this; } public Builder addProperties(ArrayListMultimap<String, String> propertiesToAdd) { if (deployDetails.properties == null) { deployDetails.properties = ArrayListMultimap.create(); } deployDetails.properties.putAll(propertiesToAdd); return this; } } }