open-vault/api/sys_auth.go

81 lines
1.8 KiB
Go
Raw Normal View History

2015-03-11 19:03:28 +00:00
package api
import (
"context"
"errors"
2015-03-11 19:03:28 +00:00
"fmt"
2016-08-08 20:00:31 +00:00
"github.com/mitchellh/mapstructure"
2015-03-11 19:03:28 +00:00
)
func (c *Sys) ListAuth() (map[string]*AuthMount, error) {
2015-03-13 17:32:22 +00:00
r := c.c.NewRequest("GET", "/v1/sys/auth")
ctx, cancelFunc := context.WithCancel(context.Background())
defer cancelFunc()
resp, err := c.c.RawRequestWithContext(ctx, r)
2015-03-11 19:03:28 +00:00
if err != nil {
return nil, err
}
defer resp.Body.Close()
secret, err := ParseSecret(resp.Body)
2016-08-08 20:00:31 +00:00
if err != nil {
return nil, err
}
if secret == nil || secret.Data == nil {
return nil, errors.New("data from server response is empty")
}
2016-08-08 20:00:31 +00:00
mounts := map[string]*AuthMount{}
err = mapstructure.Decode(secret.Data, &mounts)
if err != nil {
return nil, err
2016-08-08 20:00:31 +00:00
}
return mounts, nil
2015-03-11 19:03:28 +00:00
}
// DEPRECATED: Use EnableAuthWithOptions instead
2015-04-01 03:27:55 +00:00
func (c *Sys) EnableAuth(path, authType, desc string) error {
return c.EnableAuthWithOptions(path, &EnableAuthOptions{
Type: authType,
Description: desc,
})
}
func (c *Sys) EnableAuthWithOptions(path string, options *EnableAuthOptions) error {
2015-04-02 00:09:11 +00:00
r := c.c.NewRequest("POST", fmt.Sprintf("/v1/sys/auth/%s", path))
if err := r.SetJSONBody(options); err != nil {
2015-03-11 19:03:28 +00:00
return err
}
ctx, cancelFunc := context.WithCancel(context.Background())
defer cancelFunc()
resp, err := c.c.RawRequestWithContext(ctx, r)
2015-03-11 19:03:28 +00:00
if err != nil {
return err
}
defer resp.Body.Close()
return nil
}
2015-04-01 03:27:55 +00:00
func (c *Sys) DisableAuth(path string) error {
r := c.c.NewRequest("DELETE", fmt.Sprintf("/v1/sys/auth/%s", path))
ctx, cancelFunc := context.WithCancel(context.Background())
defer cancelFunc()
resp, err := c.c.RawRequestWithContext(ctx, r)
2015-04-01 03:27:55 +00:00
if err == nil {
defer resp.Body.Close()
}
2015-03-11 19:03:28 +00:00
return err
}
2018-10-15 16:56:24 +00:00
// Rather than duplicate, we can use modern Go's type aliasing
type EnableAuthOptions = MountInput
type AuthConfigInput = MountConfigInput
type AuthMount = MountOutput
type AuthConfigOutput = MountConfigOutput