Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×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
thanks Peter-Dave for your response. The code is working now :)
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.