![JAR search and dependency download from the Maven repository](/logo.png)
me.shib.java.lib.jiraclient.Comment Maven / Gradle / Ivy
package me.shib.java.lib.jiraclient;
import net.sf.json.JSON;
import net.sf.json.JSONObject;
import java.util.Date;
import java.util.Map;
/**
* Represents an issue comment.
*/
public class Comment extends Resource {
private String issueKey = null;
private User author = null;
private String body = null;
private Date created = null;
private Date updated = null;
private User updatedAuthor = null;
private Visibility visibility = null;
/**
* Creates a comment from a JSON payload.
*
* @param restclient REST client instance
* @param json JSON payload
*/
protected Comment(RestClient restclient, JSONObject json, String issueKey) {
super(restclient);
this.issueKey = issueKey;
if (json != null)
deserialise(json);
}
/**
* Retrieves the given comment record.
*
* @param restclient REST client instance
* @param issue Internal JIRA ID of the associated issue
* @param id Internal JIRA ID of the comment
* @return a comment instance
* @throws JiraException when the retrieval fails
*/
public static Comment get(RestClient restclient, String issue, String id)
throws JiraException {
JSON result = null;
try {
result = restclient.get(getBaseUri() + "issue/" + issue + "/comment/" + id);
} catch (Exception ex) {
throw new JiraException("Failed to retrieve comment " + id + " on issue " + issue, ex);
}
if (!(result instanceof JSONObject))
throw new JiraException("JSON payload is malformed");
return new Comment(restclient, (JSONObject) result, issue);
}
public Visibility getVisibility() {
return visibility;
}
private void deserialise(JSONObject json) {
Map map = json;
self = Field.getString(map.get("self"));
id = Field.getString(map.get("id"));
author = Field.getResource(User.class, map.get("author"), restclient);
body = Field.getString(map.get("body"));
created = Field.getDateTime(map.get("created"));
updated = Field.getDateTime(map.get("updated"));
updatedAuthor = Field.getResource(User.class, map.get("updatedAuthor"), restclient);
Object obj = map.get("visibility");
visibility = Field.getResource(Visibility.class, map.get("visibility"), restclient);
}
/**
* Updates the comment body.
*
* @param body Comment text
* @throws JiraException when the comment update fails
*/
public void update(String body) throws JiraException {
update(body, null, null);
}
/**
* Updates the comment body with limited visibility.
*
* @param body Comment text
* @param visType Target audience type (role or group)
* @param visName Name of the role or group to limit visibility to
* @throws JiraException when the comment update fails
*/
public void update(String body, String visType, String visName)
throws JiraException {
JSONObject req = new JSONObject();
req.put("body", body);
if (visType != null && visName != null) {
JSONObject vis = new JSONObject();
vis.put("type", visType);
vis.put("value", visName);
req.put("visibility", vis);
}
JSON result = null;
try {
String issueUri = getBaseUri() + "issue/" + issueKey;
result = restclient.put(issueUri + "/comment/" + id, req);
} catch (Exception ex) {
throw new JiraException("Failed add update comment " + id, ex);
}
if (!(result instanceof JSONObject)) {
throw new JiraException("JSON payload is malformed");
}
deserialise((JSONObject) result);
}
@Override
public String toString() {
return created + " by " + author;
}
public User getAuthor() {
return author;
}
public String getBody() {
return body;
}
public Date getCreatedDate() {
return created;
}
public User getUpdateAuthor() {
return updatedAuthor;
}
public Date getUpdatedDate() {
return updated;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy