open-vault/api/sys_auth.go

57 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() (map[string]*AuthMount, 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 map[string]*AuthMount
2015-03-11 19:03:28 +00:00
err = resp.DecodeJSON(&result)
return result, err
}
2015-04-01 03:27:55 +00:00
func (c *Sys) EnableAuth(path, authType, desc string) error {
body := map[string]string{
"type": authType,
2015-04-01 03:29:20 +00:00
"description": desc,
2015-03-11 19:03:28 +00:00
}
2015-04-02 00:09:11 +00:00
r := c.c.NewRequest("POST", fmt.Sprintf("/v1/sys/auth/%s", path))
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
}
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))
2015-03-11 19:03:28 +00:00
resp, err := c.c.RawRequest(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
}
// 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 {
2015-04-01 03:27:55 +00:00
Type string
Description string
2015-03-11 19:03:28 +00:00
}