Skip to content

Commit 3f12431

Browse files
committedFeb 24, 2025
Replaced WebService with MERIT WebService impl. Added SpeciesListService AtlasOfLivingAustralia/fieldcapture#3454
1 parent 474e6cb commit 3f12431

13 files changed

+834
-55
lines changed
 

‎build.gradle

+6-1
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,15 @@ dependencies {
6969
implementation "org.grails.plugins:async"
7070
implementation "org.grails.plugins:scaffolding"
7171
implementation "org.grails.plugins:gsp"
72-
implementation 'commons-io:commons-io:2.6'
72+
implementation 'commons-io:commons-io:2.14.0'
7373
implementation "org.grails.plugins:ala-auth:$alaSecurityLibsVersion"
7474
implementation "org.grails.plugins:ala-ws-security-plugin:$alaSecurityLibsVersion"
75+
implementation "org.grails.plugins:ala-ws-plugin:$alaSecurityLibsVersion"
7576
implementation "au.org.ala:userdetails-service-client:$alaSecurityLibsVersion"
77+
implementation "org.codehaus.groovy.modules.http-builder:http-builder:0.7.1"
78+
implementation "org.apache.httpcomponents:httpcore:4.4.13"
79+
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
80+
implementation "org.apache.httpcomponents:httpmime:4.2.1"
7681

7782
console "org.grails:grails-console"
7883
profile "org.grails.profiles:web-plugin"

‎gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ org.gradle.jvmargs=-Dfile.encoding=UTF-8 -Xss2048k -Xmx1024M
1313
exploded=true
1414
enableClover=false
1515
enableJacoco=true
16-
alaSecurityLibsVersion=6.2.0
16+
alaSecurityLibsVersion=6.3.0

‎grails-app/conf/application.yml

+16-3
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,13 @@ spring:
2929

3030
disableCAS: true
3131

32-
security:
33-
cas:
34-
appServerName: 'n/a'
32+
3533
management:
3634
endpoints:
3735
enabled-by-default: false
36+
37+
lists.baseURL : https://lists-ws.test.ala.org.au/
38+
3839
---
3940
grails:
4041
mime:
@@ -94,6 +95,18 @@ userProfile:
9495
---
9596
environments:
9697
test:
98+
security:
99+
cas:
100+
appServerName: 'n/a'
101+
oidc:
102+
enabled: true
103+
discoveryUri: 'http://localhost:8080'
104+
jwt:
105+
enabled: false
106+
107+
grails:
108+
serverURL: "http://localhost:8080"
109+
97110
server:
98111
port: "8087"
99112
spring:

‎grails-app/controllers/ecodata/client/plugin/UrlMappings.groovy

+4
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ class UrlMappings {
2121
controller = 'preview'
2222
action = [GET: 'index', POST: 'model']
2323
}
24+
"/speciesList/$listId"() {
25+
controller = 'speciesList'
26+
action = 'speciesListItems'
27+
}
2428
"500"(view:'/error')
2529
}
2630
}

‎grails-app/services/au/org/ala/ecodata/forms/ActivityFormService.groovy

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package au.org.ala.ecodata.forms
22

33
import org.grails.web.json.JSONArray
4-
import org.grails.web.json.JSONElement
54
import org.grails.web.json.JSONObject
65

76
/**
@@ -11,7 +10,7 @@ class ActivityFormService {
1110

1211
static final String ACTIVITY_FORM_PATH = '/activityForm'
1312
static final String ACTIVITY_FORM_SEARCH_PATH = '/activityForm/search'
14-
def webService
13+
def ecpWebService
1514
def grailsApplication
1615

1716
/**
@@ -33,7 +32,7 @@ class ActivityFormService {
3332
if (includeScoreInformation) {
3433
url += '&includeScoreInformation='+Boolean.toString(includeScoreInformation)
3534
}
36-
Map result = webService.getJson(url)
35+
Map result = ecpWebService.getJson(url)
3736
if (!result || result.error) {
3837
result = null
3938
}
@@ -74,7 +73,7 @@ class ActivityFormService {
7473
Map searchActivityForms(Map criteria) {
7574
String url = grailsApplication.config.getProperty('ecodata.service.url') +
7675
ACTIVITY_FORM_SEARCH_PATH
77-
Map result = webService.doPost(url, criteria)
76+
Map result = ecpWebService.doPost(url, criteria)
7877
if (!result || result.error) {
7978
result = null
8079
}

0 commit comments

Comments
 (0)