moby--moby/api.go

619 lines
17 KiB
Go
Raw Normal View History

2013-04-11 02:48:21 +00:00
package docker
import (
"encoding/json"
"fmt"
2013-05-06 11:34:31 +00:00
"github.com/dotcloud/docker/auth"
2013-04-11 02:48:21 +00:00
"github.com/gorilla/mux"
2013-05-07 17:23:50 +00:00
"github.com/shin-/cookiejar"
"io"
2013-04-18 16:56:22 +00:00
"log"
2013-04-11 02:48:21 +00:00
"net/http"
2013-04-22 16:17:47 +00:00
"strconv"
"strings"
2013-04-11 02:48:21 +00:00
)
func hijackServer(w http.ResponseWriter) (io.ReadCloser, io.Writer, error) {
conn, _, err := w.(http.Hijacker).Hijack()
if err != nil {
return nil, nil, err
}
// Flush the options to make sure the client sets the raw mode
conn.Write([]byte{})
return conn, conn, nil
}
2013-05-08 16:52:01 +00:00
//If we don't do this, POST method without Content-type (even with empty body) will fail
func parseForm(r *http.Request) error {
if err := r.ParseForm(); err != nil && !strings.HasPrefix(err.Error(), "mime:") {
return err
}
return nil
}
func httpError(w http.ResponseWriter, err error) {
if strings.HasPrefix(err.Error(), "No such") {
http.Error(w, err.Error(), http.StatusNotFound)
} else {
http.Error(w, err.Error(), http.StatusInternalServerError)
}
}
func getAuth(srv *Server, w http.ResponseWriter, r *http.Request, vars map[string]string) ([]byte, error) {
2013-05-10 03:13:52 +00:00
config := &auth.AuthConfig{
Username: srv.runtime.authConfig.Username,
Email: srv.runtime.authConfig.Email,
}
b, err := json.Marshal(config)
if err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
2013-05-08 00:27:09 +00:00
return b, nil
}
func postAuth(srv *Server, w http.ResponseWriter, r *http.Request, vars map[string]string) ([]byte, error) {
2013-05-10 03:13:52 +00:00
config := &auth.AuthConfig{}
if err := json.NewDecoder(r.Body).Decode(config); err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
2013-04-11 02:48:21 +00:00
if config.Username == srv.runtime.authConfig.Username {
config.Password = srv.runtime.authConfig.Password
}
newAuthConfig := auth.NewAuthConfig(config.Username, config.Password, config.Email, srv.runtime.root)
status, err := auth.Login(newAuthConfig)
if err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
} else {
srv.runtime.graph.getHttpClient().Jar = cookiejar.NewCookieJar()
srv.runtime.authConfig = newAuthConfig
}
if status != "" {
2013-05-10 03:13:52 +00:00
b, err := json.Marshal(&ApiAuth{Status: status})
2013-05-06 11:34:31 +00:00
if err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
2013-05-06 11:34:31 +00:00
}
2013-05-08 21:57:14 +00:00
return b, nil
}
2013-05-09 19:42:29 +00:00
w.WriteHeader(http.StatusNoContent)
2013-05-08 00:27:09 +00:00
return nil, nil
}
2013-05-06 11:34:31 +00:00
func getVersion(srv *Server, w http.ResponseWriter, r *http.Request, vars map[string]string) ([]byte, error) {
m := srv.DockerVersion()
b, err := json.Marshal(m)
if err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
2013-05-08 00:27:09 +00:00
return b, nil
}
2013-05-06 11:34:31 +00:00
func postContainersKill(srv *Server, w http.ResponseWriter, r *http.Request, vars map[string]string) ([]byte, error) {
if vars == nil {
return nil, fmt.Errorf("Missing parameter")
}
name := vars["name"]
if err := srv.ContainerKill(name); err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
2013-05-09 19:42:29 +00:00
w.WriteHeader(http.StatusNoContent)
2013-05-08 00:27:09 +00:00
return nil, nil
}
2013-05-06 11:34:31 +00:00
func getContainersExport(srv *Server, w http.ResponseWriter, r *http.Request, vars map[string]string) ([]byte, error) {
if vars == nil {
return nil, fmt.Errorf("Missing parameter")
}
name := vars["name"]
2013-04-11 02:48:21 +00:00
2013-05-09 21:28:03 +00:00
if err := srv.ContainerExport(name, w); err != nil {
Debugf("%s", err.Error())
//return nil, err
}
2013-05-08 00:27:09 +00:00
return nil, nil
}
2013-05-10 03:13:52 +00:00
func getImagesJson(srv *Server, w http.ResponseWriter, r *http.Request, vars map[string]string) ([]byte, error) {
2013-05-08 16:52:01 +00:00
if err := parseForm(r); err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
2013-04-24 14:32:51 +00:00
2013-05-09 21:52:12 +00:00
all := r.Form.Get("all") == "1"
filter := r.Form.Get("filter")
only_ids := r.Form.Get("only_ids") == "1"
2013-04-24 14:32:51 +00:00
2013-05-09 21:52:12 +00:00
outs, err := srv.Images(all, only_ids, filter)
if err != nil {
return nil, err
}
2013-05-09 21:52:12 +00:00
b, err := json.Marshal(outs)
if err != nil {
return nil, err
}
return b, nil
}
func getImagesViz(srv *Server, w http.ResponseWriter, r *http.Request, vars map[string]string) ([]byte, error) {
2013-05-09 21:52:12 +00:00
if err := srv.ImagesViz(w); err != nil {
return nil, err
}
return nil, nil
}
2013-05-07 17:23:50 +00:00
func getInfo(srv *Server, w http.ResponseWriter, r *http.Request, vars map[string]string) ([]byte, error) {
out := srv.DockerInfo()
b, err := json.Marshal(out)
if err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
2013-05-08 00:27:09 +00:00
return b, nil
}
2013-04-18 16:56:22 +00:00
func getImagesHistory(srv *Server, w http.ResponseWriter, r *http.Request, vars map[string]string) ([]byte, error) {
if vars == nil {
return nil, fmt.Errorf("Missing parameter")
}
name := vars["name"]
outs, err := srv.ImageHistory(name)
if err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
b, err := json.Marshal(outs)
if err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
2013-05-08 00:27:09 +00:00
return b, nil
}
func getContainersChanges(srv *Server, w http.ResponseWriter, r *http.Request, vars map[string]string) ([]byte, error) {
if vars == nil {
return nil, fmt.Errorf("Missing parameter")
}
name := vars["name"]
changesStr, err := srv.ContainerChanges(name)
if err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
b, err := json.Marshal(changesStr)
if err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
2013-05-08 00:27:09 +00:00
return b, nil
}
func getContainersPs(srv *Server, w http.ResponseWriter, r *http.Request, vars map[string]string) ([]byte, error) {
2013-05-08 16:52:01 +00:00
if err := parseForm(r); err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
2013-05-07 23:47:43 +00:00
all := r.Form.Get("all") == "1"
trunc_cmd := r.Form.Get("trunc_cmd") != "0"
only_ids := r.Form.Get("only_ids") == "1"
2013-05-08 16:28:11 +00:00
since := r.Form.Get("since")
before := r.Form.Get("before")
n, err := strconv.Atoi(r.Form.Get("limit"))
if err != nil {
n = -1
}
2013-05-08 16:28:11 +00:00
outs := srv.Containers(all, trunc_cmd, only_ids, n, since, before)
b, err := json.Marshal(outs)
if err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
2013-05-08 00:27:09 +00:00
return b, nil
}
func postImagesTag(srv *Server, w http.ResponseWriter, r *http.Request, vars map[string]string) ([]byte, error) {
2013-05-08 16:52:01 +00:00
if err := parseForm(r); err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
repo := r.Form.Get("repo")
tag := r.Form.Get("tag")
if vars == nil {
return nil, fmt.Errorf("Missing parameter")
}
name := vars["name"]
2013-05-07 23:47:43 +00:00
force := r.Form.Get("force") == "1"
if err := srv.ContainerTag(name, repo, tag, force); err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
w.WriteHeader(http.StatusCreated)
2013-05-08 00:27:09 +00:00
return nil, nil
}
2013-04-24 14:06:03 +00:00
func postCommit(srv *Server, w http.ResponseWriter, r *http.Request, vars map[string]string) ([]byte, error) {
2013-05-08 16:52:01 +00:00
if err := parseForm(r); err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
var config Config
if err := json.NewDecoder(r.Body).Decode(&config); err != nil {
2013-05-08 17:21:52 +00:00
Debugf("%s", err.Error())
}
repo := r.Form.Get("repo")
tag := r.Form.Get("tag")
container := r.Form.Get("container")
author := r.Form.Get("author")
comment := r.Form.Get("comment")
id, err := srv.ContainerCommit(container, repo, tag, author, comment, &config)
if err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
b, err := json.Marshal(ApiId{id})
if err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
2013-05-09 19:42:29 +00:00
w.WriteHeader(http.StatusCreated)
2013-05-08 00:27:09 +00:00
return b, nil
}
2013-04-24 14:06:03 +00:00
// Creates an image from Pull or from Import
func postImagesCreate(srv *Server, w http.ResponseWriter, r *http.Request, vars map[string]string) ([]byte, error) {
2013-05-08 16:52:01 +00:00
if err := parseForm(r); err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
2013-04-22 21:37:22 +00:00
src := r.Form.Get("fromSrc")
image := r.Form.Get("fromImage")
repo := r.Form.Get("repo")
tag := r.Form.Get("tag")
in, out, err := hijackServer(w)
if err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
2013-05-08 06:32:17 +00:00
defer in.Close()
fmt.Fprintf(out, "HTTP/1.1 200 OK\r\nContent-Type: application/vnd.docker.raw-stream\r\n\r\n")
if image != "" { //pull
registry := r.Form.Get("registry")
if err := srv.ImagePull(image, tag, registry, out); err != nil {
fmt.Fprintf(out, "Error: %s\n", err)
}
} else { //import
if err := srv.ImageImport(src, repo, tag, in, out); err != nil {
fmt.Fprintf(out, "Error: %s\n", err)
}
}
2013-05-08 00:27:09 +00:00
return nil, nil
}
func getImagesSearch(srv *Server, w http.ResponseWriter, r *http.Request, vars map[string]string) ([]byte, error) {
2013-05-08 16:52:01 +00:00
if err := parseForm(r); err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
term := r.Form.Get("term")
outs, err := srv.ImagesSearch(term)
if err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
b, err := json.Marshal(outs)
if err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
2013-05-08 00:27:09 +00:00
return b, nil
}
func postImagesInsert(srv *Server, w http.ResponseWriter, r *http.Request, vars map[string]string) ([]byte, error) {
2013-05-08 16:52:01 +00:00
if err := parseForm(r); err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
url := r.Form.Get("url")
path := r.Form.Get("path")
if vars == nil {
return nil, fmt.Errorf("Missing parameter")
}
name := vars["name"]
2013-05-07 18:37:35 +00:00
in, out, err := hijackServer(w)
if err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
2013-05-08 06:32:17 +00:00
defer in.Close()
fmt.Fprintf(out, "HTTP/1.1 200 OK\r\nContent-Type: application/vnd.docker.raw-stream\r\n\r\n")
if err := srv.ImageInsert(name, url, path, out); err != nil {
fmt.Fprintf(out, "Error: %s\n", err)
}
2013-05-08 00:27:09 +00:00
return nil, nil
}
2013-05-07 18:37:35 +00:00
func postImagesPush(srv *Server, w http.ResponseWriter, r *http.Request, vars map[string]string) ([]byte, error) {
2013-05-08 16:52:01 +00:00
if err := parseForm(r); err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
2013-05-07 17:23:50 +00:00
registry := r.Form.Get("registry")
2013-05-07 17:23:50 +00:00
if vars == nil {
return nil, fmt.Errorf("Missing parameter")
}
name := vars["name"]
2013-05-07 17:23:50 +00:00
in, out, err := hijackServer(w)
if err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
2013-05-08 06:32:17 +00:00
defer in.Close()
fmt.Fprintf(out, "HTTP/1.1 200 OK\r\nContent-Type: application/vnd.docker.raw-stream\r\n\r\n")
if err := srv.ImagePush(name, registry, out); err != nil {
fmt.Fprintln(out, "Error: %s\n", err)
}
2013-05-08 00:27:09 +00:00
return nil, nil
}
2013-05-07 17:23:50 +00:00
func postBuild(srv *Server, w http.ResponseWriter, r *http.Request, vars map[string]string) ([]byte, error) {
in, out, err := hijackServer(w)
if err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
2013-05-08 06:32:17 +00:00
defer in.Close()
fmt.Fprintf(out, "HTTP/1.1 200 OK\r\nContent-Type: application/vnd.docker.raw-stream\r\n\r\n")
if err := srv.ImageCreateFromFile(in, out); err != nil {
fmt.Fprintln(out, "Error: %s\n", err)
}
2013-05-08 00:27:09 +00:00
return nil, nil
}
2013-05-07 17:23:50 +00:00
func postContainersCreate(srv *Server, w http.ResponseWriter, r *http.Request, vars map[string]string) ([]byte, error) {
config := &Config{}
if err := json.NewDecoder(r.Body).Decode(config); err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
id, err := srv.ContainerCreate(config)
if err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
out := &ApiRun{
Id: id,
}
if config.Memory > 0 && !srv.runtime.capabilities.MemoryLimit {
log.Println("WARNING: Your kernel does not support memory limit capabilities. Limitation discarded.")
out.Warnings = append(out.Warnings, "Your kernel does not support memory limit capabilities. Limitation discarded.")
}
if config.Memory > 0 && !srv.runtime.capabilities.SwapLimit {
log.Println("WARNING: Your kernel does not support swap limit capabilities. Limitation discarded.")
out.Warnings = append(out.Warnings, "Your kernel does not support memory swap capabilities. Limitation discarded.")
}
b, err := json.Marshal(out)
if err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
2013-05-09 19:42:29 +00:00
w.WriteHeader(http.StatusCreated)
2013-05-08 00:27:09 +00:00
return b, nil
}
2013-05-07 17:23:50 +00:00
func postContainersRestart(srv *Server, w http.ResponseWriter, r *http.Request, vars map[string]string) ([]byte, error) {
2013-05-08 16:52:01 +00:00
if err := parseForm(r); err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
t, err := strconv.Atoi(r.Form.Get("t"))
if err != nil || t < 0 {
t = 10
}
if vars == nil {
return nil, fmt.Errorf("Missing parameter")
}
name := vars["name"]
if err := srv.ContainerRestart(name, t); err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
2013-05-09 19:42:29 +00:00
w.WriteHeader(http.StatusNoContent)
2013-05-08 00:27:09 +00:00
return nil, nil
}
2013-05-06 11:34:31 +00:00
func deleteContainers(srv *Server, w http.ResponseWriter, r *http.Request, vars map[string]string) ([]byte, error) {
2013-05-08 16:52:01 +00:00
if err := parseForm(r); err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
if vars == nil {
return nil, fmt.Errorf("Missing parameter")
}
name := vars["name"]
2013-05-10 03:19:21 +00:00
removeVolume := r.Form.Get("v") == "1"
2013-05-07 23:47:43 +00:00
2013-05-10 02:19:55 +00:00
if err := srv.ContainerDestroy(name, removeVolume); err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
2013-05-09 19:42:29 +00:00
w.WriteHeader(http.StatusNoContent)
2013-05-08 00:27:09 +00:00
return nil, nil
}
2013-04-22 21:37:22 +00:00
func deleteImages(srv *Server, w http.ResponseWriter, r *http.Request, vars map[string]string) ([]byte, error) {
if vars == nil {
return nil, fmt.Errorf("Missing parameter")
}
name := vars["name"]
if err := srv.ImageDelete(name); err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
2013-05-09 19:42:29 +00:00
w.WriteHeader(http.StatusNoContent)
2013-05-08 00:27:09 +00:00
return nil, nil
}
func postContainersStart(srv *Server, w http.ResponseWriter, r *http.Request, vars map[string]string) ([]byte, error) {
if vars == nil {
return nil, fmt.Errorf("Missing parameter")
}
name := vars["name"]
if err := srv.ContainerStart(name); err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
2013-05-09 19:42:29 +00:00
w.WriteHeader(http.StatusNoContent)
2013-05-08 00:27:09 +00:00
return nil, nil
}
func postContainersStop(srv *Server, w http.ResponseWriter, r *http.Request, vars map[string]string) ([]byte, error) {
2013-05-08 16:52:01 +00:00
if err := parseForm(r); err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
t, err := strconv.Atoi(r.Form.Get("t"))
if err != nil || t < 0 {
t = 10
}
2013-05-10 02:19:24 +00:00
if vars == nil {
return nil, fmt.Errorf("Missing parameter")
}
name := vars["name"]
if err := srv.ContainerStop(name, t); err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
2013-05-09 19:42:29 +00:00
w.WriteHeader(http.StatusNoContent)
2013-05-08 00:27:09 +00:00
return nil, nil
}
func postContainersWait(srv *Server, w http.ResponseWriter, r *http.Request, vars map[string]string) ([]byte, error) {
if vars == nil {
return nil, fmt.Errorf("Missing parameter")
}
name := vars["name"]
status, err := srv.ContainerWait(name)
if err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
2013-05-10 03:13:52 +00:00
b, err := json.Marshal(&ApiWait{StatusCode: status})
if err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
2013-05-08 00:27:09 +00:00
return b, nil
}
func postContainersAttach(srv *Server, w http.ResponseWriter, r *http.Request, vars map[string]string) ([]byte, error) {
2013-05-08 16:52:01 +00:00
if err := parseForm(r); err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
2013-05-07 23:47:43 +00:00
logs := r.Form.Get("logs") == "1"
stream := r.Form.Get("stream") == "1"
stdin := r.Form.Get("stdin") == "1"
stdout := r.Form.Get("stdout") == "1"
stderr := r.Form.Get("stderr") == "1"
if vars == nil {
return nil, fmt.Errorf("Missing parameter")
}
name := vars["name"]
in, out, err := hijackServer(w)
if err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
2013-05-08 06:32:17 +00:00
defer in.Close()
2013-04-11 02:48:21 +00:00
fmt.Fprintf(out, "HTTP/1.1 200 OK\r\nContent-Type: application/vnd.docker.raw-stream\r\n\r\n")
if err := srv.ContainerAttach(name, logs, stream, stdin, stdout, stderr, in, out); err != nil {
fmt.Fprintf(out, "Error: %s\n", err)
}
2013-05-08 00:27:09 +00:00
return nil, nil
}
2013-05-02 03:07:06 +00:00
func getContainersByName(srv *Server, w http.ResponseWriter, r *http.Request, vars map[string]string) ([]byte, error) {
if vars == nil {
return nil, fmt.Errorf("Missing parameter")
}
name := vars["name"]
2013-05-02 03:07:06 +00:00
container, err := srv.ContainerInspect(name)
if err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
b, err := json.Marshal(container)
if err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
2013-05-08 00:27:09 +00:00
return b, nil
}
2013-05-02 03:07:06 +00:00
func getImagesByName(srv *Server, w http.ResponseWriter, r *http.Request, vars map[string]string) ([]byte, error) {
if vars == nil {
return nil, fmt.Errorf("Missing parameter")
}
name := vars["name"]
image, err := srv.ImageInspect(name)
if err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
b, err := json.Marshal(image)
if err != nil {
2013-05-08 00:27:09 +00:00
return nil, err
}
2013-05-08 00:27:09 +00:00
return b, nil
}
2013-05-09 21:52:12 +00:00
func ListenAndServe(addr string, srv *Server, logging bool) error {
r := mux.NewRouter()
log.Printf("Listening for HTTP on %s\n", addr)
m := map[string]map[string]func(*Server, http.ResponseWriter, *http.Request, map[string]string) ([]byte, error){
"GET": {
"/auth": getAuth,
"/version": getVersion,
"/info": getInfo,
2013-05-10 03:13:52 +00:00
"/images/json": getImagesJson,
2013-05-09 21:52:12 +00:00
"/images/viz": getImagesViz,
"/images/search": getImagesSearch,
"/images/{name:.*}/history": getImagesHistory,
"/images/{name:.*}/json": getImagesByName,
"/containers/ps": getContainersPs,
"/containers/{name:.*}/export": getContainersExport,
"/containers/{name:.*}/changes": getContainersChanges,
"/containers/{name:.*}/json": getContainersByName,
},
"POST": {
"/auth": postAuth,
"/commit": postCommit,
"/build": postBuild,
"/images/create": postImagesCreate,
"/images/{name:*.}/insert": postImagesInsert,
"/images/{name:*.}/push": postImagesPush,
"/images/{name:.*}/tag": postImagesTag,
"/containers/create": postContainersCreate,
"/containers/{name:.*}/kill": postContainersKill,
"/containers/{name:.*}/restart": postContainersRestart,
"/containers/{name:.*}/start": postContainersStart,
"/containers/{name:.*}/stop": postContainersStop,
"/containers/{name:.*}/wait": postContainersWait,
"/containers/{name:.*}/attach": postContainersAttach,
},
"DELETE": {
"/containers/{name:.*}": deleteContainers,
"/images/{name:.*}": deleteImages,
},
}
for method, routes := range m {
for route, fct := range routes {
Debugf("Registering %s, %s", method, route)
// NOTE: scope issue, make sure the variables are local and won't be changed
localRoute := route
localMethod := method
localFct := fct
r.Path(localRoute).Methods(localMethod).HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
Debugf("Calling %s %s", localMethod, localRoute)
2013-05-09 21:52:12 +00:00
if logging {
log.Println(r.Method, r.RequestURI)
}
if strings.Contains(r.Header.Get("User-Agent"), "Docker-Client/") {
userAgent := strings.Split(r.Header.Get("User-Agent"), "/")
if len(userAgent) == 2 && userAgent[1] != VERSION {
Debugf("Warning: client and server don't have the same version (client: %s, server: %s)", userAgent[1], VERSION)
}
}
json, err := localFct(srv, w, r, mux.Vars(r))
2013-05-08 00:27:09 +00:00
if err != nil {
httpError(w, err)
}
if json != nil {
w.Header().Set("Content-Type", "application/json")
w.Write(json)
}
})
}
}
return http.ListenAndServe(addr, r)
2013-04-11 02:48:21 +00:00
}