2014-02-24 14:48:14 -05:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"github.com/dotcloud/docker/engine"
|
2014-04-01 18:46:52 -04:00
|
|
|
"github.com/dotcloud/docker/pkg/version"
|
2014-02-24 14:48:14 -05:00
|
|
|
"github.com/dotcloud/docker/utils"
|
|
|
|
"mime"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2014-03-23 19:14:40 -04:00
|
|
|
APIVERSION version.Version = "1.11"
|
2014-04-01 18:46:52 -04:00
|
|
|
DEFAULTHTTPHOST = "127.0.0.1"
|
|
|
|
DEFAULTUNIXSOCKET = "/var/run/docker.sock"
|
2014-02-24 14:48:14 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func ValidateHost(val string) (string, error) {
|
|
|
|
host, err := utils.ParseHost(DEFAULTHTTPHOST, DEFAULTUNIXSOCKET, val)
|
|
|
|
if err != nil {
|
|
|
|
return val, err
|
|
|
|
}
|
|
|
|
return host, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
//TODO remove, used on < 1.5 in getContainersJSON
|
2014-03-28 18:59:29 -04:00
|
|
|
func DisplayablePorts(ports *engine.Table) string {
|
2014-02-24 14:48:14 -05:00
|
|
|
result := []string{}
|
2014-03-16 12:28:13 -04:00
|
|
|
ports.SetKey("PublicPort")
|
|
|
|
ports.Sort()
|
2014-02-24 14:48:14 -05:00
|
|
|
for _, port := range ports.Data {
|
|
|
|
if port.Get("IP") == "" {
|
|
|
|
result = append(result, fmt.Sprintf("%d/%s", port.GetInt("PublicPort"), port.Get("Type")))
|
|
|
|
} else {
|
|
|
|
result = append(result, fmt.Sprintf("%s:%d->%d/%s", port.Get("IP"), port.GetInt("PublicPort"), port.GetInt("PrivatePort"), port.Get("Type")))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return strings.Join(result, ", ")
|
|
|
|
}
|
|
|
|
|
|
|
|
func MatchesContentType(contentType, expectedType string) bool {
|
|
|
|
mimetype, _, err := mime.ParseMediaType(contentType)
|
|
|
|
if err != nil {
|
|
|
|
utils.Errorf("Error parsing media type: %s error: %s", contentType, err.Error())
|
|
|
|
}
|
|
|
|
return err == nil && mimetype == expectedType
|
|
|
|
}
|