Skip to content

Commit 9e3d21c

Browse files
Merge pull request #5 from inbo/243_species_to_portal_missing_wkt_polygon
AtlasOfLivingAustralia#243 - use Qid api to store wkt parameter (as the string can get extr…
2 parents f10c0c0 + 1441b23 commit 9e3d21c

File tree

2 files changed

+58
-3
lines changed

2 files changed

+58
-3
lines changed

grails-app/controllers/au/org/ala/specieslist/SpeciesListController.groovy

+3-3
Original file line numberDiff line numberDiff line change
@@ -445,11 +445,12 @@ class SpeciesListController {
445445
*/
446446
def occurrences(){
447447
def splist = SpeciesList.findByDataResourceUid(params.id)
448+
def title = "Species List: " + splist.listName
448449
if (biocacheService.isListIndexed(params.id)) {
449450
if (splist.wkt && !splist.wkt.isEmpty()) {
450-
redirect(url: biocacheService.getQueryUrlForListWithinPolygon(params.id, splist.wkt))
451+
redirect(url: biocacheService.performSearchForSpeciesListWithWkt(params.id, title, splist.wkt))
451452
} else {
452-
redirect(url: biocacheService.getQueryUrlForListWithinPolygon(params.id))
453+
redirect(url: biocacheService.getQueryUrlForList(params.id))
453454
}
454455
} else if (params.id && params.type){
455456
if (splist && !isViewable(splist)) {
@@ -459,7 +460,6 @@ class SpeciesListController {
459460

460461
def guids = getGuidsForList(params.id, grailsApplication.config.downloadLimit)
461462
def unMatchedNames = getUnmatchedNamesForList(params.id, grailsApplication.config.downloadLimit)
462-
def title = "Species List: " + splist.listName
463463
def downloadDto = new DownloadDto()
464464
bindData(downloadDto, params)
465465

grails-app/services/au/org/ala/specieslist/BiocacheService.groovy

+55
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,47 @@ class BiocacheService {
7070
}
7171
}
7272

73+
def getSpeciesListWithWktQid(speciesListId, title, wkt){
74+
def http = new HTTPBuilder(grailsApplication.config.biocacheService.baseURL +"/webportal/params")
75+
// check apiGateway.enabled since "/webportal/params" is deprecated and replaced with generated "qio" (protected in APi Gateway)
76+
if(grailsApplication.config.getProperty("apiGateway.enabled", Boolean, false)){
77+
http = new HTTPBuilder(grailsApplication.config.biocacheService.baseURL +"/qid")
78+
// /qid POST is protected on API Gateway - generate and include a JWT in the request
79+
http.setHeaders([Authorization: "Bearer ${webService.getTokenService().getAuthToken(false)}"])
80+
}
81+
82+
http.getClient().getParams().setParameter("http.socket.timeout", getTimeout())
83+
def query = ""
84+
85+
if (speciesListId) {
86+
query = "species_list_uid:" + speciesListId
87+
}
88+
89+
def postBody = [q:query, wkt: wkt, title: title]
90+
log.debug "postBody = " + postBody
91+
92+
try {
93+
http.post(body: postBody, requestContentType:groovyx.net.http.ContentType.URLENC){ resp, reader ->
94+
//return the location in the header
95+
log.debug(resp.headers?.toString())
96+
if (resp.status == 302) {
97+
log.debug "302 redirect response from biocache"
98+
return [status:resp.status, result:resp.headers['location'].getValue()]
99+
} else if (resp.status == 200) {
100+
log.debug "200 OK response from biocache"
101+
return [status:resp.status, result:reader.getText()]
102+
} else {
103+
log.warn "$resp.status returned from biocache service"
104+
105+
return [status:500]
106+
}
107+
}
108+
} catch(ex) {
109+
log.error("Error while creating Qid for species list " + speciesListId + "with wkt: " , ex)
110+
return null;
111+
}
112+
}
113+
73114
def getTimeout() {
74115
int timeout = DEFAULT_TIMEOUT_MILLIS
75116
def timeoutFromConfig = grailsApplication.config.httpTimeoutMillis
@@ -148,6 +189,20 @@ class BiocacheService {
148189
}
149190
}
150191

192+
def performSearchForSpeciesListWithWkt(speciesListId, speciesListTitle, wkt) {
193+
def response = getSpeciesListWithWktQid(speciesListId, speciesListTitle, wkt)
194+
if(response?.status == 302){
195+
response.result
196+
} else if (response?.status == 200) {
197+
log.debug "200 OK response"
198+
def qid = response.result
199+
def returnUrl = grailsApplication.config.biocache.baseURL + "/occurrences/search?q=qid:" + qid
200+
returnUrl
201+
} else {
202+
null
203+
}
204+
}
205+
151206
//Location http://biocache.ala.org.au/occurrences/search?q=qid:1344230443917
152207
def createJsonForBatch(guids){
153208
def builder = new JSONBuilder()

0 commit comments

Comments
 (0)