Are you in the loop? Keep up with the latest by making sure you're subscribed to Community Announcements. Just click Watch and select Articles.

×
Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Unresolved in-line comments cql function

Edited

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

Suggest an answer

Log in or Sign up to answer

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