You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
In Scriptrunner, I am trying to create a Scripted Field for a Jira Service Management project.
The field will be fetching the date of the last public comment that was made by a user who is a member of a specific group.
Basically, I want to check if that comment is public or internal but I cannot get this information from the comment (com.atlassian.jira.issue.comments.CommentImpl).
I found this article by Adaptavist but I cannot adjust it in my script:
https://library.adaptavist.com/entity/get-the-visibility-of-new-comments-in-jira-service-desk
Any help on how to get the comment visibility and adjust it to the script below will be much appreciated:
import com.atlassian.jira.component.ComponentAccessor
def commentManager = ComponentAccessor.commentManager
def comments = commentManager.getComments(issue).reverse()
def lastCommentDate = null
def groupX = ComponentAccessor.groupManager.getGroup("group-x")
for (comment in comments){
def author = comment.authorApplicationUser.username
// Here, I want to check if the comment is public or internal
if (ComponentAccessor.groupManager.getUserNamesInGroup(groupX).contains(author)) {
lastCommentDate = comment.updated
break;
}
}
if(lastCommentDate)
return lastCommentDate
There are some references in the scriptrunner documentation pages and the Adaptavist library for that:
In short, you need to look at the properties of the comment:
def commentPropertyService = ComponentAccessor.getComponent(CommentPropertyService)
final def SD_PUBLIC_COMMENT = "sd.public.comment"
def isInternal = { Comment c ->
def commentProperty = commentPropertyService.getProperty(user, c.id, SD_PUBLIC_COMMENT)
.getEntityProperty().getOrNull()
if (commentProperty) {
def props = new JsonSlurper().parseText(commentProperty.getValue())
props['internal']?.toBoolean()
} else {
null
}
}
Thanks, Peter, I had to adjust it a bit by following the first article you've shared and it worked.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.