open-vault/api/sys_mounts.go

130 lines
2.5 KiB
Go
Raw Normal View History

2015-03-12 00:27:39 +00:00
package api
import (
"fmt"
"github.com/fatih/structs"
"github.com/hashicorp/vault/vault"
2015-03-12 00:27:39 +00:00
)
func (c *Sys) ListMounts() (map[string]*Mount, error) {
2015-03-13 17:32:22 +00:00
r := c.c.NewRequest("GET", "/v1/sys/mounts")
2015-03-12 00:27:39 +00:00
resp, err := c.c.RawRequest(r)
if err != nil {
return nil, err
}
defer resp.Body.Close()
var result map[string]*Mount
err = resp.DecodeJSON(&result)
return result, err
}
func (c *Sys) Mount(path string, mountInfo *Mount) error {
2015-03-12 00:27:39 +00:00
if err := c.checkMountPath(path); err != nil {
return err
}
body := structs.Map(mountInfo)
2015-03-12 00:27:39 +00:00
2015-03-13 17:32:22 +00:00
r := c.c.NewRequest("POST", fmt.Sprintf("/v1/sys/mounts/%s", path))
2015-03-12 00:27:39 +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) Unmount(path string) error {
if err := c.checkMountPath(path); err != nil {
return err
}
2015-03-13 17:32:22 +00:00
r := c.c.NewRequest("DELETE", fmt.Sprintf("/v1/sys/mounts/%s", path))
2015-03-12 00:27:39 +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-12 00:27:39 +00:00
return err
}
func (c *Sys) Remount(from, to string) error {
2015-03-12 00:27:39 +00:00
if err := c.checkMountPath(from); err != nil {
return err
}
if err := c.checkMountPath(to); err != nil {
return err
}
body := map[string]interface{}{
"from": from,
"to": to,
}
2015-03-12 00:27:39 +00:00
2015-03-13 17:32:22 +00:00
r := c.c.NewRequest("POST", "/v1/sys/remount")
2015-03-12 00:27:39 +00:00
if err := r.SetJSONBody(body); err != nil {
return err
}
resp, err := c.c.RawRequest(r)
2015-04-07 17:46:47 +00:00
if err == nil {
defer resp.Body.Close()
}
2015-03-12 00:27:39 +00:00
return err
}
func (c *Sys) TuneMount(path string, config vault.MountConfig) error {
if err := c.checkMountPath(path); err != nil {
return err
}
body := map[string]interface{}{
"config": config,
}
r := c.c.NewRequest("POST", fmt.Sprintf("/v1/sys/mounts/%s/tune", path))
if err := r.SetJSONBody(body); err != nil {
return err
}
resp, err := c.c.RawRequest(r)
if err == nil {
defer resp.Body.Close()
}
return err
}
func (c *Sys) MountConfig(path string) error {
if err := c.checkMountPath(path); err != nil {
return err
}
r := c.c.NewRequest("GET", fmt.Sprintf("/v1/sys/mounts/%s/tune", path))
resp, err := c.c.RawRequest(r)
if err == nil {
defer resp.Body.Close()
}
return err
}
2015-03-12 00:27:39 +00:00
func (c *Sys) checkMountPath(path string) error {
if path[0] == '/' {
return fmt.Errorf("path must not start with /: %s", path)
}
return nil
}
type Mount struct {
Type string `json:"type" structs:"type"`
Description string `json:"description" structs:"description"`
Config vault.MountConfig `json:"config" structs:"config"`
2015-03-12 00:27:39 +00:00
}