Skip to content

Commit 6433fe6

Browse files
authored
Merge pull request #914 from AtlasOfLivingAustralia/feature/paratoo
Feature/paratoo
2 parents 4523931 + 72b21f4 commit 6433fe6

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

grails-app/conf/application.groovy

+1
Original file line numberDiff line numberDiff line change
@@ -530,6 +530,7 @@ if (!ecodata.use.uuids) {
530530
ecodata.documentation.exampleProjectUrl = 'http://ecodata-test.ala.org.au/ws/activitiesForProject/746cb3f2-1f76-3824-9e80-fa735ae5ff35'
531531
// Used by ParatooService to sync available protocols
532532
paratoo.core.baseUrl = 'https://dev.core-api.monitor.tern.org.au/api'
533+
paratoo.excludeInterventionProtocols = true
533534

534535
auth.baseUrl = 'https://auth-test.ala.org.au'
535536
userDetails.web.url = "${auth.baseUrl}/userdetails/"

grails-app/services/au/org/ala/ecodata/ParatooService.groovy

+8-2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ class ParatooService {
3232
static final List DEFAULT_MODULES =
3333
['Plot Selection and Layout', 'Plot Description', 'Opportune']
3434
static final List ADMIN_ONLY_PROTOCOLS = ['Plot Selection']
35+
static final String INTERVENTION_PROTOCOL_TAG = 'intervention'
3536

3637
GrailsApplication grailsApplication
3738
SettingService settingService
@@ -66,7 +67,7 @@ class ParatooService {
6667
projects.findAll{it.protocols}
6768
}
6869

69-
private static List findProjectProtocols(ParatooProject project) {
70+
private List findProjectProtocols(ParatooProject project) {
7071
log.debug "Finding protocols for ${project.id} ${project.name}"
7172
List<ActivityForm> protocols = []
7273

@@ -77,6 +78,11 @@ class ParatooService {
7778
if (!project.isParaooAdmin()) {
7879
protocols = protocols.findAll{!(it.name in ADMIN_ONLY_PROTOCOLS)}
7980
}
81+
// Temporarily exclude intervention protocols until they are ready
82+
if (grailsApplication.config.getProperty('paratoo.excludeInterventionProtocols', Boolean.class, true)) {
83+
protocols = protocols.findAll{!(INTERVENTION_PROTOCOL_TAG in it.tags)}
84+
}
85+
8086
}
8187
protocols
8288
}
@@ -304,7 +310,7 @@ class ParatooService {
304310
String guid = protocol.attributes.identifier
305311
guids << guid
306312
String name = protocol.attributes.name
307-
ParatooProtocolConfig protocolConfig = getProtocolConfig(id)
313+
ParatooProtocolConfig protocolConfig = getProtocolConfig(guid)
308314
ActivityForm form = ActivityForm.findByExternalId(guid)
309315
if (!form) {
310316
form = new ActivityForm()

0 commit comments

Comments
 (0)