Copy Organisation into another project

Maria Burrows August 20, 2017

Service Desk v3.3.0

jira v 7.3.0

 

Hi there

Wondering if anyone is aware of a s 'simple' method to copy all organisations defined in one service desk project to another service desk project?  

thanks
Maria

2 answers

1 vote
Thanos Batagiannis _Adaptavist_
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.
August 22, 2017

Hi Maria, 

I would suggest to try the following script. I 'll be honest with you, I have not tested it thoroughly but give it a chance and if it fails shout will troubleshoot it together... 

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.project.Project
import com.atlassian.jira.user.ApplicationUser
import com.atlassian.servicedesk.api.organization.CustomerOrganization
import com.atlassian.servicedesk.api.organization.OrganizationService
import com.atlassian.servicedesk.api.ServiceDeskManager
import com.atlassian.servicedesk.api.ServiceDeskService
import com.atlassian.servicedesk.api.organization.OrganizationService
import com.atlassian.servicedesk.api.util.paging.SimplePagedRequest
import com.atlassian.servicedesk.api.ServiceDesk
import com.onresolve.scriptrunner.runner.customisers.WithPlugin

@WithPlugin("com.atlassian.servicedesk")

def projectFromKey = "ABCC"
def projectToKey = "ABCCD"
def asUser = ComponentAccessor.userManager.getUserByKey("admin")

def fromProject = ComponentAccessor.projectManager.getProjectObjByKey(projectFromKey)
def toProject = ComponentAccessor.projectManager.getProjectObjByKey(projectToKey)

getOrganizationsForProject(asUser, fromProject).each {
addOrganizationToProject(it, toProject)
}

void addOrganizationToProject (CustomerOrganization organization, Project project) {
def organisationService = ComponentAccessor.getOSGiComponentInstanceOfType(OrganizationService)
def adminUser = ComponentAccessor.getJiraAuthenticationContext().loggedInUser
def sdProjectId = getServiceDeskForProject(project)?.id

if (! organization || ! sdProjectId) {
log.debug "Could not find organization $organization or service desk project $project"
return
}

def organizationServiceDeskUpdateParameters = organisationService
.newOrganizationServiceDeskUpdateParametersBuilder()
.organization(organization)
.serviceDeskId(sdProjectId)
.build()

def result = organisationService.addOrganizationToServiceDesk(adminUser, organizationServiceDeskUpdateParameters)
if (result.isLeft()) {
log.error "Could not add organization to project ${project.key}. Reason ${result.left().get()}"
}
}

ServiceDesk getServiceDeskForProject(Project sdProject) {
def serviceDeskManager = ComponentAccessor.getOSGiComponentInstanceOfType(ServiceDeskManager)
def serviceDeskProject = serviceDeskManager.getServiceDeskForProject(sdProject)

if (serviceDeskProject.isLeft()) {
log.error "${serviceDeskProject.left().get()}"
return null
}

serviceDeskProject.right().get()
}

List <CustomerOrganization> getOrganizationsForProject (ApplicationUser user, Project project) {
def serviceDeskService = ComponentAccessor.getOSGiComponentInstanceOfType(ServiceDeskService)
def srcServiceDesk = serviceDeskService.getServiceDeskForProject(user, project)

if (srcServiceDesk.isLeft()) {
log.error "Could not find service desk id for project ${project?.key}.\n${srcServiceDesk.left().get()}"
return []
}

def srcServiceDeskProjectId = srcServiceDesk.right().get().id
def organisationService = ComponentAccessor.getOSGiComponentInstanceOfType(OrganizationService)
def pagedRequest = new SimplePagedRequest(0, 50)
def organizationQuery = organisationService
.newOrganizationsQueryBuilder()
.pagedRequest(pagedRequest)
.serviceDeskId(srcServiceDeskProjectId)
.build()

// because this is a paged response it will return only the first 50 organizations in a project. If you want more you have to
// iterate over all pages and collect the results to a list
def pagedResponse = organisationService.getOrganizations(user, organizationQuery)
if (pagedResponse.isLeft()) {
log.error "${pagedResponse?.left()?.get()}"
}

pagedResponse.right().get().results
}

Paste this in the script console and ignore any errors you may get. Check the logs for "real" errors 

Let me know the result ...

Kind regards, Thanos

Julia Liebchen February 1, 2022

Thanks a lot, Thanos!

I tried to generate organizations with customers based on an insight object structure and struggled for a while.

Your script helped me, to understand the logic.

I'm in the process of finishing my script.

Best regards, Julia

0 votes
somethingblue
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
August 21, 2017

Hi Maria,

I have not seen this implelmented but I did find a post where ScriptRunner was being used.  It may require some additional tweaking on your end to get the final result to be what you want but hopefully this can help you get started.

Cheers,

Branden

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events