2016-10-08 09:34:37 -04:00
|
|
|
/*
|
2016-11-15 14:45:20 -05:00
|
|
|
Package client is a Go client for the Docker Engine API.
|
2016-10-08 09:34:37 -04:00
|
|
|
|
2016-11-15 14:45:20 -05:00
|
|
|
For more information about the Engine API, see the documentation:
|
|
|
|
https://docs.docker.com/engine/reference/api/
|
2016-10-08 09:34:37 -04:00
|
|
|
|
|
|
|
Usage
|
|
|
|
|
|
|
|
You use the library by creating a client object and calling methods on it. The
|
|
|
|
client can be created either from environment variables with NewEnvClient, or
|
|
|
|
configured manually with NewClient.
|
|
|
|
|
|
|
|
For example, to list running containers (the equivalent of "docker ps"):
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/docker/docker/api/types"
|
|
|
|
"github.com/docker/docker/client"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2019-01-03 16:49:00 -05:00
|
|
|
cli, err := client.NewClientWithOpts(client.FromEnv)
|
2016-10-08 09:34:37 -04:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
containers, err := cli.ContainerList(context.Background(), types.ContainerListOptions{})
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, container := range containers {
|
|
|
|
fmt.Printf("%s %s\n", container.ID[:10], container.Image)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*/
|
2018-02-05 16:05:59 -05:00
|
|
|
package client // import "github.com/docker/docker/client"
|
2016-09-06 14:46:37 -04:00
|
|
|
|
|
|
|
import (
|
2018-04-19 18:30:59 -04:00
|
|
|
"context"
|
2016-09-06 14:46:37 -04:00
|
|
|
"fmt"
|
2018-02-16 13:24:57 -05:00
|
|
|
"net"
|
2016-09-06 14:46:37 -04:00
|
|
|
"net/http"
|
|
|
|
"net/url"
|
2017-08-11 13:47:02 -04:00
|
|
|
"path"
|
2016-09-06 14:46:37 -04:00
|
|
|
"strings"
|
|
|
|
|
2017-02-19 03:43:08 -05:00
|
|
|
"github.com/docker/docker/api"
|
2017-06-21 01:58:16 -04:00
|
|
|
"github.com/docker/docker/api/types"
|
|
|
|
"github.com/docker/docker/api/types/versions"
|
2016-09-08 23:44:25 -04:00
|
|
|
"github.com/docker/go-connections/sockets"
|
2018-02-16 13:24:57 -05:00
|
|
|
"github.com/pkg/errors"
|
2016-09-06 14:46:37 -04:00
|
|
|
)
|
|
|
|
|
2017-03-27 05:05:35 -04:00
|
|
|
// ErrRedirect is the error returned by checkRedirect when the request is non-GET.
|
|
|
|
var ErrRedirect = errors.New("unexpected redirect in response")
|
|
|
|
|
2016-09-06 14:46:37 -04:00
|
|
|
// Client is the API client that performs all operations
|
|
|
|
// against a docker server.
|
|
|
|
type Client struct {
|
2016-10-11 18:53:14 -04:00
|
|
|
// scheme sets the scheme for the client
|
|
|
|
scheme string
|
2016-09-06 14:46:37 -04:00
|
|
|
// host holds the server address to connect to
|
|
|
|
host string
|
|
|
|
// proto holds the client protocol i.e. unix.
|
|
|
|
proto string
|
|
|
|
// addr holds the client address.
|
|
|
|
addr string
|
|
|
|
// basePath holds the path to prepend to the requests.
|
|
|
|
basePath string
|
2016-09-08 23:44:25 -04:00
|
|
|
// client used to send and receive http requests.
|
|
|
|
client *http.Client
|
2016-09-06 14:46:37 -04:00
|
|
|
// version of the server to talk to.
|
|
|
|
version string
|
|
|
|
// custom http headers configured by users.
|
|
|
|
customHTTPHeaders map[string]string
|
2016-11-02 20:43:32 -04:00
|
|
|
// manualOverride is set to true when the version was set by users.
|
|
|
|
manualOverride bool
|
2019-04-08 08:14:07 -04:00
|
|
|
|
|
|
|
// negotiateVersion indicates if the client should automatically negotiate
|
|
|
|
// the API version to use when making requests. API version negotiation is
|
|
|
|
// performed on the first request, after which negotiated is set to "true"
|
|
|
|
// so that subsequent requests do not re-negotiate.
|
|
|
|
negotiateVersion bool
|
|
|
|
|
|
|
|
// negotiated indicates that API version negotiation took place
|
|
|
|
negotiated bool
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|
|
|
|
|
2017-03-27 05:05:35 -04:00
|
|
|
// CheckRedirect specifies the policy for dealing with redirect responses:
|
|
|
|
// If the request is non-GET return `ErrRedirect`. Otherwise use the last response.
|
|
|
|
//
|
2017-05-21 19:24:07 -04:00
|
|
|
// Go 1.8 changes behavior for HTTP redirects (specifically 301, 307, and 308) in the client .
|
2019-02-26 13:50:04 -05:00
|
|
|
// The Docker client (and by extension docker API client) can be made to send a request
|
2017-03-27 05:05:35 -04:00
|
|
|
// like POST /containers//start where what would normally be in the name section of the URL is empty.
|
|
|
|
// This triggers an HTTP 301 from the daemon.
|
|
|
|
// In go 1.8 this 301 will be converted to a GET request, and ends up getting a 404 from the daemon.
|
|
|
|
// This behavior change manifests in the client in that before the 301 was not followed and
|
|
|
|
// the client did not generate an error, but now results in a message like Error response from daemon: page not found.
|
|
|
|
func CheckRedirect(req *http.Request, via []*http.Request) error {
|
|
|
|
if via[0].Method == http.MethodGet {
|
|
|
|
return http.ErrUseLastResponse
|
|
|
|
}
|
|
|
|
return ErrRedirect
|
|
|
|
}
|
|
|
|
|
2018-01-31 14:28:33 -05:00
|
|
|
// NewClientWithOpts initializes a new API client with default values. It takes functors
|
|
|
|
// to modify values when creating it, like `NewClientWithOpts(WithVersion(…))`
|
2016-09-06 14:46:37 -04:00
|
|
|
// It also initializes the custom http headers to add to each request.
|
|
|
|
//
|
|
|
|
// It won't send any version information if the version number is empty. It is
|
|
|
|
// highly recommended that you set a version or your client may break if the
|
|
|
|
// server is upgraded.
|
2019-04-09 19:11:53 -04:00
|
|
|
func NewClientWithOpts(ops ...Opt) (*Client, error) {
|
2018-01-31 14:28:33 -05:00
|
|
|
client, err := defaultHTTPClient(DefaultDockerHost)
|
2016-09-06 14:46:37 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2018-01-31 14:28:33 -05:00
|
|
|
c := &Client{
|
|
|
|
host: DefaultDockerHost,
|
|
|
|
version: api.DefaultVersion,
|
|
|
|
client: client,
|
|
|
|
proto: defaultProto,
|
|
|
|
addr: defaultAddr,
|
|
|
|
}
|
2016-09-06 14:46:37 -04:00
|
|
|
|
2018-01-31 14:28:33 -05:00
|
|
|
for _, op := range ops {
|
|
|
|
if err := op(c); err != nil {
|
|
|
|
return nil, err
|
2016-09-21 22:16:44 -04:00
|
|
|
}
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|
|
|
|
|
2018-01-31 14:28:33 -05:00
|
|
|
if _, ok := c.client.Transport.(http.RoundTripper); !ok {
|
|
|
|
return nil, fmt.Errorf("unable to verify TLS configuration, invalid transport %v", c.client.Transport)
|
|
|
|
}
|
2018-11-01 13:40:37 -04:00
|
|
|
if c.scheme == "" {
|
|
|
|
c.scheme = "http"
|
|
|
|
|
|
|
|
tlsConfig := resolveTLSConfig(c.client.Transport)
|
|
|
|
if tlsConfig != nil {
|
|
|
|
// TODO(stevvooe): This isn't really the right way to write clients in Go.
|
|
|
|
// `NewClient` should probably only take an `*http.Client` and work from there.
|
|
|
|
// Unfortunately, the model of having a host-ish/url-thingy as the connection
|
|
|
|
// string has us confusing protocol and transport layers. We continue doing
|
|
|
|
// this to avoid breaking existing clients but this should be addressed.
|
|
|
|
c.scheme = "https"
|
|
|
|
}
|
2018-01-31 14:28:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return c, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func defaultHTTPClient(host string) (*http.Client, error) {
|
|
|
|
url, err := ParseHostURL(host)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
transport := new(http.Transport)
|
|
|
|
sockets.ConfigureTransport(transport, url.Scheme, url.Host)
|
|
|
|
return &http.Client{
|
|
|
|
Transport: transport,
|
|
|
|
CheckRedirect: CheckRedirect,
|
2016-09-06 14:46:37 -04:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2017-09-07 12:22:11 -04:00
|
|
|
// Close the transport used by the client
|
2016-09-07 21:57:54 -04:00
|
|
|
func (cli *Client) Close() error {
|
|
|
|
if t, ok := cli.client.Transport.(*http.Transport); ok {
|
|
|
|
t.CloseIdleConnections()
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-09-06 14:46:37 -04:00
|
|
|
// getAPIPath returns the versioned request path to call the api.
|
|
|
|
// It appends the query parameters to the path if they are not empty.
|
2019-04-08 08:14:07 -04:00
|
|
|
func (cli *Client) getAPIPath(ctx context.Context, p string, query url.Values) string {
|
2016-09-06 14:46:37 -04:00
|
|
|
var apiPath string
|
2019-04-08 08:14:07 -04:00
|
|
|
if cli.negotiateVersion && !cli.negotiated {
|
|
|
|
cli.NegotiateAPIVersion(ctx)
|
|
|
|
}
|
2016-09-06 14:46:37 -04:00
|
|
|
if cli.version != "" {
|
|
|
|
v := strings.TrimPrefix(cli.version, "v")
|
2017-09-07 13:46:23 -04:00
|
|
|
apiPath = path.Join(cli.basePath, "/v"+v, p)
|
2016-09-06 14:46:37 -04:00
|
|
|
} else {
|
2017-08-11 13:47:02 -04:00
|
|
|
apiPath = path.Join(cli.basePath, p)
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|
2017-09-07 13:46:23 -04:00
|
|
|
return (&url.URL{Path: apiPath, RawQuery: query.Encode()}).String()
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|
|
|
|
|
2017-09-07 12:22:11 -04:00
|
|
|
// ClientVersion returns the API version used by this client.
|
2016-09-06 14:46:37 -04:00
|
|
|
func (cli *Client) ClientVersion() string {
|
|
|
|
return cli.version
|
|
|
|
}
|
|
|
|
|
2017-09-07 12:22:11 -04:00
|
|
|
// NegotiateAPIVersion queries the API and updates the version to match the
|
2019-04-08 08:14:07 -04:00
|
|
|
// API version. Any errors are silently ignored. If a manual override is in place,
|
|
|
|
// either through the `DOCKER_API_VERSION` environment variable, or if the client
|
|
|
|
// was initialized with a fixed version (`opts.WithVersion(xx)`), no negotiation
|
|
|
|
// will be performed.
|
2017-06-21 01:58:16 -04:00
|
|
|
func (cli *Client) NegotiateAPIVersion(ctx context.Context) {
|
2019-04-08 08:14:07 -04:00
|
|
|
if !cli.manualOverride {
|
|
|
|
ping, _ := cli.Ping(ctx)
|
|
|
|
cli.negotiateAPIVersionPing(ping)
|
|
|
|
}
|
2017-06-21 01:58:16 -04:00
|
|
|
}
|
|
|
|
|
2017-09-07 12:22:11 -04:00
|
|
|
// NegotiateAPIVersionPing updates the client version to match the Ping.APIVersion
|
2019-04-08 08:14:07 -04:00
|
|
|
// if the ping version is less than the default version. If a manual override is
|
|
|
|
// in place, either through the `DOCKER_API_VERSION` environment variable, or if
|
|
|
|
// the client was initialized with a fixed version (`opts.WithVersion(xx)`), no
|
|
|
|
// negotiation is performed.
|
2017-06-21 01:58:16 -04:00
|
|
|
func (cli *Client) NegotiateAPIVersionPing(p types.Ping) {
|
2019-04-08 08:14:07 -04:00
|
|
|
if !cli.manualOverride {
|
|
|
|
cli.negotiateAPIVersionPing(p)
|
2016-11-02 20:43:32 -04:00
|
|
|
}
|
2019-04-08 08:14:07 -04:00
|
|
|
}
|
2016-11-02 20:43:32 -04:00
|
|
|
|
2019-04-08 08:14:07 -04:00
|
|
|
// negotiateAPIVersionPing queries the API and updates the version to match the
|
|
|
|
// API version. Any errors are silently ignored.
|
|
|
|
func (cli *Client) negotiateAPIVersionPing(p types.Ping) {
|
2017-06-21 01:58:16 -04:00
|
|
|
// try the latest version before versioning headers existed
|
|
|
|
if p.APIVersion == "" {
|
|
|
|
p.APIVersion = "1.24"
|
|
|
|
}
|
|
|
|
|
2017-06-30 01:24:49 -04:00
|
|
|
// if the client is not initialized with a version, start with the latest supported version
|
|
|
|
if cli.version == "" {
|
|
|
|
cli.version = api.DefaultVersion
|
|
|
|
}
|
|
|
|
|
2017-09-27 21:12:13 -04:00
|
|
|
// if server version is lower than the client version, downgrade
|
|
|
|
if versions.LessThan(p.APIVersion, cli.version) {
|
2017-06-21 01:58:16 -04:00
|
|
|
cli.version = p.APIVersion
|
|
|
|
}
|
2019-04-08 08:14:07 -04:00
|
|
|
|
|
|
|
// Store the results, so that automatic API version negotiation (if enabled)
|
|
|
|
// won't be performed on the next request.
|
|
|
|
if cli.negotiateVersion {
|
|
|
|
cli.negotiated = true
|
|
|
|
}
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|
|
|
|
|
2017-09-07 12:22:11 -04:00
|
|
|
// DaemonHost returns the host address used by the client
|
2017-05-17 10:46:15 -04:00
|
|
|
func (cli *Client) DaemonHost() string {
|
|
|
|
return cli.host
|
|
|
|
}
|
|
|
|
|
2018-05-15 09:12:30 -04:00
|
|
|
// HTTPClient returns a copy of the HTTP client bound to the server
|
|
|
|
func (cli *Client) HTTPClient() *http.Client {
|
2019-08-05 10:48:52 -04:00
|
|
|
c := *cli.client
|
|
|
|
return &c
|
2018-05-15 09:12:30 -04:00
|
|
|
}
|
|
|
|
|
2017-09-07 12:22:11 -04:00
|
|
|
// ParseHostURL parses a url string, validates the string is a host url, and
|
|
|
|
// returns the parsed URL
|
|
|
|
func ParseHostURL(host string) (*url.URL, error) {
|
2016-09-06 14:46:37 -04:00
|
|
|
protoAddrParts := strings.SplitN(host, "://", 2)
|
|
|
|
if len(protoAddrParts) == 1 {
|
2017-09-07 12:22:11 -04:00
|
|
|
return nil, fmt.Errorf("unable to parse docker host `%s`", host)
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
var basePath string
|
|
|
|
proto, addr := protoAddrParts[0], protoAddrParts[1]
|
|
|
|
if proto == "tcp" {
|
|
|
|
parsed, err := url.Parse("tcp://" + addr)
|
|
|
|
if err != nil {
|
2017-09-07 12:22:11 -04:00
|
|
|
return nil, err
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|
|
|
|
addr = parsed.Host
|
|
|
|
basePath = parsed.Path
|
|
|
|
}
|
2017-09-07 12:22:11 -04:00
|
|
|
return &url.URL{
|
|
|
|
Scheme: proto,
|
|
|
|
Host: addr,
|
|
|
|
Path: basePath,
|
|
|
|
}, nil
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|
2016-10-21 01:41:54 -04:00
|
|
|
|
2017-09-07 12:22:11 -04:00
|
|
|
// CustomHTTPHeaders returns the custom http headers stored by the client.
|
2016-10-21 01:41:54 -04:00
|
|
|
func (cli *Client) CustomHTTPHeaders() map[string]string {
|
|
|
|
m := make(map[string]string)
|
|
|
|
for k, v := range cli.customHTTPHeaders {
|
|
|
|
m[k] = v
|
|
|
|
}
|
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
2017-09-07 12:22:11 -04:00
|
|
|
// SetCustomHTTPHeaders that will be set on every HTTP request made by the client.
|
2018-02-16 13:24:57 -05:00
|
|
|
// Deprecated: use WithHTTPHeaders when creating the client.
|
2016-10-21 01:41:54 -04:00
|
|
|
func (cli *Client) SetCustomHTTPHeaders(headers map[string]string) {
|
|
|
|
cli.customHTTPHeaders = headers
|
|
|
|
}
|
2018-03-19 04:33:06 -04:00
|
|
|
|
|
|
|
// Dialer returns a dialer for a raw stream connection, with HTTP/1.1 header, that can be used for proxying the daemon connection.
|
|
|
|
// Used by `docker dial-stdio` (docker/cli#889).
|
|
|
|
func (cli *Client) Dialer() func(context.Context) (net.Conn, error) {
|
|
|
|
return func(ctx context.Context) (net.Conn, error) {
|
|
|
|
if transport, ok := cli.client.Transport.(*http.Transport); ok {
|
2018-09-04 18:09:44 -04:00
|
|
|
if transport.DialContext != nil && transport.TLSClientConfig == nil {
|
2018-03-19 04:33:06 -04:00
|
|
|
return transport.DialContext(ctx, cli.proto, cli.addr)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return fallbackDial(cli.proto, cli.addr, resolveTLSConfig(cli.client.Transport))
|
|
|
|
}
|
|
|
|
}
|