mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-04 04:28:08 +00:00 
			
		
		
		
	This allows mount paths to start with '/' in addition to ensuring they end in '/' before leaving the system backend.
		
			
				
	
	
		
			57 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package api
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
)
 | 
						|
 | 
						|
func (c *Sys) ListAuth() (map[string]*AuthMount, error) {
 | 
						|
	r := c.c.NewRequest("GET", "/v1/sys/auth")
 | 
						|
	resp, err := c.c.RawRequest(r)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	defer resp.Body.Close()
 | 
						|
 | 
						|
	var result map[string]*AuthMount
 | 
						|
	err = resp.DecodeJSON(&result)
 | 
						|
	return result, err
 | 
						|
}
 | 
						|
 | 
						|
func (c *Sys) EnableAuth(path, authType, desc string) error {
 | 
						|
	body := map[string]string{
 | 
						|
		"type":        authType,
 | 
						|
		"description": desc,
 | 
						|
	}
 | 
						|
 | 
						|
	r := c.c.NewRequest("POST", fmt.Sprintf("/v1/sys/auth/%s", path))
 | 
						|
	if err := r.SetJSONBody(body); err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
 | 
						|
	resp, err := c.c.RawRequest(r)
 | 
						|
	if err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
	defer resp.Body.Close()
 | 
						|
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *Sys) DisableAuth(path string) error {
 | 
						|
	r := c.c.NewRequest("DELETE", fmt.Sprintf("/v1/sys/auth/%s", path))
 | 
						|
	resp, err := c.c.RawRequest(r)
 | 
						|
	if err == nil {
 | 
						|
		defer resp.Body.Close()
 | 
						|
	}
 | 
						|
	return err
 | 
						|
}
 | 
						|
 | 
						|
// Structures for the requests/resposne are all down here. They aren't
 | 
						|
// individually documentd because the map almost directly to the raw HTTP API
 | 
						|
// documentation. Please refer to that documentation for more details.
 | 
						|
 | 
						|
type AuthMount struct {
 | 
						|
	Type        string
 | 
						|
	Description string
 | 
						|
}
 |