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
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.