This repository has been archived by the owner on Jul 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathde.properties.tmpl
242 lines (199 loc) · 15.9 KB
/
de.properties.tmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
{{- with $base := (printf "configs/%s" (env "DE_ENV")) -}}
###############################################################################
# Deployed Version Metadata
#
# This values are used since reading the MANIFEST.MF file from a deployed WAR
# is a tricky environment.
###############################################################################
org.iplantc.discoveryenvironment.about.defaultBuildNumber = {{ key (printf "%s/de/default-build-number" $base) }}
org.iplantc.discoveryenvironment.about.releaseVersion = {{ key (printf "%s/de/release-version" $base) }}
###############################################################################
# CAS Authentication Settings
###############################################################################
org.iplantc.discoveryenvironment.cas.base-url = {{ key (printf "%s/de/base-url" $base) }}
org.iplantc.discoveryenvironment.cas.server-name = {{ key (printf "%s/de/cas-server-name" $base) }}
org.iplantc.discoveryenvironment.cas.validation = {{ key (printf "%s/de/cas-validation" $base) }}
org.iplantc.discoveryenvironment.cas.logout-url = {{ key (printf "%s/de/cas-logout-url" $base) }}
org.iplantc.discoveryenvironment.cas.app-name = {{ key (printf "%s/de/cas-app-name" $base) }}
org.iplantc.discoveryenvironment.cas.login-url = {{ key (printf "%s/de/cas-login-url" $base) }}
org.iplantc.admin.cas.authorized-groups = {{ key (printf "%s/de/authorized-groups" $base) }}
org.iplantc.admin.cas.group-attribute-name = {{ key (printf "%s/de/group-attribute-name" $base) }}
org.iplantc.discoveryenvironment.cas.no-logout-url = {{ key (printf "%s/de/cas-no-logout-url" $base) }}
org.iplantc.discoveryenvironment.cas.app-list = {{ key (printf "%s/de/cas-app-list" $base) }}
org.iplantc.discoveryenvironment.session-timeout = {{ key (printf "%s/de/session-timeout" $base) }}
###############################################################################
# CAS Session Keepalive Settings
###############################################################################
org.iplantc.discoveryenvironment.keepalive.service = {{ key (printf "%s/de/keepalive-service" $base) }}
org.iplantc.discoveryenvironment.keepalive.target = {{ key (printf "%s/de/keepalive-target" $base) }}
org.iplantc.discoveryenvironment.keepalive.interval = {{ key (printf "%s/de/keepalive-interval" $base) }}
###############################################################################
# JWT Signing Key Settings
###############################################################################
org.iplantc.discoveryenvironment.jwt.private-key-path = {{ key (printf "%s/jwt/private-key-path" $base) }}
org.iplantc.discoveryenvironment.jwt.private-key-password = {{ key (printf "%s/jwt/private-key-password" $base) }}
###############################################################################
# Error Page Settings
###############################################################################
org.iplantc.discoveryenvironment.twitter-url = {{ key (printf "%s/de/twitter-url" $base) }}
org.iplantc.discoveryenvironment.facebook-url = {{ key (printf "%s/de/facebook-url" $base) }}
org.iplantc.discoveryenvironment.newsletter-url = {{ key (printf "%s/de/newsletter-url" $base) }}
org.iplantc.discoveryenvironment.ask-url = {{ key (printf "%s/de/ask-url" $base) }}
###############################################################################
# Backend Services URL/Endpoint Configuration
###############################################################################
# this is the service-endpoint keys prefix
# (this value is utilized by classes/components in de-common-*.jar)
prefix = {{ key (printf "%s/de/prefix" $base) }}
rpc.prefix = {{ key (printf "%s/de/rpc-prefix" $base) }}
# The URL prefix to use when accessing the DE Mule services.
org.iplantc.discoveryenvironment.muleServiceBaseUrl = {{ key (printf "%s/terrain/base" $base) }}/secured/
org.iplantc.discoveryenvironment.unprotectedMuleServiceBaseUrl = {{ key (printf "%s/terrain/base" $base) }}/
# Bootstrap
org.iplantc.services.bootstrap = {{ key (printf "%s/terrain/base" $base) }}/secured/bootstrap
org.iplantc.services.logout = {{ key (printf "%s/terrain/base" $base) }}/secured/logout
# DE Data Management Endpoints
org.iplantc.services.de-data-mgmt.base = {{ key (printf "%s/terrain/base" $base) }}/secured/filesystem/
org.iplantc.services.admin.de-data-mgmt.base = {{ key (printf "%s/terrain/base" $base) }}/admin/filesystem/
org.iplantc.services.diskResources.search = {{ key (printf "%s/terrain/base" $base) }}/secured/filesystem/search
org.iplantc.services.diskResources.searchDocumentation = {{ key (printf "%s/terrain/base" $base) }}/secured/filesystem/search-documentation
# DE File I/O endpoints
org.iplantc.services.file-io.base.secured = {{ key (printf "%s/terrain/base" $base) }}/secured/fileio/
org.iplantc.services.file-io.file-upload = {{ key (printf "%s/terrain/base" $base) }}/fileio/upload
org.iplantc.services.file-io.secured.file-upload = {{ key (printf "%s/terrain/base" $base) }}/secured/fileio/upload
# Buggalo Endpoint
#FIXME change 'buggalo' name
org.iplantc.services.buggalo.baseUrl = {{ key (printf "%s/terrain/base" $base) }}/secured/tree-viewer-urls
# Tool Request Endpoints
org.iplantc.services.toolRequests = {{ key (printf "%s/terrain/base" $base) }}/tool-requests
org.iplantc.services.toolRequests.statusCodes = {{ key (printf "%s/terrain/base" $base) }}/tool-requests/status-codes
org.iplantc.services.admin.toolRequests = {{ key (printf "%s/terrain/base" $base) }}/admin/tool-requests
# Permanent Id Endpoints
org.iplantc.services.permIdRequests = {{ key (printf "%s/terrain/base" $base) }}/permanent-id-requests
org.iplantc.services.permIdRequests.statusCodes = {{ key (printf "%s/terrain/base" $base) }}/permanent-id-requests/status-codes
org.iplantc.services.admin.permIdRequests = {{ key (printf "%s/terrain/base" $base) }}/admin/permanent-id-requests
# Apps endpoints
org.iplantc.services.apps = {{ key (printf "%s/terrain/base" $base) }}/apps
org.iplantc.services.apps.ids = {{ key (printf "%s/terrain/base" $base) }}/apps/ids
org.iplantc.services.apps.categories = {{ key (printf "%s/terrain/base" $base) }}/apps/categories
org.iplantc.services.apps.hierarchies = {{ key (printf "%s/terrain/base" $base) }}/apps/hierarchies
org.iplantc.services.apps.elements = {{ key (printf "%s/terrain/base" $base) }}/apps/elements
org.iplantc.services.apps.elements.tools = {{ key (printf "%s/terrain/base" $base) }}/apps/elements/tools
org.iplantc.services.apps.elements.infoTypes = {{ key (printf "%s/terrain/base" $base) }}/apps/elements/info-types
org.iplantc.services.apps.elements.dataSources = {{ key (printf "%s/terrain/base" $base) }}/apps/elements/data-sources
org.iplantc.services.apps.argPreview = {{ key (printf "%s/terrain/base" $base) }}/apps/arg-preview
org.iplantc.services.admin.apps = {{ key (printf "%s/terrain/base" $base) }}/admin/apps
org.iplantc.services.admin.apps.categories = {{ key (printf "%s/terrain/base" $base) }}/admin/apps/categories
org.iplantc.services.apps.communities = {{ key (printf "%s/terrain/base" $base) }}/apps/communities
# Group endpoints
org.iplantc.services.collaboratorLists = {{ key (printf "%s/terrain/base" $base) }}/collaborator-lists
org.iplantc.services.subjects = {{ key (printf "%s/terrain/base" $base) }}/subjects
org.iplantc.services.teams = {{ key (printf "%s/terrain/base" $base) }}/teams
org.iplantc.services.communities = {{ key (printf "%s/terrain/base" $base) }}/communities
#Oauth endpoints
org.iplantc.services.oauth = {{ key (printf "%s/terrain/base" $base) }}/secured/oauth
# Pipelines endpoints
org.iplantc.services.apps.pipelines = {{ key (printf "%s/terrain/base" $base) }}/apps/pipelines
# Reference Genomes
org.iplantc.services.admin.referenceGenomes = {{ key (printf "%s/terrain/base" $base) }}/admin/reference-genomes
org.iplantc.services.referenceGenomes = {{ key (printf "%s/terrain/base" $base) }}/reference-genomes
# Analysis Endpoints
org.iplantc.services.analyses = {{ key (printf "%s/terrain/base" $base) }}/analyses
# Tools Endpoints
org.iplantc.services.admin.tools = {{ key (printf "%s/terrain/base" $base) }}/admin/tools
org.iplantc.services.tools = {{ key (printf "%s/terrain/base" $base) }}/tools
# Workshop Endpoints
org.iplantc.services.admin.workshop = {{ key (printf "%s/terrain/base" $base) }}/admin/groups/workshop
# Path List File Identifier
org.iplantc.htPathList.fileIdentifier = {{ key (printf "%s/data-info/ht-path-list-file-identifier" $base) }}
org.iplantc.multiInputPathList.fileIdentifier = {{ key (printf "%s/data-info/multi-input-path-list-file-identifier" $base) }}
org.iplantc.services.filesystem.index = {{ key (printf "%s/terrain/base" $base) }}/secured/filesystem/index
org.iplantc.services.filesystem.index-status = {{ key (printf "%s/terrain/base" $base) }}/secured/filesystem/index-status
# The base URL used to contact the iPlant e-mail service
org.iplantc.services.email-base = {{ key (printf "%s/email/base" $base) }}/
# Notification and System-Message Services
org.iplantc.services.notifications = {{ key (printf "%s/terrain/base" $base) }}/secured/notifications
org.iplantc.services.admin.notifications.system = {{ key (printf "%s/terrain/base" $base) }}/admin/notifications/system
org.iplantc.services.admin.notifications.system.types = {{ key (printf "%s/terrain/base" $base) }}/admin/notifications/system-types
# Ontologies
org.iplantc.services.admin.ontologies = {{ key (printf "%s/terrain/base" $base) }}/admin/ontologies
org.iplantc.services.ontologies = {{ key (printf "%s/terrain/base" $base) }}/ontologies
###############################################################################
# 3rd Party Service URL/Endpoint Settings
###############################################################################
org.iplantc.services.ontology-lookup-service.base = https://www.ebi.ac.uk/ols/api/select
org.iplantc.services.unified-astronomy-thesaurus.base = https://vocabs.ands.org.au/repository/api/lda/aas/the-unified-astronomy-thesaurus/current/concept.json
###############################################################################
# Default workspace App Categories.
###############################################################################
org.iplantc.discoveryenvironment.workspace.rootAppCategory = {{ key (printf "%s/de/root-app-category" $base) }}
org.iplantc.discoveryenvironment.workspace.defaultAppCategories = {{ key (printf "%s/de/default-app-categories" $base) }}
org.iplantc.discoveryenvironment.workspace.defaultBetaAppCategoryId = {{ key (printf "%s/de/default-beta-app-category" $base) }}
org.iplantc.discoveryenvironment.workspace.defaultHpcAppCategoryId = {{ key (printf "%s/de/default-hpc-app-category" $base) }}
org.iplantc.discoveryenvironment.workspace.defaultTrashAppCategoryId = {{ key (printf "%s/de/default-trash-app-category" $base) }}
org.iplantc.discoveryenvironment.workspace.ontologyAttrs = {{ key (printf "%s/de/ontology-attributes" $base) }}
org.iplantc.discoveryenvironment.workspace.metadata.beta.attr.iri = {{ key (printf "%s/de/beta-attr-iri" $base) }}
org.iplantc.discoveryenvironment.workspace.metadata.beta.attr.label = {{ key (printf "%s/de/beta-attr-label" $base) }}
org.iplantc.discoveryenvironment.workspace.metadata.beta.value = {{ key (printf "%s/de/beta-value" $base) }}
org.iplantc.discoveryenvironment.workspace.metadata.beta.unit = {{ key (printf "%s/de/beta-unit" $base) }}
#App Tiles Gravatar URL Settings
org.iplantc.discoveryenvironment.workspace.apps.cardUrl = {{ key (printf "%s/de/card-url" $base) }}
org.iplantc.discoveryenvironment.workspace.apps.cardUrlOptions = {{ key (printf "%s/de/card-url-options" $base) }}
###############################################################################
# Enable / Disable right click for QA team. QA Team will use the right click functionality
# to access the context menu from some of their testing tools.
# Should be set to false in all environments other than QA
###############################################################################
org.iplantc.discoveryenvironment.contextMenu.enabled = {{ key (printf "%s/de/context-menu-enabled" $base) }}
# Default directories
org.iplantc.communitydata.path = {{ key (printf "%s/de/community-data-path" $base) }}
org.iplantc.irodshome.path = {{ key (printf "%s/de/irods-home" $base) }}
org.iplantc.basetrash.path = {{ key (printf "%s/de/trash-path" $base) }}
###############################################################################
# Maintenance Settings
###############################################################################
org.iplantc.discoveryenvironment.maintenance-file = {{ key (printf "%s/de/maintenance-file" $base) }}
org.iplantc.discoveryenvironment.local-ip-ranges = {{ key (printf "%s/de/local-ip-ranges" $base) }}
###############################################################################
# Environment Information
###############################################################################
org.iplantc.discoveryenvironment.environment.name = {{ key (printf "%s/de/environment-name" $base) }}
org.iplantc.discoveryenvironment.environment.prod-deployment = {{ key (printf "%s/de/prod-deployment" $base) }}
###############################################################################
# Notification Agent Settings
###############################################################################
# The Notification Polling Interval in Seconds
org.iplantc.discoveryenvironment.notifications.poll-interval = {{ key (printf "%s/de/poll-interval" $base) }}
############################################################################
# AMQP Settings
############################################################################
org.iplantc.discoveryenvironment.notification.amqp.uri = {{ key (printf "%s/amqp/uri" $base) }}
org.iplantc.discoveryenvironment.notification.amqp.exchange.name = {{ key (printf "%s/amqp/exchange/name" $base) }}
org.iplantc.discoveryenvironment.notification.amqp.exchange.durable = {{ key (printf "%s/amqp/exchange/durable" $base) }}
org.iplantc.discoveryenvironment.notification.amqp.exchange.auto-delete = {{ key (printf "%s/amqp/exchange/auto-delete" $base) }}
###############################################################################
# Cyverse Support Settings
###############################################################################
org.iplantc.discoveryenvironment.analysis.support.user = {{ key (printf "%s/de/support-user" $base) }}
org.iplantc.discoveryenvironment.support = {{ key (printf "%s/terrain/base" $base) }}/support-email
###############################################################################
# DE Session Store Settings
###############################################################################
org.iplantc.discoveryenvironment.redis.host = {{ key (printf "%s/de/redis-host" $base) }}
org.iplantc.discoveryenvironment.redis.port = {{ key (printf "%s/de/redis-port" $base) }}
org.iplantc.discoveryenvironment.redis.db.number = {{ key (printf "%s/de/redis-db-number" $base) }}
org.iplantc.discoveryenvironment.redis.password = {{ key (printf "%s/de/redis-password" $base) }}
###############################################################################
# Groups Settings
###############################################################################
org.iplantc.discoveryenvironment.groups.grouper-all-id = {{ key (printf "%s/de/grouper-all-id" $base) }}
org.iplantc.discoveryenvironment.groups.grouper-all-display-name = {{ key (printf "%s/de/grouper-all-display-name" $base) }}
org.iplantc.discoveryenvironment.groups.grouper-id = {{ key (printf "%s/apps/grouper-user" $base) }}
###############################################################################
# Intercom Settings
###############################################################################
org.iplantc.discoveryenvironment.intercom.enabled = {{ key (printf "%s/intercom/enabled" $base) }}
org.iplantc.discoveryenvironment.intercom.appId = {{ key (printf "%s/intercom/app-id" $base) }}
org.iplantc.discoveryenvironment.intercom.companyId = {{ key (printf "%s/intercom/company-id" $base) }}
org.iplantc.discoveryenvironment.intercom.companyName = {{ key (printf "%s/intercom/company-name" $base) }}
{{- end -}}