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,559,589
Community Members
 
Community Events
185
Community Groups

How to remove user space permissions via SpacePermissionManagerInternal

Yep, thats my problem. I want to move from SpacePermissionManager to SpacePermissionManagerInternal becaouse of deprication.

 

This is my scenario:
-user create new space
-script will remove creator from user space permission

This is my code how I want to do it, but have problems here:

 

<code>

import com.atlassian.confluence.internal.security.SpacePermissionContext
import com.atlassian.confluence.internal.security.SpacePermissionManagerInternal
import com.atlassian.confluence.security.SpacePermission
import com.atlassian.confluence.spaces.Space
import com.atlassian.confluence.spaces.SpaceManager
import com.atlassian.spring.container.ContainerManager


def context = SpacePermissionContext.createDefault()
def spaceManager = ContainerManager.getComponent("spaceManager") as SpaceManager
def spaceToClean = spaceManager.getSpace('88GGBBNNYY')
def usersToDelete

spaceToClean.getPermissions().each {spacePerm->
       if( spacePerm.isUserPermission() ) { usersToDelete= spacePerm.getUserSubject() }
}

SpacePermissionManagerInternal.removeAllUserPermissions( usersToDelete, context )
</code>
Problem?

groovy.lang.MissingMethodException: No signature of method: static com.atlassian.confluence.internal.security.SpacePermissionManagerInternal.removeAllUserPermissions() is applicable for argument types: (com.atlassian.confluence.user.ConfluenceUserImpl_$$_jvst242_7...) values: [ConfluenceUserImpl{name='rafal.zydek@test.orangesharing.com', key=8a7d81847ffd62b9017ffe36f90e0000}, ...] at Script357.run(Script357.groovy:18)

1 comment

tried also that varation: 

 

import com.atlassian.confluence.internal.security.SpacePermissionContext
import com.atlassian.confluence.internal.security.SpacePermissionManagerInternal
import com.atlassian.confluence.security.SpacePermission
import com.atlassian.confluence.spaces.Space
import com.atlassian.confluence.spaces.SpaceManager
import com.atlassian.spring.container.ContainerManager
import com.atlassian.sal.api.component.ComponentLocator

def context = SpacePermissionContext.createDefault()
def spaceManager = ContainerManager.getComponent("spaceManager") as SpaceManager
def spaceToClean = spaceManager.getSpace('88GGBBNNYY')
def usersToDelete

spaceToClean.getPermissions().each {spacePerm->
       if( spacePerm.isUserPermission() ) { usersToDelete= spacePerm.getUserSubject() }
}

def spacePermissionManager = ComponentLocator.getComponent(SpacePermissionManagerInternal)
spacePermissionManager.removeAllUserPermissions( usersToDelete, context )
Error:
2022-05-24 13:33:55,113 WARN [component.DefaultComponentLocator]: More than one instance of com.atlassian.confluence.internal.security.SpacePermissionManagerInternal found but none of them has key spacePermissionManagerInternal 2022-05-24 13:33:55,115 ERROR [common.UserScriptEndpoint]: ************************************************************************************* 2022-05-24 13:33:55,115 ERROR [common.UserScriptEndpoint]: Script console script failed: java.lang.NullPointerException: Cannot invoke method removeAllUserPermissions() on null object

Comment

Log in or Sign up to comment
TAGS
AUG Leaders

Atlassian Community Events