org.eluder.coveralls.maven.plugin.domain.Job Maven / Gradle / Ivy
/*
* The MIT License (MIT)
*
* Copyright (c) 2013 - 2023, Tapio Rautonen
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package org.eluder.coveralls.maven.plugin.domain;
import java.util.Properties;
import org.eluder.coveralls.maven.plugin.domain.Git.Remote;
import org.eluder.coveralls.maven.plugin.validation.JobValidator;
import org.eluder.coveralls.maven.plugin.validation.ValidationErrors;
public class Job {
private String repoToken;
private String serviceName;
private String serviceJobId;
private String serviceBuildNumber;
private String serviceBuildUrl;
private boolean parallel;
private Properties serviceEnvironment;
private Long timestamp;
private boolean dryRun;
private String branch;
private String pullRequest;
private Git git;
public Job() {
// noop
}
public Job withRepoToken(final String repoToken) {
this.repoToken = repoToken;
return this;
}
public Job withServiceName(final String serviceName) {
this.serviceName = serviceName;
return this;
}
public Job withServiceJobId(final String serviceJobId) {
this.serviceJobId = serviceJobId;
return this;
}
public Job withServiceBuildNumber(final String serviceBuildNumber) {
this.serviceBuildNumber = serviceBuildNumber;
return this;
}
public Job withServiceBuildUrl(final String serviceBuildUrl) {
this.serviceBuildUrl = serviceBuildUrl;
return this;
}
public Job withParallel(final boolean parallel) {
this.parallel = parallel;
return this;
}
public Job withServiceEnvironment(final Properties serviceEnvironment) {
this.serviceEnvironment = serviceEnvironment;
return this;
}
public Job withTimestamp(final Long timestamp) {
this.timestamp = timestamp;
return this;
}
public Job withDryRun(final boolean dryRun) {
this.dryRun = dryRun;
return this;
}
public Job withBranch(final String branch) {
this.branch = branch;
return this;
}
public Job withPullRequest(final String pullRequest) {
this.pullRequest = pullRequest;
return this;
}
public Job withGit(final Git git) {
this.git = git;
return this;
}
public String getRepoToken() {
return repoToken;
}
public String getServiceName() {
return serviceName;
}
public String getServiceJobId() {
return serviceJobId;
}
public String getServiceBuildNumber() {
return serviceBuildNumber;
}
public String getServiceBuildUrl() {
return serviceBuildUrl;
}
public Properties getServiceEnvironment() {
return serviceEnvironment;
}
public Long getTimestamp() {
return timestamp;
}
public boolean isParallel() {
return parallel;
}
public boolean isDryRun() {
return dryRun;
}
public String getBranch() {
if (branch != null && getGit() != null && getGit().getRemotes() != null) {
for (Remote remote : getGit().getRemotes()) {
if (branch.startsWith(remote.getName() + "/")) {
return branch.substring(remote.getName().length() + 1);
}
}
}
return branch;
}
public String getPullRequest() {
return pullRequest;
}
public Git getGit() {
return git;
}
public ValidationErrors validate() {
JobValidator validator = new JobValidator(this);
return validator.validate();
}
}