The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

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

Unresolved in-line comments cql function

Aileen
March 14, 2018

Trying to create a custom cql function (using ScriptRunner) to return all unresolved comments, but everything with inline comments (be they unresolved or not) is showing up.

Any ideas?

import com.atlassian.confluence.pages.Page
import com.atlassian.confluence.pages.PageManager
import com.atlassian.sal.api.component.ComponentLocator
import com.atlassian.confluence.spaces.Space
import com.atlassian.confluence.spaces.SpaceManager
import com.atlassian.confluence.pages.Comment
import com.atlassian.confluence.pages.CommentManager


String spaceKey = params[0]


def ids = []

def spaceManager = ComponentLocator.getComponent(SpaceManager)
def pageManager = ComponentLocator.getComponent(PageManager)
def commentManager = ComponentLocator.getComponent(CommentManager)

Space space = spaceManager.getSpace(spaceKey)

    for (Page page : pageManager.getPages(space, true)) {
        List<Comment> allComments = commentManager.getPageComments(page.getId(), new Date(0))
        for (Comment comment in allComments) {
            if (comment.isInlineComment() && !comment.getStatus().isResolved()) {
                ids << String.valueOf(page.getId())
            }
        }
    }


return ids

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Aileen
April 6, 2018

I got it working by the way, but having performance problems, because of all the loops... and it's not the prettiest. Any suggestions would be appreciated. I don't know how to get all pages with inline comments, without getting all pages with comments first, and then narrowing it down.

import com.atlassian.confluence.pages.Page
import com.atlassian.confluence.pages.PageManager
import com.atlassian.sal.api.component.ComponentLocator
import com.atlassian.confluence.spaces.Space
import com.atlassian.confluence.spaces.SpaceManager
import com.atlassian.confluence.pages.Comment
import com.atlassian.confluence.pages.CommentManager


String spaceKey = params[0]


def ids = []

def spaceManager = ComponentLocator.getComponent(SpaceManager)
def pageManager = ComponentLocator.getComponent(PageManager)
def commentManager = ComponentLocator.getComponent(CommentManager)

Space space = spaceManager.getSpace(spaceKey)

for (Page page : pageManager.getPages(space, true)) {
    for (Comment comment : commentManager.getPageComments(page.getId(), new Date(0))) {
        if (comment.isInlineComment() && comment.getStatus().isOpen()) {
            def parent = comment.getParent()
            if ((parent != null && parent.getStatus().isOpen())|| parent == null) {
                ids << String.valueOf(page.getId())
            }
        }
    }
}

return ids
TAGS
AUG Leaders

Atlassian Community Events