2016-03-02 18:42:32 +00:00
|
|
|
package api
|
|
|
|
|
2016-03-03 16:08:27 +00:00
|
|
|
func (c *Sys) CapabilitiesSelf(path string) (*CapabilitiesResponse, error) {
|
2016-03-02 18:42:32 +00:00
|
|
|
body := map[string]string{
|
|
|
|
"path": path,
|
|
|
|
}
|
|
|
|
|
|
|
|
r := c.c.NewRequest("POST", "/v1/sys/capabilities-self")
|
|
|
|
if err := r.SetJSONBody(body); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
resp, err := c.c.RawRequest(r)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
2016-03-03 16:08:27 +00:00
|
|
|
var result CapabilitiesResponse
|
2016-03-02 18:42:32 +00:00
|
|
|
err = resp.DecodeJSON(&result)
|
2016-03-03 16:08:27 +00:00
|
|
|
return &result, err
|
2016-03-02 18:42:32 +00:00
|
|
|
}
|
|
|
|
|
2016-03-03 16:08:27 +00:00
|
|
|
func (c *Sys) Capabilities(token, path string) (*CapabilitiesResponse, error) {
|
2016-03-02 18:42:32 +00:00
|
|
|
body := map[string]string{
|
|
|
|
"token": token,
|
|
|
|
"path": path,
|
|
|
|
}
|
|
|
|
|
|
|
|
r := c.c.NewRequest("POST", "/v1/sys/capabilities")
|
|
|
|
if err := r.SetJSONBody(body); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
resp, err := c.c.RawRequest(r)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
2016-03-03 16:08:27 +00:00
|
|
|
var result CapabilitiesResponse
|
2016-03-02 18:42:32 +00:00
|
|
|
err = resp.DecodeJSON(&result)
|
2016-03-03 16:08:27 +00:00
|
|
|
return &result, err
|
2016-03-02 18:42:32 +00:00
|
|
|
}
|
|
|
|
|
2016-03-03 16:08:27 +00:00
|
|
|
type CapabilitiesResponse struct {
|
2016-03-02 18:42:32 +00:00
|
|
|
Capabilities []string `json:"capabilities"`
|
|
|
|
}
|