2015-04-03 05:21:33 +00:00
|
|
|
package api
|
|
|
|
|
2015-04-03 05:26:34 +00:00
|
|
|
import (
|
2018-07-24 22:49:55 +00:00
|
|
|
"context"
|
2015-04-03 05:26:34 +00:00
|
|
|
"fmt"
|
2022-03-24 17:58:03 +00:00
|
|
|
"net/http"
|
2015-04-03 05:26:34 +00:00
|
|
|
)
|
|
|
|
|
2022-03-23 21:47:43 +00:00
|
|
|
// Help wraps HelpWithContext using context.Background.
|
2015-04-03 05:26:34 +00:00
|
|
|
func (c *Client) Help(path string) (*Help, error) {
|
2022-03-23 21:47:43 +00:00
|
|
|
return c.HelpWithContext(context.Background(), path)
|
|
|
|
}
|
|
|
|
|
|
|
|
// HelpWithContext reads the help information for the given path.
|
|
|
|
func (c *Client) HelpWithContext(ctx context.Context, path string) (*Help, error) {
|
|
|
|
ctx, cancelFunc := c.withConfiguredTimeout(ctx)
|
|
|
|
defer cancelFunc()
|
|
|
|
|
2022-03-24 17:58:03 +00:00
|
|
|
r := c.NewRequest(http.MethodGet, fmt.Sprintf("/v1/%s", path))
|
2015-04-03 05:42:05 +00:00
|
|
|
r.Params.Add("help", "1")
|
2018-07-24 22:49:55 +00:00
|
|
|
|
2022-03-23 21:47:43 +00:00
|
|
|
resp, err := c.rawRequestWithContext(ctx, r)
|
2015-04-03 05:26:34 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
|
|
|
var result Help
|
|
|
|
err = resp.DecodeJSON(&result)
|
|
|
|
return &result, err
|
|
|
|
}
|
|
|
|
|
|
|
|
type Help struct {
|
2019-06-27 16:56:31 +00:00
|
|
|
Help string `json:"help"`
|
|
|
|
SeeAlso []string `json:"see_also"`
|
|
|
|
OpenAPI map[string]interface{} `json:"openapi"`
|
2015-04-03 05:21:33 +00:00
|
|
|
}
|