vault/http/sys_feature_flags.go
Vault Automation 0c6c13dd38
license: update headers to IBM Corp. (#10229) (#10233)
* license: update headers to IBM Corp.
* `make proto`
* update offset because source file changed

Signed-off-by: Ryan Cragun <me@ryan.ec>
Co-authored-by: Ryan Cragun <me@ryan.ec>
2025-10-21 15:20:20 -06:00

58 lines
1.1 KiB
Go

// Copyright IBM Corp. 2016, 2025
// SPDX-License-Identifier: BUSL-1.1
package http
import (
"encoding/json"
"net/http"
"os"
"github.com/hashicorp/vault/sdk/logical"
"github.com/hashicorp/vault/vault"
)
type FeatureFlagsResponse struct {
FeatureFlags []string `json:"feature_flags"`
}
var FeatureFlag_EnvVariables = [...]string{
"VAULT_CLOUD_ADMIN_NAMESPACE",
}
func featureFlagIsSet(name string) bool {
switch os.Getenv(name) {
case "", "0":
return false
default:
return true
}
}
func handleSysInternalFeatureFlags(core *vault.Core) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
switch r.Method {
case "GET":
break
default:
respondError(w, http.StatusMethodNotAllowed, nil)
}
response := &FeatureFlagsResponse{}
for _, f := range FeatureFlag_EnvVariables {
if featureFlagIsSet(f) {
response.FeatureFlags = append(response.FeatureFlags, f)
}
}
w.Header().Set("Content-Type", "application/json")
defer logical.IncrementResponseStatusCodeMetric(http.StatusOK)
w.WriteHeader(http.StatusOK)
// Generate the response
enc := json.NewEncoder(w)
enc.Encode(response)
})
}