forked from payara/Payara
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FISH-338 Create HashiCorp MicroProfile Config Source
Merge pull request payara#4982 from MeroRai/FISH-338 Merge pull request payara#5086 from Cousjava/FISH-876-hashicorp-vault-blocking
- Loading branch information
1 parent
2427b8f
commit 3e03658
Showing
11 changed files
with
829 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
138 changes: 138 additions & 0 deletions
138
...in/src/main/resources/microprofile/specs/configAPI/hashicorpConfigSourceConfiguration.jsf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
<!-- | ||
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. | ||
|
||
Copyright (c) 2020 Payara Foundation and/or its affiliates. All rights reserved. | ||
|
||
The contents of this file are subject to the terms of either the GNU | ||
General Public License Version 2 only ("GPL") or the Common Development | ||
and Distribution License("CDDL") (collectively, the "License"). You | ||
may not use this file except in compliance with the License. You can | ||
obtain a copy of the License at | ||
https://github.com/payara/Payara/blob/master/LICENSE.txt | ||
See the License for the specific | ||
language governing permissions and limitations under the License. | ||
|
||
When distributing the software, include this License Header Notice in each | ||
file and include the License file at glassfish/legal/LICENSE.txt. | ||
|
||
GPL Classpath Exception: | ||
The Payara Foundation designates this particular file as subject to the "Classpath" | ||
exception as provided by the Payara Foundation in the GPL Version 2 section of the License | ||
file that accompanied this code. | ||
|
||
Modifications: | ||
If applicable, add the following below the License Header, with the fields | ||
enclosed by brackets [] replaced by your own identifying information: | ||
"Portions Copyright [year] [name of copyright owner]" | ||
|
||
Contributor(s): | ||
If you wish your version of this file to be governed by only the CDDL or | ||
only the GPL Version 2, indicate your decision by adding "[Contributor] | ||
elects to include this software in this distribution under the [CDDL or GPL | ||
Version 2] license." If you don't indicate a single choice of license, a | ||
recipient has the option to distribute your version of this file under | ||
either the CDDL, the GPL Version 2 or to extend the choice of license to | ||
its licensees as provided above. However, if you add GPL Version 2 code | ||
and therefore, elected the GPL Version 2 license, then the option applies | ||
only if the new code is made subject to such option by the copyright | ||
holder. | ||
--> | ||
|
||
<!initPage | ||
setResourceBundle(key="i18n_microprofile" bundle="fish.payara.admingui.microprofile.Strings"); | ||
/> | ||
<!composition template="/templates/default.layout" | ||
guiTitle="$resource{i18n_microprofile.microprofile.specs.configuration.config.hashicorpSecretsConfigSource.pageTitle}"> | ||
|
||
<!define name="content"> | ||
|
||
<event> | ||
<!beforeCreate | ||
setSessionAttribute(key="microprofileConfigTabs" value="microProfileConfigHashiCorpSecretsConfigSourceTab"); | ||
getRequestValue(key="configName" value="#{pageSession.configName}"); | ||
setPageSessionAttribute(key="MICROPROFILE_CONFIG_URL", | ||
value="#{sessionScope.REST_URL}/configs/config/#{pageSession.configName}/microprofile-config"); | ||
gf.restRequest(endpoint="#{pageSession.MICROPROFILE_CONFIG_URL}/get-hashicorp-config-source-configuration?target=#{pageSession.configName}" | ||
method="GET" result="#{requestScope.resp}"); | ||
|
||
setPageSessionAttribute(key="valueMap", | ||
value="#{requestScope.resp.data.extraProperties.configSourceConfiguration}"); | ||
mapPut(map="#{pageSession.valueMap}" key="target" value="#{pageSession.configName}"); | ||
|
||
setPageSessionAttribute(key="convertToFalseList", value={"enabled"}); | ||
|
||
if (#{pageSession.valueMap['enabled']}=true) { | ||
setPageSessionAttribute(key="enabledSelected", value="true"); | ||
} | ||
setPageSessionAttribute(key="dynamic", value="true"); | ||
/> | ||
</event> | ||
|
||
|
||
<sun:form id="propertyForm"> | ||
#include "/common/shared/alertMsg_1.inc" | ||
#include "/microprofile/microprofile/microprofileConfigTabs.inc" | ||
#include "/microprofile/microprofile/microprofileConfigAPITabs.inc" | ||
<sun:title id="propertyContentPage" title="$resource{i18n_microprofile.microprofile.specs.configuration.config.hashicorpSecretsConfigSource.pageTitle}" | ||
helpText="$resource{i18n_microprofile.microprofile.specs.configuration.config.hashicorpSecretsConfigSource.pageTitleHelpText}" > | ||
<!facet pageButtonsTop> | ||
<sun:panelGroup id="topButtons"> | ||
<sun:button id="saveButton" text="$resource{i18n.button.Save}" | ||
onClick="if (guiValidate('#{reqMsg}','#{reqInt}','#{reqPort}')) | ||
submitAndDisable(this, '$resource{i18n.button.Processing}'); return false;" > | ||
<!command | ||
mapPut(map="#{pageSession.valueMap}" key="enabled" value="#{pageSession.enabledSelected}"); | ||
mapPut(map="#{pageSession.valueMap}" key="dynamic" value="#{pageSession.dynamic}"); | ||
prepareSuccessfulMsg(); | ||
gf.updateEntity(endpoint="#{pageSession.MICROPROFILE_CONFIG_URL}/set-hashicorp-config-source-configuration" | ||
attrs="#{pageSession.valueMap}" convertToFalse="#{pageSession.convertToFalseList}"); | ||
/> | ||
</sun:button> | ||
</sun:panelGroup> | ||
</facet> | ||
</sun:title> | ||
<sun:propertySheet id="propertySheet"> | ||
#include "/common/shared/configNameSection.inc" | ||
<sun:propertySheetSection id="hashicorpSecretsConfigSourceProps"> | ||
<sun:property id="enabledProp" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" | ||
label="$resource{i18n_microprofile.config.hashicorp.configuration.enabledLabel}" | ||
helpText="$resource{i18n_microprofile.config.hashicorp.configuration.enabledHelpText}"> | ||
<sun:checkbox id="enabledProp" selected="#{pageSession.enabledSelected}" selectedValue="true" /> | ||
</sun:property> | ||
<sun:property id="dynamic" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" | ||
label="$resource{i18n_microprofile.config.hashicorp.configuration.dynamicLabel}" | ||
helpText="$resource{i18n_microprofile.config.hashicorp.configuration.dynamicHelpText}"> | ||
<sun:checkbox id="dynamic" selected="#{pageSession.dynamic}" selectedValue="true" /> | ||
</sun:property> | ||
<sun:property id="apiVersionProp" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" | ||
label="$resource{i18n_microprofile.config.hashicorp.configuration.apiVersionLabel}" | ||
helpText="$resource{i18n_microprofile.config.hashicorp.configuration.apiVersionHelpText}"> | ||
<sun:dropDown id="apiVersionDropdown" selected="#{pageSession.valueMap['apiVersion']}" | ||
labels={"1", "2"} /> | ||
</sun:property> | ||
<sun:property id="vaultAddressProp" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" | ||
label="$resource{i18n_microprofile.config.hashicorp.configuration.vaultAddressLabel}" | ||
helpText="$resource{i18n_microprofile.config.hashicorp.configuration.vaultAddressHelpText}"> | ||
<sun:textField id="vaultAddressField" columns="$int{75}" maxLength="512" | ||
text="#{pageSession.valueMap['vaultAddress']}" styleClass="required" | ||
required="#{true}"/> | ||
</sun:property> | ||
<sun:property id="secretsEnginePathProp" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" | ||
label="$resource{i18n_microprofile.config.hashicorp.configuration.secretsEnginePathLabel}" | ||
helpText="$resource{i18n_microprofile.config.hashicorp.configuration.secretsEnginePathHelpText}"> | ||
<sun:textField id="secretsEnginePathField" columns="$int{75}" maxLength="255" | ||
text="#{pageSession.valueMap['secretsEnginePath']}" styleClass="required" | ||
required="#{true}"/> | ||
</sun:property> | ||
<sun:property id="secretsPathProp" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" | ||
label="$resource{i18n_microprofile.config.hashicorp.configuration.secretsPathLabel}" | ||
helpText="$resource{i18n_microprofile.config.hashicorp.configuration.secretsPathHelpText}"> | ||
<sun:textField id="secretsPathField" columns="$int{75}" maxLength="255" | ||
text="#{pageSession.valueMap['secretsPath']}" styleClass="required" | ||
required="#{true}"/> | ||
</sun:property> | ||
</sun:propertySheetSection> | ||
</sun:propertySheet> | ||
</sun:form> | ||
</define> | ||
</composition> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.