HOW TO
When reassigning ownership of items in ArcGIS Online, a prerequisite step is to unshare items from special groups, such as shared update groups for all members, before changing or reassigning ownership. This is time-consuming when reassigning ownership of multiple items shared to the shared update groups. It is therefore helpful to automate the process using a Python script.
To automate the workflow, use the following Python script. This article outlines the steps in the script.
This script can be run in a Jupyter Notebook, an ArcGIS Notebook, or as a stand-alone script in a conda or Python environment.
Note: Some functions used in this script are only available in ArcGIS API for Python 2.4 and newer versions.
from arcgis.gis import * import itertools gis = GIS("https://<shortname>.maps.arcgis.com/", "<admin_username>", "<admin_password>")
#Identifying users and signing into AGOL current_owner_username = "<Username of the current owner of content and groups>"
new_owner_username = "<Username of the user who will take the ownership of content and groups>"
current_owner = gis.users.get(current_owner_username)
#Transferring the ownership of ALL GROUPS owned by the old user print("\n***Transferring the ownership of groups...") usergroups = current_owner.groups for group in usergroups:
grp = gis.groups.get(group['id'])
if (grp.owner == current_owner_username):
grp.reassign_to(new_owner_username)
else:
grp.add_users(new_owner_username)
grp.remove_users(current_owner_username)
print("The ownership/membership of groups was successfully updated!")
#Transferring items in folders print("\n***Transferring the ownership of items in folders") folders = current_owner.folders
num_list=[]
for folder in folders:
gis.content.folders.create(folder['title'], new_owner_username)
folderitems = current_owner.items(folder=folder['title']) num_items=int(len(folderitems))
num_list.append(num_items)
print("Transferring "+ str(num_items) + " item(s) from folder: "+folder['title'])
for item in folderitems:
groups=item.sharing.groups.list()
for group in groups:
item.sharing.groups.remove(group)
item.reassign_to(new_owner_username, target_folder=folder['title'])
for group in groups:
item.sharing.groups.add(group)
def sum_list(num_list):
sum = 0
for x in num_list:
sum += x
return sum
total_items=sum_list(num_list)
print("\nTransferred ownership of " +str(total_items) + " item(s) in folders.")
#Transferring items in the root folder print("\n***Transferring the ownership of items in the root folder")
userrootcontent = current_owner.items()
num_root_items=int(len(userrootcontent))
rootfoldername=current_owner.username+"_RootFolder"
gis.content.folders.create(rootfoldername, new_owner_username)
for item in userrootcontent:
groups=item.sharing.groups.list()
for group in groups:
item.sharing.groups.remove(group)
item.reassign_to(new_owner_username, target_folder=rootfoldername)
for group in groups:
item.sharing.groups.add(group)
print("Transferred ownership of "+ str(num_root_items)+" item(s) in Root Folder.")
print ("\nTotal number of items transferred: "+str(total_items+num_root_items)+" items")
The following demonstrates the full script.
from arcgis.gis import * import itertools gis = GIS("https://<shortname>.maps.arcgis.com/", "<admin_username>", "<admin_password>")
#Identifying users and signing into AGOL current_owner_username = "<Username of the current owner of content and groups>"
new_owner_username = "<Username of the user who will take the ownership of content and groups>"
current_owner = gis.users.get(current_owner_username)
#Transferring the ownership of ALL GROUPS owned by the old user print("\n***Transferring the ownership of groups...") usergroups = current_owner.groups for group in usergroups:
grp = gis.groups.get(group['id'])
if (grp.owner == current_owner_username):
grp.reassign_to(new_owner_username)
else:
grp.add_users(new_owner_username)
grp.remove_users(current_owner_username)
print("The ownership/membership of groups was successfully updated!")
#Transferring items in folders print("\n***Transferring the ownership of items in folders") folders = current_owner.folders
num_list=[]
for folder in folders:
gis.content.folders.create(folder['title'], new_owner_username)
folderitems = current_owner.items(folder=folder['title']) num_items=int(len(folderitems))
num_list.append(num_items)
print("Transferring "+ str(num_items) + " item(s) from folder: "+folder['title'])
for item in folderitems:
groups=item.sharing.groups.list()
for group in groups:
item.sharing.groups.remove(group)
item.reassign_to(new_owner_username, target_folder=folder['title'])
for group in groups:
item.sharing.groups.add(group)
def sum_list(num_list):
sum = 0
for x in num_list:
sum += x
return sum
total_items=sum_list(num_list)
print("\nTransferred ownership of " +str(total_items) + " item(s) in folders.")
#Transferring items in the root folder print("\n***Transferring the ownership of items in the root folder")
userrootcontent = current_owner.items()
num_root_items=int(len(userrootcontent))
rootfoldername=current_owner.username+"_RootFolder"
gis.content.folders.create(rootfoldername, new_owner_username)
for item in userrootcontent:
groups=item.sharing.groups.list()
for group in groups:
item.sharing.groups.remove(group)
item.reassign_to(new_owner_username, target_folder=rootfoldername)
for group in groups:
item.sharing.groups.add(group)
print("Transferred ownership of "+ str(num_root_items)+" item(s) in Root Folder.")
print ("\nTotal number of items transferred: "+str(total_items+num_root_items)+" items")
print("\n***Process was completed!***")
Article ID: 000021363
Get help from ArcGIS experts
Download the Esri Support App
You can also download the app to access the chatbot anytime! Download it now.