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

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,556,439
Community Members
 
Community Events
184
Community Groups

Add group-permissions for each page in a space

Hello community, I want to bulk add a group-permission to all pages in a space. I already came up with a script, but it does not work as expected yet. 

  • When I run this script for a complete space (with about 300 pages), the script does nothing, it does not even show any output at all, also no error message. 
  • When I run this script for e.g. only one page (restricted via a simple if-statement in the for loop) the permission is successfully set. 
  • When I run this script for the first 3 pages (also restricted via a simple if statement and a counter) the permission is set for the last page of the iteration. Strangely the first two pages do not get the group-permission added. 


Here is my current (simplified) implementation. 

import com.atlassian.confluence.labels.Label
import com.atlassian.confluence.pages.Page
import com.atlassian.confluence.pages.PageManager
import com.atlassian.confluence.spaces.Space
import com.atlassian.confluence.spaces.SpaceManager
import com.atlassian.sal.api.component.ComponentLocator
import com.atlassian.confluence.api.service.content.SpaceService
import com.atlassian.confluence.core.ContentPermissionManager
import com.atlassian.user.GroupManager
import com.atlassian.confluence.security.ContentPermission
import static com.atlassian.confluence.security.ContentPermission.EDIT_PERMISSION

def spaceManager = ComponentLocator.getComponent(SpaceManager)
def pageManager = ComponentLocator.getComponent(PageManager)
def spaceService = ComponentLocator.getComponent(SpaceService)
def contentPermissionManager =ComponentLocator.getComponent(ContentPermissionManager)


Space sourceSpace = spaceManager.getSpace("TEST")

def groupPermission = ContentPermission.createGroupPermission(EDIT_PERMISSION, "editor-group")

for (Page page : pageManager.getPages(sourceSpace, true)) {
  def currentPage = page
  contentPermissionManager.addContentPermission(groupPermission, currentPage)
}

 
What is wrong here? Do I miss something along the lines of a commit/save for each and every page? 

Thanks, Christoph

0 answers

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events