mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-30 18:17:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			60 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright (c) HashiCorp, Inc.
 | |
| // SPDX-License-Identifier: BUSL-1.1
 | |
| 
 | |
| package http
 | |
| 
 | |
| import (
 | |
| 	"errors"
 | |
| 	"net/http"
 | |
| 	"strings"
 | |
| 
 | |
| 	"github.com/hashicorp/vault/helper/namespace"
 | |
| 	"github.com/hashicorp/vault/sdk/logical"
 | |
| 	"github.com/hashicorp/vault/vault"
 | |
| )
 | |
| 
 | |
| func wrapHelpHandler(h http.Handler, core *vault.Core) http.Handler {
 | |
| 	return http.HandlerFunc(func(writer http.ResponseWriter, req *http.Request) {
 | |
| 		// If the help parameter is not blank, then show the help. We request
 | |
| 		// forward because standby nodes do not have mounts and other state.
 | |
| 		if v := req.URL.Query().Get("help"); v != "" || req.Method == "HELP" {
 | |
| 			handleRequestForwarding(core,
 | |
| 				http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
 | |
| 					handleHelp(core, w, r)
 | |
| 				})).ServeHTTP(writer, req)
 | |
| 			return
 | |
| 		}
 | |
| 
 | |
| 		h.ServeHTTP(writer, req)
 | |
| 		return
 | |
| 	})
 | |
| }
 | |
| 
 | |
| func handleHelp(core *vault.Core, w http.ResponseWriter, r *http.Request) {
 | |
| 	ns, err := namespace.FromContext(r.Context())
 | |
| 	if err != nil {
 | |
| 		respondError(w, http.StatusBadRequest, nil)
 | |
| 		return
 | |
| 	}
 | |
| 	if !strings.HasPrefix(r.URL.Path, "/v1/") {
 | |
| 		respondError(w, http.StatusNotFound, errors.New("Missing /v1/ prefix in path. Use vault path-help command to retrieve API help for paths"))
 | |
| 		return
 | |
| 	}
 | |
| 	path := trimPath(ns, r.URL.Path)
 | |
| 
 | |
| 	req := &logical.Request{
 | |
| 		Operation:  logical.HelpOperation,
 | |
| 		Path:       path,
 | |
| 		Connection: getConnection(r),
 | |
| 	}
 | |
| 	requestAuth(r, req)
 | |
| 
 | |
| 	resp, err := core.HandleRequest(r.Context(), req)
 | |
| 	if err != nil {
 | |
| 		respondErrorCommon(w, req, resp, err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	respondOk(w, resp.Data)
 | |
| }
 | 
