2014-02-24 14:48:14 -05:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2014-05-12 18:26:23 -04:00
|
|
|
"mime"
|
2015-01-23 17:44:30 -05:00
|
|
|
"path/filepath"
|
2015-04-03 20:39:06 -04:00
|
|
|
"sort"
|
2015-10-02 16:39:33 -04:00
|
|
|
"strconv"
|
2014-05-12 18:26:23 -04:00
|
|
|
"strings"
|
|
|
|
|
2015-03-26 18:22:04 -04:00
|
|
|
"github.com/Sirupsen/logrus"
|
2015-04-03 20:39:06 -04:00
|
|
|
"github.com/docker/docker/api/types"
|
2015-04-23 18:55:36 -04:00
|
|
|
"github.com/docker/docker/pkg/system"
|
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
|
|
|
)
|
|
|
|
|
2015-03-23 21:30:09 -04:00
|
|
|
// Common constants for daemon and client.
|
2014-02-24 14:48:14 -05:00
|
|
|
const (
|
2015-07-21 23:32:59 -04:00
|
|
|
// Version of Current REST API
|
2015-07-24 21:10:57 -04:00
|
|
|
Version version.Version = "1.21"
|
2015-06-17 17:57:32 -04:00
|
|
|
|
2015-07-21 23:32:59 -04:00
|
|
|
// MinVersion represents Minimun REST API version supported
|
2015-06-17 17:57:32 -04:00
|
|
|
MinVersion version.Version = "1.12"
|
|
|
|
|
2015-07-21 23:32:59 -04:00
|
|
|
// DefaultDockerfileName is the Default filename with Docker commands, read by docker build
|
2015-06-17 17:57:32 -04:00
|
|
|
DefaultDockerfileName string = "Dockerfile"
|
2014-02-24 14:48:14 -05:00
|
|
|
)
|
|
|
|
|
2015-07-21 23:32:59 -04:00
|
|
|
// byPrivatePort is temporary type used to sort types.Port by PrivatePort
|
|
|
|
type byPrivatePort []types.Port
|
2015-04-03 20:39:06 -04:00
|
|
|
|
2015-07-21 23:32:59 -04:00
|
|
|
func (r byPrivatePort) Len() int { return len(r) }
|
|
|
|
func (r byPrivatePort) Swap(i, j int) { r[i], r[j] = r[j], r[i] }
|
|
|
|
func (r byPrivatePort) Less(i, j int) bool { return r[i].PrivatePort < r[j].PrivatePort }
|
2015-04-03 20:39:06 -04:00
|
|
|
|
2015-07-21 23:32:59 -04:00
|
|
|
// DisplayablePorts returns formatted string representing open ports of container
|
|
|
|
// e.g. "0.0.0.0:80->9090/tcp, 9988/tcp"
|
|
|
|
// it's used by command 'docker ps'
|
2015-04-07 15:34:30 -04:00
|
|
|
func DisplayablePorts(ports []types.Port) string {
|
2015-10-02 16:39:33 -04:00
|
|
|
type portGroup struct {
|
|
|
|
first int
|
|
|
|
last int
|
|
|
|
}
|
|
|
|
groupMap := make(map[string]*portGroup)
|
|
|
|
var result []string
|
|
|
|
var hostMappings []string
|
2015-07-21 23:32:59 -04:00
|
|
|
sort.Sort(byPrivatePort(ports))
|
2015-04-03 20:39:06 -04:00
|
|
|
for _, port := range ports {
|
2015-10-02 16:39:33 -04:00
|
|
|
current := port.PrivatePort
|
|
|
|
portKey := port.Type
|
2015-04-03 20:39:06 -04:00
|
|
|
if port.IP != "" {
|
|
|
|
if port.PublicPort != current {
|
|
|
|
hostMappings = append(hostMappings, fmt.Sprintf("%s:%d->%d/%s", port.IP, port.PublicPort, port.PrivatePort, port.Type))
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
portKey = fmt.Sprintf("%s/%s", port.IP, port.Type)
|
|
|
|
}
|
2015-10-02 16:39:33 -04:00
|
|
|
group := groupMap[portKey]
|
2015-04-03 20:39:06 -04:00
|
|
|
|
2015-10-02 16:39:33 -04:00
|
|
|
if group == nil {
|
|
|
|
groupMap[portKey] = &portGroup{first: current, last: current}
|
2015-01-28 07:56:22 -05:00
|
|
|
continue
|
|
|
|
}
|
2015-10-02 16:39:33 -04:00
|
|
|
if current == (group.last + 1) {
|
|
|
|
group.last = current
|
2015-01-28 07:56:22 -05:00
|
|
|
continue
|
|
|
|
}
|
2015-10-02 16:39:33 -04:00
|
|
|
|
|
|
|
result = append(result, formGroup(portKey, group.first, group.last))
|
|
|
|
groupMap[portKey] = &portGroup{first: current, last: current}
|
2015-01-28 07:56:22 -05:00
|
|
|
}
|
2015-10-02 16:39:33 -04:00
|
|
|
for portKey, g := range groupMap {
|
|
|
|
result = append(result, formGroup(portKey, g.first, g.last))
|
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-07-21 23:32:59 -04:00
|
|
|
func formGroup(key string, start, last int) string {
|
2015-10-02 16:39:33 -04:00
|
|
|
parts := strings.Split(key, "/")
|
|
|
|
groupType := parts[0]
|
|
|
|
var ip string
|
2015-01-28 07:56:22 -05:00
|
|
|
if len(parts) > 1 {
|
|
|
|
ip = parts[0]
|
|
|
|
groupType = parts[1]
|
|
|
|
}
|
2015-10-02 16:39:33 -04:00
|
|
|
group := strconv.Itoa(start)
|
|
|
|
if start != last {
|
|
|
|
group = fmt.Sprintf("%s-%d", group, last)
|
2015-01-28 07:56:22 -05:00
|
|
|
}
|
|
|
|
if ip != "" {
|
|
|
|
group = fmt.Sprintf("%s:%s->%s", ip, group, group)
|
|
|
|
}
|
|
|
|
return fmt.Sprintf("%s/%s", group, groupType)
|
|
|
|
}
|
|
|
|
|
2015-07-21 23:32:59 -04:00
|
|
|
// MatchesContentType validates the content type against the expected one
|
2014-02-24 14:48:14 -05:00
|
|
|
func MatchesContentType(contentType, expectedType string) bool {
|
|
|
|
mimetype, _, err := mime.ParseMediaType(contentType)
|
|
|
|
if err != nil {
|
2015-03-26 18:22:04 -04:00
|
|
|
logrus.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-04-23 18:55:36 -04:00
|
|
|
err := system.MkdirAll(filepath.Dir(trustKeyPath), 0700)
|
|
|
|
if err != nil {
|
2014-11-17 14:23:41 -05:00
|
|
|
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
|
|
|
|
}
|