-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttp.go
65 lines (53 loc) · 1.34 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
package main
import (
"encoding/json"
"net/http"
"github.com/docker/docker/daemon/logger"
"github.com/docker/go-plugins-helpers/sdk"
)
type startLoggingRequest struct {
File string
Info logger.Info
}
type stopLoggingRequest struct {
File string
}
type capabilitiesResponse struct {
Err string
Cap logger.Capability
}
type response struct {
Err string
}
func Handlers(h *sdk.Handler, d *Driver) {
h.HandleFunc("/LogDriver.StartLogging", func(w http.ResponseWriter, r *http.Request) {
var req startLoggingRequest
if err := json.NewDecoder(r.Body).Decode(&req); err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
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
}
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},
})
})
}
func respond(err error, w http.ResponseWriter) {
var res response
if err != nil {
res.Err = err.Error()
}
json.NewEncoder(w).Encode(&res)
}