-
Notifications
You must be signed in to change notification settings - Fork 2
/
http.go
82 lines (69 loc) · 1.94 KB
/
http.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package main
import (
"encoding/json"
"fmt"
"github.com/docker/go-plugins-helpers/sdk"
"github.com/docker/docker/daemon/logger"
"io/ioutil"
"net/http"
"os"
)
type StartLoggingRequest struct {
File string
Info logger.Info
}
type StopLoggingRequest struct {
File string
}
type CapabilitiesResponse struct {
Err string
Cap logger.Capability
}
type ReadLogsRequest struct {
Info logger.Info
Config logger.ReadConfig
}
func handlers(h *sdk.Handler, d *driver) {
h.HandleFunc("/LogDriver.StartLogging", func(w http.ResponseWriter, r *http.Request) {
body, _ := ioutil.ReadAll(r.Body)
var req StartLoggingRequest
fmt.Fprintf(os.Stdout, "Start logging request was called for the container : %s", body)
json.Unmarshal(body, &req)
err := d.StartLogging(req.File, req.Info)
respond(err, w)
})
h.HandleFunc("/LogDriver.StopLogging", func(w http.ResponseWriter, r *http.Request) {
var req StopLoggingRequest
if err := json.NewDecoder(r.Body).Decode(&req); err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
fmt.Fprintln(os.Stdout, "Stop logging request was called for the container")
err := d.StopLogging(req.File)
respond(err, w)
})
h.HandleFunc("/LogDriver.Capabilities", func(w http.ResponseWriter, r *http.Request) {
json.NewEncoder(w).Encode(&CapabilitiesResponse{
Cap: logger.Capability{ReadLogs: false},
})
})
h.HandleFunc("/LogDriver.ReadLogs", func(w http.ResponseWriter, r *http.Request) {
var req ReadLogsRequest
if err := json.NewDecoder(r.Body).Decode(&req); err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
fmt.Fprintln(os.Stdout, "docker logs was called for the container : ", req.Info.ContainerID)
http.Error(w, "Not implemented", http.StatusNotImplemented)
})
}
type response struct {
Err string
}
func respond(err error, w http.ResponseWriter) {
var res response
if err != nil {
res.Err = err.Error()
}
json.NewEncoder(w).Encode(&res)
}