You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello,
I'm using the "Create an Assets Object from a Jira Issue" post function to create new objects from JIRA for a specific object type. I'm having difficulties to script a condition to go through all existing object names and comparing them to the "text custom field" for setting the name for the new object. It should return false if the iteration finds a matching name in the object list.
I found the following script on Atlassian's page to set a condition, but it doesn't iterate through all existing objects and compare the names. Can someone help me get the correct script?
import com.atlassian.jira.component.ComponentAccessor;
import com.atlassian.jira.issue.fields.CustomField;
def value = issue.getCustomFieldValue(ComponentAccessor.getCustomFieldManager().getCustomFieldObject(10000)); // Change ID to the correct one
/* If an insight custom field has an object called "Microsoft" it will fail */
if (value != null && "Microsoft".equals(value[0].getName())) {
return false;
}
return true;
Iterating through all the objects would be very inefficient, especially if the number of objects gets big.
I would recommend instead you leverage the IQLFacade and perform an IQL search. If the search returns a result, then the object already exists.
Something like this:
import com.atlassian.jira.component.ComponentAccessor;
import com.atlassian.jira.issue.fields.CustomField
import com.riadalabs.jira.plugins.insight.channel.external.api.facade.IQLFacade;
def iqlFacade = ComponentAccessor.getOSGiComponentInstanceOfType(IQLFacade)
def fieldId = 10000L // Change ID to the correct one
def customField = ComponentAccessor.customFieldManager.getCustomFieldObject(fieldId)
def value = issue.getCustomFieldValue(customField)
def iql = """objectType="Application" and Name=$value""" //change application to the correct object type and Name to the correct attribute
def searchResult = iqlFacade.findObjects(iql)
if(searchResult) return false
return true
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.