I am trying to configure a rest endpoint in JIRA that will make a GET call to an external rest API for a list of selectable options (retailers). I will then use a behaviour to populate a custom field with a value selected from the list. I understand the behaviour part but I am having trouble with the REST API.
Based on examples on here, this is my script currently. I am seeing the following errors...
line 31 - no such property : text for class
line 35 no such property : full name for class
line 40 ambigious prototypes for closure
I am brand new to Groovy so I am wondering where i am going wrong if anybody can shed any light? thanks in advance!
import com.onresolve.scriptrunner.runner.rest.common.CustomEndpointDelegate
import groovy.json.JsonBuilder
import groovy.transform.BaseScript
import groovyx.net.http.ContentType
import groovyx.net.http.HTTPBuilder
import groovyx.net.http.Method
import javax.ws.rs.core.MultivaluedMap
import javax.ws.rs.core.Response
@BaseScript CustomEndpointDelegate delegate
githubRepoQuery(httpMethod: "GET") { MultivaluedMap queryParams ->
def query = queryParams.getFirst("query") as String
def rt = [:]
if (query) {
def httpBuilder = new HTTPBuilder("http:myurl")
def repos = httpBuilder.request(Method.GET, ContentType.JSON) {
def uri = [:]
uri.path = "mypath"
def headers = [:]
headers."User-Agent" = "My JIRA"
def response = [:]
response.failure = { resp, reader ->
log.warn("Failed to get Retailer: " + reader.text)
}
}
def repoNames = repos["items"]*."full_name"
rt = [
items: repoNames.collect { String repo ->
[
value: repo,
html : repo.replaceAll(/(?i)$query/) { "<b>${it}</b>" },
label: repo,
]
},
total: repos["total_count"],
footer: "Choose repo... (${repoNames.size()} of ${repos["total_count"]} shown...)"
]
}
return Response.ok(new JsonBuilder(rt).toString()).build()
}
1 of 2 Hi Stephen,
Thanks for your response, yes I have followed your point and my script does compile and run but doesnt return any values. I am expecting the below JSON to be returned but when i execute the end point, nothing is coming back, any ideas?
expected JSON response
{"retailerList":[{"RetailerID": "1234","RetailerName": "RetailerTest1","status": "Active"},{"RetailerID": "5678","RetailerName": "RetailerTest2","status": "Active"}]}
current response
// 20171214135133
// http://ruuujraa03:8080/rest/scriptrunner/latest/custom/githubRepoQuery
{
}
2 of 2 Here's the full version of my code
import com.onresolve.scriptrunner.runner.rest.common.CustomEndpointDelegate
import groovy.json.JsonBuilder
import groovy.transform.BaseScript
import groovyx.net.http.ContentType
import groovyx.net.http.HTTPBuilder
import groovyx.net.http.Method
import javax.ws.rs.core.MultivaluedMap
import javax.ws.rs.core.Response
@BaseScript CustomEndpointDelegate delegate
githubRepoQuery(httpMethod: "GET") { MultivaluedMap queryParams ->
def query = queryParams.getFirst("query") as String
def rt = [:]
if (query) {
def httpBuilder = new HTTPBuilder("http://ruudwmpa01:5555")
def repos = httpBuilder.request(Method.GET, ContentType.JSON) {
uri.path = "rest/FLam/getRetailerList"
uri.query = [q:"$query in:name", sort: "retailerID", order:"desc"]
headers."User-Agent" = "My JIRA"
response.failure = { resp, reader ->
log.warn("Failed to get retailer: " + reader.text)
}
}
def repoNames = repos["retailer"]*.""
rt = [
items: repoNames.collect { String repo ->
[
value: repo,
html : repo.replaceAll(/(?i)$query/) { "<b>${it}</b>" },
label: repo,
]
},
total: repos["total_count"],
footer: "Choose repo... (${repoNames.size()} of ${repos["total_count"]} shown...)"
]
}
return Response.ok(new JsonBuilder(rt).toString()).build()
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Stephen,
I've had a look at your code and it looks fine. It sounds like the errors you are getting are coming from static type checking (see documentation). These errors can sometimes be disregarded. In this case your properties should be present at runtime.
What happens when you make a request to the endpoint??
Thanks,
Steve
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.