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

How can I assign a new group permission to all existing spaces in Confluence ?

Gabriele Loibichler March 22, 2015

Hi,

We have a few hundred spaces, and need permission for a new group for all spaces. Is it possible to do this maybe with an sql-script ? 

Changing default permission will only take effect to new spaces, and I really don't want change space permission by "hand" .

I would be glad to get a simple solution.

Gabriele

2 answers

7 votes
Stephen Deutsch
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.
March 23, 2015

You can do this using the Confluence CLI (paid plugin), or you can use this method (I find it works best with the Chrome browser, but Firefox and IE should work too).

  1. Confluence Remote API access should be activated (usually is by default).
  2. You need to be logged in as a Confluence Administrator (a member of "confluence-administrators" group).
  3. Open up the javascript console (usually by pressing F12 and finding "Console" or Ctrl+Shift+J)
  4. Copy/paste the following code, but before copying, change "group_name" to the name of the group you wish to add permissions for, and for each permission you want to add, remove the "//" at the beginning of the line (they correspond from left to right each of the permissions in the Manage Permissions screen): 

    jQuery.ajax({dataType: 'json',
                contentType: 'application/json',
                type: 'POST',
                url: contextPath + '/rpc/json-rpc/confluenceservice-v2/getSpaces',
                success: function( data ) {
                  jQuery(data).each(function() {
                    if (this.type === "global") {
                      var requestArray = [];
                      var permissionsArray = [];
                      //permissionsArray.push("VIEWSPACE");
                      //permissionsArray.push("EDITSPACE");
                      //permissionsArray.push("EXPORTPAGE");
                      //permissionsArray.push("SETPAGEPERMISSIONS");
                      //permissionsArray.push("REMOVEPAGE");
                      //permissionsArray.push("EDITBLOG");
                      //permissionsArray.push("REMOVEBLOG");
                      //permissionsArray.push("COMMENT");
                      //permissionsArray.push("REMOVECOMMENT");
                      //permissionsArray.push("CREATEATTACHMENT");
                      //permissionsArray.push("REMOVEATTACHMENT");
                      //permissionsArray.push("REMOVEMAIL");
                      //permissionsArray.push("EXPORTSPACE");
                      //permissionsArray.push("SETSPACEPERMISSIONS");
                      requestArray.push(permissionsArray);
                      requestArray.push("group_name");
                      requestArray.push(this.key);
                      jQuery.ajax({dataType: 'json',
                                  contentType: 'application/json',
                                  type: 'POST',
                                  url: contextPath + '/rpc/json-rpc/confluenceservice-v2/addPermissionsToSpace',
                                  data: JSON.stringify(requestArray),
                                  success: function( data ) {
                                    console.log(data);
                                  }
                      });
                    }
                  });
                }
    });
  5. Press enter, and you should hopefully see true a bunch of times (or with a high number next to it).  You should be done!
Michael Mramor January 17, 2019

Hi,

was trying your script, but i get the following error in the console:

Uncaught SyntaxError: Invalid or unexpected token 

appreciate your help.

thx, cheers, Mike

Thiago Schmid February 12, 2019

What can I change to remove the permission from all spaces instead?

Adam Gaudry February 21, 2019

Hi @Stephen Deutsch 

This is awesome! Thanks so much. One question: is there a way I can use this to apply it to an array of spaces, rather than just all of them?

Best wishes

Adam

Like WW likes this
Mariusz Kowalczykowski June 10, 2021

This worked great! Awesome!

Like Gabriele Loibichler likes this
0 votes
Justin Paulsen May 16, 2019

This worked for me except that it did not set the "Delete Own" permission.  I'm guessing this either changed name or is a new permission.

Adam Repala February 18, 2020

Ive been working on this and the below command does Delete Own Permission:

permissionsArray.push("REMOVEOWNCONTENT");

Justin Paulsen February 18, 2020

Thanks!

 

I will give that a try next time I need it.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events