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()
|
|
|
|
|
2015-04-01 03:27:55 +00:00
|
|
|
var result map[string]*Auth
|
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 {
|
|
|
|
if err := c.checkAuthPath(path); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
body := map[string]string{
|
|
|
|
"type": authType,
|
|
|
|
"description": description,
|
2015-03-11 19:03:28 +00:00
|
|
|
}
|
|
|
|
|
2015-04-01 03:27:55 +00:00
|
|
|
r := c.c.NewRequest("PUT", 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 {
|
|
|
|
if err := c.checkAuthPath(path); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2015-04-01 03:27:55 +00:00
|
|
|
func (c *Sys) checkAuthPath(path string) error {
|
|
|
|
if path[0] == '/' {
|
|
|
|
return fmt.Errorf("path must not start with /: %s", path)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-03-11 19:03:28 +00:00
|
|
|
// 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.
|
|
|
|
|
2015-04-01 03:27:55 +00:00
|
|
|
type Auth struct {
|
|
|
|
Type string
|
|
|
|
Description string
|
2015-03-11 19:03:28 +00:00
|
|
|
}
|