@@ -70,6 +70,47 @@ class BiocacheService {
70
70
}
71
71
}
72
72
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
+
73
114
def getTimeout () {
74
115
int timeout = DEFAULT_TIMEOUT_MILLIS
75
116
def timeoutFromConfig = grailsApplication. config. httpTimeoutMillis
@@ -148,6 +189,20 @@ class BiocacheService {
148
189
}
149
190
}
150
191
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
+
151
206
// Location http://biocache.ala.org.au/occurrences/search?q=qid:1344230443917
152
207
def createJsonForBatch (guids ){
153
208
def builder = new JSONBuilder ()
0 commit comments