mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
1401342f46
The Docker CLI already performs version-checks when running commands, but other clients consuming the API client may not do so. This patch adds a version check to various client functions. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
37 lines
901 B
Go
37 lines
901 B
Go
package client
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"io/ioutil"
|
|
"net/http"
|
|
|
|
"github.com/docker/docker/api/types/swarm"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// ConfigInspectWithRaw returns the config information with raw data
|
|
func (cli *Client) ConfigInspectWithRaw(ctx context.Context, id string) (swarm.Config, []byte, error) {
|
|
if err := cli.NewVersionError("1.30", "config inspect"); err != nil {
|
|
return swarm.Config{}, nil, err
|
|
}
|
|
resp, err := cli.get(ctx, "/configs/"+id, nil, nil)
|
|
if err != nil {
|
|
if resp.statusCode == http.StatusNotFound {
|
|
return swarm.Config{}, nil, configNotFoundError{id}
|
|
}
|
|
return swarm.Config{}, nil, err
|
|
}
|
|
defer ensureReaderClosed(resp)
|
|
|
|
body, err := ioutil.ReadAll(resp.body)
|
|
if err != nil {
|
|
return swarm.Config{}, nil, err
|
|
}
|
|
|
|
var config swarm.Config
|
|
rdr := bytes.NewReader(body)
|
|
err = json.NewDecoder(rdr).Decode(&config)
|
|
|
|
return config, body, err
|
|
}
|