Set Component in groovy script

purchasing mobileye.com December 14, 2017

Hello,

I want to set a component value in a post-function of the creation of an issue.

Therefore, I created a groovy script in the post-function of the create issue that set a specific value to the issue.

If this specific value is not exists in the project component list, the script will create it first and then will set this component to the issue.

 

Here is my script:

import com.atlassian.jira.issue.CustomFieldManager
import com.atlassian.jira.issue.Issue
import com.atlassian.jira.issue.MutableIssue
import com.atlassian.jira.issue.comments.CommentManager
import com.atlassian.jira.issue.fields.CustomField
import com.atlassian.jira.util.ImportUtils
import com.atlassian.jira.user.util.DefaultUserManager
import com.atlassian.crowd.embedded.api.User
import com.atlassian.jira.project.Project
import com.atlassian.jira.component.ComponentAccessor
import com.onresolve.scriptrunner.runner.util.UserMessageUtil

import org.apache.log4j.Logger
import org.apache.log4j.Category
def Category log = Category.getInstance("com.onresolve.jira.groovy.Condition")
log.setLevel(org.apache.log4j.Level.DEBUG)


MutableIssue myIssue = issue
Project project = myIssue.getProjectObject()

def theComponent = ComponentAccessor.getProjectComponentManager().findByComponentName(project.getId(),'PSW')
//log.info("The Component is: " + theComponent)

if (theComponent == null) {
theComponent = ComponentAccessor.getProjectComponentManager().create("PSW","PSW component","",0,project.getId())
//log.info("The Component not exists")
//log.info(theComponent)
}


myIssue.setComponent([theComponent])

 

Something is not working here. The component is not set to the new issue, any idea why?

2 answers

1 accepted

5 votes
Answer accepted
Alexey Matveev
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.
December 14, 2017

import com.atlassian.jira.issue.CustomFieldManager
import com.atlassian.jira.issue.Issue
import com.atlassian.jira.issue.MutableIssue
import com.atlassian.jira.issue.comments.CommentManager
import com.atlassian.jira.issue.fields.CustomField
import com.atlassian.jira.util.ImportUtils
import com.atlassian.jira.user.util.DefaultUserManager
import com.atlassian.crowd.embedded.api.User
import com.atlassian.jira.project.Project
import com.atlassian.jira.component.ComponentAccessor
import com.onresolve.scriptrunner.runner.util.UserMessageUtil

import org.apache.log4j.Logger
import org.apache.log4j.Category
def Category log = Category.getInstance("com.onresolve.jira.groovy.Condition")
log.setLevel(org.apache.log4j.Level.DEBUG)


MutableIssue myIssue = issue
Project project = myIssue.getProjectObject()

def theComponent = ComponentAccessor.getProjectComponentManager().findByComponentName(project.getId(),'PSW')
//log.info("The Component is: " + theComponent)

if (theComponent == null) {
theComponent = ComponentAccessor.getProjectComponentManager().create("PSW","PSW component","",0,project.getId())
//log.info("The Component not exists")
//log.info(theComponent)
}


myIssue.setComponent([theComponent])

myIssue.store()

purchasing mobileye.com December 14, 2017

It's still not working...

 

Any other idea?

Alexey Matveev
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.
December 14, 2017

Try this script. It works for me. Do not forget that only Project Administrator can create a component if the component is absent

import com.atlassian.jira.issue.CustomFieldManager
import com.atlassian.jira.issue.Issue
import com.atlassian.jira.issue.MutableIssue
import com.atlassian.jira.issue.comments.CommentManager
import com.atlassian.jira.issue.fields.CustomField
import com.atlassian.jira.util.ImportUtils
import com.atlassian.jira.user.util.DefaultUserManager
import com.atlassian.crowd.embedded.api.User
import com.atlassian.jira.project.Project
import com.atlassian.jira.component.ComponentAccessor
import com.onresolve.scriptrunner.runner.util.UserMessageUtil
import com.atlassian.jira.event.type.EventDispatchOption

import org.apache.log4j.Logger
import org.apache.log4j.Category
def Category log = Category.getInstance("com.onresolve.jira.groovy.Condition")
log.setLevel(org.apache.log4j.Level.DEBUG)

 

def user = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser();
MutableIssue myIssue = issue
Project project = myIssue.getProjectObject()

def theComponent = ComponentAccessor.getProjectComponentManager().findByComponentName(project.getId(),'PSW')
//log.info("The Component is: " + theComponent)

if (theComponent == null) {
theComponent = ComponentAccessor.getProjectComponentManager().create("PSW","PSW component","",0,project.getId())
//log.info("The Component not exists")
//log.info(theComponent)
}


myIssue.setComponent([theComponent])
ComponentAccessor.getIssueManager().updateIssue(user,myIssue,EventDispatchOption.ISSUE_UPDATED,true)
Like # people like this
purchasing mobileye.com December 14, 2017

Thank you so much!

Now it's working perfect!

Tomas Gustavsson
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.
April 9, 2019

I used this script, with 

SCRIPTRUNNER and the predefined, Clones an issue, and links listner.

It works perfect after comment out

import org.apache.log4j.Logger
import org.apache.log4j.Category
def Category log = Category.getInstance("com.onresolve.jira.groovy.Condition")
log.setLevel(org.apache.log4j.Level.DEBUG)
ComponentAccessor.getIssueManager().updateIssue(user,myIssue,EventDispatchOption.ISSUE_UPDATED,true)

from the script above.

 

Thanks you very much
Alexey Matveev [cPrime] 

0 votes
Alexey Matveev
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.
December 14, 2017

Is the post functin on creation? if so add issue.store()

And your post function must be before reindexing post function

purchasing mobileye.com December 14, 2017

Thank you.

Where should I add it? (the issue.store())

Suggest an answer

Log in or Sign up to answer