com.synopsys.integration.jira.common.rest.service.IssuePropertyService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of int-jira-common Show documentation
Show all versions of int-jira-common Show documentation
A library for using various capabilities of Jira.
/*
* int-jira-common
*
* Copyright (c) 2023 Synopsys, Inc.
*
* Use subject to the terms and conditions of the Synopsys End User Software License and Maintenance Agreement. All rights reserved worldwide.
*/
package com.synopsys.integration.jira.common.rest.service;
import java.io.Serializable;
import com.google.gson.Gson;
import com.synopsys.integration.exception.IntegrationException;
import com.synopsys.integration.jira.common.model.request.JiraRequestFactory;
import com.synopsys.integration.jira.common.model.response.IssuePropertyKeysResponseModel;
import com.synopsys.integration.jira.common.model.response.IssuePropertyResponseModel;
import com.synopsys.integration.jira.common.rest.model.JiraRequest;
import com.synopsys.integration.rest.HttpUrl;
public class IssuePropertyService {
public static final String API_PATH = "/rest/api/2/issue";
public static final String API_PATH_PROPERTIES_PIECE = "/properties";
private final Gson gson;
private final JiraApiClient jiraApiClient;
public IssuePropertyService(Gson gson, JiraApiClient jiraApiClient) {
this.gson = gson;
this.jiraApiClient = jiraApiClient;
}
public IssuePropertyKeysResponseModel getPropertyKeys(String issueKey) throws IntegrationException {
String url = createApiUri(issueKey);
HttpUrl httpUrl = new HttpUrl(url);
JiraRequest request = JiraRequestFactory.createDefaultBuilder()
.url(httpUrl)
.build();
return jiraApiClient.get(request, IssuePropertyKeysResponseModel.class);
}
public IssuePropertyResponseModel getProperty(String issueKey, String propertyKey) throws IntegrationException {
HttpUrl url = createApiUriWithKey(issueKey, propertyKey);
JiraRequest request = JiraRequestFactory.createDefaultBuilder()
.url(url)
.build();
return jiraApiClient.get(request, IssuePropertyResponseModel.class);
}
public void setProperty(String issueKey, String propertyKey, Serializable propertyValue) throws IntegrationException {
String json = gson.toJson(propertyValue);
setProperty(issueKey, propertyKey, json);
}
public void setProperty(String issueKey, String propertyKey, String jsonPropertyValue) throws IntegrationException {
HttpUrl url = createApiUriWithKey(issueKey, propertyKey);
jiraApiClient.put(jsonPropertyValue, url);
}
private HttpUrl createApiUriWithKey(String issueKey, String propertyKey) throws IntegrationException {
return new HttpUrl(createApiUri(issueKey) + "/" + propertyKey);
}
private String createApiUri(String issueKey) {
return jiraApiClient.getBaseUrl() + API_PATH + "/" + issueKey + API_PATH_PROPERTIES_PIECE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy