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 (
|
|
|
|
"fmt"
|
2017-09-08 12:04:34 -04:00
|
|
|
|
2016-11-02 20:43:32 -04:00
|
|
|
"github.com/docker/docker/api/types/versions"
|
2018-12-31 12:16:08 -05:00
|
|
|
"github.com/docker/docker/errdefs"
|
2016-11-21 21:42:55 -05:00
|
|
|
"github.com/pkg/errors"
|
2016-09-06 14:46:37 -04:00
|
|
|
)
|
|
|
|
|
2016-11-21 21:42:55 -05:00
|
|
|
// errConnectionFailed implements an error returned when connection failed.
|
|
|
|
type errConnectionFailed struct {
|
|
|
|
host string
|
|
|
|
}
|
|
|
|
|
|
|
|
// Error returns a string representation of an errConnectionFailed
|
|
|
|
func (err errConnectionFailed) Error() string {
|
|
|
|
if err.host == "" {
|
|
|
|
return "Cannot connect to the Docker daemon. Is the docker daemon running on this host?"
|
|
|
|
}
|
|
|
|
return fmt.Sprintf("Cannot connect to the Docker daemon at %s. Is the docker daemon running?", err.host)
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrConnectionFailed returns true if the error is caused by connection failed.
|
|
|
|
func IsErrConnectionFailed(err error) bool {
|
2020-04-17 06:01:01 -04:00
|
|
|
return errors.As(err, &errConnectionFailed{})
|
2016-11-21 21:42:55 -05:00
|
|
|
}
|
2016-09-06 14:46:37 -04:00
|
|
|
|
|
|
|
// ErrorConnectionFailed returns an error with host in the error message when connection to docker daemon failed.
|
|
|
|
func ErrorConnectionFailed(host string) error {
|
2016-11-21 21:42:55 -05:00
|
|
|
return errConnectionFailed{host: host}
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|
|
|
|
|
2019-02-09 11:48:18 -05:00
|
|
|
// Deprecated: use the errdefs.NotFound() interface instead. Kept for backward compatibility
|
2016-09-06 14:46:37 -04:00
|
|
|
type notFound interface {
|
|
|
|
error
|
2019-02-09 11:48:18 -05:00
|
|
|
NotFound() bool
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|
|
|
|
|
2017-09-07 12:22:11 -04:00
|
|
|
// IsErrNotFound returns true if the error is a NotFound error, which is returned
|
|
|
|
// by the API when some object is not found.
|
2016-09-06 14:46:37 -04:00
|
|
|
func IsErrNotFound(err error) bool {
|
2022-07-08 18:54:36 -04:00
|
|
|
if errdefs.IsNotFound(err) {
|
2020-04-17 06:01:01 -04:00
|
|
|
return true
|
2018-12-31 12:16:08 -05:00
|
|
|
}
|
2022-07-08 18:54:36 -04:00
|
|
|
var e notFound
|
|
|
|
return errors.As(err, &e)
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|
|
|
|
|
2017-09-08 12:04:34 -04:00
|
|
|
type objectNotFoundError struct {
|
|
|
|
object string
|
|
|
|
id string
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|
|
|
|
|
2018-12-31 12:18:41 -05:00
|
|
|
func (e objectNotFoundError) NotFound() {}
|
2016-09-06 14:46:37 -04:00
|
|
|
|
2017-09-08 12:04:34 -04:00
|
|
|
func (e objectNotFoundError) Error() string {
|
|
|
|
return fmt.Sprintf("Error: No such %s: %s", e.object, e.id)
|
|
|
|
}
|
|
|
|
|
2016-11-02 20:43:32 -04:00
|
|
|
// NewVersionError returns an error if the APIVersion required
|
|
|
|
// if less than the current supported version
|
|
|
|
func (cli *Client) NewVersionError(APIrequired, feature string) error {
|
2017-06-30 01:08:42 -04:00
|
|
|
if cli.version != "" && versions.LessThan(cli.version, APIrequired) {
|
2017-01-16 09:35:27 -05:00
|
|
|
return fmt.Errorf("%q requires API version %s, but the Docker daemon API version is %s", feature, APIrequired, cli.version)
|
2016-11-02 20:43:32 -04:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|