2014-02-24 14:48:14 -05:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2014-05-12 18:26:23 -04:00
|
|
|
"mime"
|
2014-11-17 14:23:41 -05:00
|
|
|
"os"
|
2015-01-23 17:44:30 -05:00
|
|
|
"path/filepath"
|
2014-05-12 18:26:23 -04:00
|
|
|
"strings"
|
|
|
|
|
2014-10-24 13:12:35 -04:00
|
|
|
log "github.com/Sirupsen/logrus"
|
2014-07-24 18:19:50 -04:00
|
|
|
"github.com/docker/docker/engine"
|
2014-07-28 20:23:38 -04:00
|
|
|
"github.com/docker/docker/pkg/parsers"
|
2014-07-24 18:19:50 -04:00
|
|
|
"github.com/docker/docker/pkg/version"
|
2014-12-03 20:36:14 -05:00
|
|
|
"github.com/docker/libtrust"
|
2014-02-24 14:48:14 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2015-02-10 13:48:54 -05:00
|
|
|
APIVERSION version.Version = "1.18"
|
2014-09-11 10:42:17 -04:00
|
|
|
DEFAULTHTTPHOST = "127.0.0.1"
|
|
|
|
DEFAULTUNIXSOCKET = "/var/run/docker.sock"
|
|
|
|
DefaultDockerfileName string = "Dockerfile"
|
2014-02-24 14:48:14 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func ValidateHost(val string) (string, error) {
|
2014-07-28 20:23:38 -04:00
|
|
|
host, err := parsers.ParseHost(DEFAULTHTTPHOST, DEFAULTUNIXSOCKET, val)
|
2014-02-24 14:48:14 -05:00
|
|
|
if err != nil {
|
|
|
|
return val, err
|
|
|
|
}
|
|
|
|
return host, nil
|
|
|
|
}
|
|
|
|
|
2015-01-28 07:56:22 -05:00
|
|
|
// TODO remove, used on < 1.5 in getContainersJSON
|
2014-03-28 18:59:29 -04:00
|
|
|
func DisplayablePorts(ports *engine.Table) string {
|
2015-01-28 07:56:22 -05:00
|
|
|
var (
|
|
|
|
result = []string{}
|
|
|
|
hostMappings = []string{}
|
2015-02-16 14:08:32 -05:00
|
|
|
firstInGroupMap map[string]int
|
2015-01-28 07:56:22 -05:00
|
|
|
lastInGroupMap map[string]int
|
|
|
|
)
|
2015-02-16 14:08:32 -05:00
|
|
|
firstInGroupMap = make(map[string]int)
|
2015-01-28 07:56:22 -05:00
|
|
|
lastInGroupMap = make(map[string]int)
|
|
|
|
ports.SetKey("PrivatePort")
|
2014-03-16 12:28:13 -04:00
|
|
|
ports.Sort()
|
2014-02-24 14:48:14 -05:00
|
|
|
for _, port := range ports.Data {
|
2015-01-28 07:56:22 -05:00
|
|
|
var (
|
|
|
|
current = port.GetInt("PrivatePort")
|
|
|
|
portKey = port.Get("Type")
|
2015-02-16 14:08:32 -05:00
|
|
|
firstInGroup int
|
2015-01-28 07:56:22 -05:00
|
|
|
lastInGroup int
|
|
|
|
)
|
|
|
|
if port.Get("IP") != "" {
|
|
|
|
if port.GetInt("PublicPort") != current {
|
|
|
|
hostMappings = append(hostMappings, fmt.Sprintf("%s:%d->%d/%s", port.Get("IP"), port.GetInt("PublicPort"), port.GetInt("PrivatePort"), port.Get("Type")))
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
portKey = fmt.Sprintf("%s/%s", port.Get("IP"), port.Get("Type"))
|
2014-02-24 14:48:14 -05:00
|
|
|
}
|
2015-02-16 14:08:32 -05:00
|
|
|
firstInGroup = firstInGroupMap[portKey]
|
2015-01-28 07:56:22 -05:00
|
|
|
lastInGroup = lastInGroupMap[portKey]
|
|
|
|
|
2015-02-16 14:08:32 -05:00
|
|
|
if firstInGroup == 0 {
|
|
|
|
firstInGroupMap[portKey] = current
|
2015-01-28 07:56:22 -05:00
|
|
|
lastInGroupMap[portKey] = current
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if current == (lastInGroup + 1) {
|
|
|
|
lastInGroupMap[portKey] = current
|
|
|
|
continue
|
|
|
|
}
|
2015-02-16 14:08:32 -05:00
|
|
|
result = append(result, FormGroup(portKey, firstInGroup, lastInGroup))
|
|
|
|
firstInGroupMap[portKey] = current
|
2015-01-28 07:56:22 -05:00
|
|
|
lastInGroupMap[portKey] = current
|
|
|
|
}
|
2015-02-16 14:08:32 -05:00
|
|
|
for portKey, firstInGroup := range firstInGroupMap {
|
|
|
|
result = append(result, FormGroup(portKey, firstInGroup, lastInGroupMap[portKey]))
|
2014-02-24 14:48:14 -05:00
|
|
|
}
|
2015-01-28 07:56:22 -05:00
|
|
|
result = append(result, hostMappings...)
|
2014-02-24 14:48:14 -05:00
|
|
|
return strings.Join(result, ", ")
|
|
|
|
}
|
|
|
|
|
2015-01-28 07:56:22 -05:00
|
|
|
func FormGroup(key string, start, last int) string {
|
|
|
|
var (
|
|
|
|
group string
|
|
|
|
parts = strings.Split(key, "/")
|
|
|
|
groupType = parts[0]
|
|
|
|
ip = ""
|
|
|
|
)
|
|
|
|
if len(parts) > 1 {
|
|
|
|
ip = parts[0]
|
|
|
|
groupType = parts[1]
|
|
|
|
}
|
|
|
|
if start == last {
|
|
|
|
group = fmt.Sprintf("%d", start)
|
|
|
|
} else {
|
|
|
|
group = fmt.Sprintf("%d-%d", start, last)
|
|
|
|
}
|
|
|
|
if ip != "" {
|
|
|
|
group = fmt.Sprintf("%s:%s->%s", ip, group, group)
|
|
|
|
}
|
|
|
|
return fmt.Sprintf("%s/%s", group, groupType)
|
|
|
|
}
|
|
|
|
|
2014-02-24 14:48:14 -05:00
|
|
|
func MatchesContentType(contentType, expectedType string) bool {
|
|
|
|
mimetype, _, err := mime.ParseMediaType(contentType)
|
|
|
|
if err != nil {
|
2015-03-16 04:35:15 -04:00
|
|
|
log.Errorf("Error parsing media type: %s error: %v", contentType, err)
|
2014-02-24 14:48:14 -05:00
|
|
|
}
|
|
|
|
return err == nil && mimetype == expectedType
|
|
|
|
}
|
2014-11-17 14:23:41 -05:00
|
|
|
|
|
|
|
// LoadOrCreateTrustKey attempts to load the libtrust key at the given path,
|
|
|
|
// otherwise generates a new one
|
|
|
|
func LoadOrCreateTrustKey(trustKeyPath string) (libtrust.PrivateKey, error) {
|
2015-01-23 17:44:30 -05:00
|
|
|
err := os.MkdirAll(filepath.Dir(trustKeyPath), 0700)
|
2014-11-17 14:23:41 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
trustKey, err := libtrust.LoadKeyFile(trustKeyPath)
|
|
|
|
if err == libtrust.ErrKeyFileDoesNotExist {
|
|
|
|
trustKey, err = libtrust.GenerateECP256PrivateKey()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("Error generating key: %s", err)
|
|
|
|
}
|
|
|
|
if err := libtrust.SaveKey(trustKeyPath, trustKey); err != nil {
|
|
|
|
return nil, fmt.Errorf("Error saving key file: %s", err)
|
|
|
|
}
|
|
|
|
} else if err != nil {
|
2015-01-26 15:58:45 -05:00
|
|
|
return nil, fmt.Errorf("Error loading key file %s: %s", trustKeyPath, err)
|
2014-11-17 14:23:41 -05:00
|
|
|
}
|
|
|
|
return trustKey, nil
|
|
|
|
}
|