Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How to fetch comment visibility in Scriptrunner?

Dimitrios Danampasis
Contributor
December 14, 2021

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

1 answer

1 accepted

1 vote
Answer accepted
PD Sheehan
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
December 16, 2021

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
}
}
Dimitrios Danampasis
Contributor
December 21, 2021

Thanks, Peter, I had to adjust it a bit by following the first article you've shared and it worked.

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
SERVER
VERSION
4.20.0
TAGS
AUG Leaders

Atlassian Community Events