open-vault/api/sys_auth.go

63 lines
1.2 KiB
Go
Raw Normal View History

2015-03-11 19:03:28 +00:00
package api
import (
"fmt"
)
func (c *Sys) ListAuth() ([]*AuthResponse, error) {
2015-03-13 17:32:22 +00:00
r := c.c.NewRequest("GET", "/v1/sys/auth")
2015-03-11 19:03:28 +00:00
resp, err := c.c.RawRequest(r)
if err != nil {
return nil, err
}
defer resp.Body.Close()
var result []*AuthResponse
err = resp.DecodeJSON(&result)
return result, err
}
func (c *Sys) EnableAuth(id string, opts *AuthRequest) error {
body := make(map[string]string)
for k, v := range opts.Config {
body[k] = v
}
body["type"] = opts.Type
2015-03-13 17:32:22 +00:00
r := c.c.NewRequest("PUT", fmt.Sprintf("/v1/sys/auth/%s", id))
2015-03-11 19:03:28 +00:00
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(id string) error {
2015-03-13 17:32:22 +00:00
r := c.c.NewRequest("DELETE", fmt.Sprintf("/v1/sys/auth/%s", id))
2015-03-11 19:03:28 +00:00
resp, err := c.c.RawRequest(r)
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 AuthRequest struct {
Type string
Config map[string]string
}
type AuthResponse struct {
ID string
Type string
Help string
Keys []string
}