-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathendpoint.go
144 lines (101 loc) · 2.92 KB
/
endpoint.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
package main
import (
"net/http"
// "log"
"encoding/json"
"io"
)
type Sample struct { }
type Args struct { }
type JsonRpcCallback func (map[string] interface{}) interface{}
type JsonRpcHandler struct {
registry map[string] JsonRpcCallback
}
func (j *JsonRpcHandler) Register(name string, fn JsonRpcCallback) {
if j.registry == nil {
j.registry = make(map[string] JsonRpcCallback)
}
j.registry[name] = fn
}
func (j *JsonRpcHandler) ExecuteJsonPayload(request map[string] interface{}) map[string] interface{} {
method := request["method"]
methodStr := method.(string)
requestId := request["id"]
params := request["params"].(map[string] interface{})
methodValue := j.registry[methodStr]
methodResult := methodValue(params)
result := make(map[string] interface{})
result["jsonrpc"] = "2.0"
result["result"] = methodResult
result["id"] = requestId
return result
}
func makeJsonRpcError(code int, msg string) map[string] interface{} {
error := make(map[string] interface{})
error["code"] = code
error["message"] = msg
result := make(map[string] interface{})
result["jsonrpc"] = "2.0"
result["error"] = error
result["id"] = nil
return result
}
type SetStatusCodeFn func (code int)
func (j *JsonRpcHandler) ExecuteJson(request io.Reader, response io.Writer, setStatus SetStatusCodeFn) {
d := json.NewDecoder(request)
var requestMap map[string] interface{}
var responseObj map[string] interface{}
err := d.Decode(&requestMap)
if err == nil {
responseObj = j.ExecuteJsonPayload(requestMap)
} else {
responseObj = makeJsonRpcError(-32700, "Parse error")
}
setStatus(http.StatusOK)
e := json.NewEncoder(response)
e.Encode(responseObj)
}
func (j JsonRpcHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) {
if req.Method != "POST" {
w.Header().Set("Content-Type", "text/plain; charset=utf-8")
w.WriteHeader(http.StatusMethodNotAllowed)
io.WriteString(w, "405 Only POST Allowed\n")
return
}
j.ExecuteJson(req.Body, w, func(status int) {
w.Header().Set("Content-Type", "application/json; charset=utf-8")
w.WriteHeader(status)
})
return
}
func MewJsonRpcHandler (hub ThreadSafeServiceHub, timeline *Timeline) *JsonRpcHandler{
r := new(JsonRpcHandler)
r.Register("heartbeat", func(params map[string] interface{}) interface{} {
name := params["name"].(string)
err := hub.Heartbeat(name)
if err == nil {
return true
}
return makeJsonRpcError(100, err.String())
})
r.Register("log", func(params map[string] interface{}) interface{} {
name := params["name"].(string)
summary := params["summary"].(string)
var severity int
s := params["severity"]
if _, ok := s.(float64) ; ok {
severity = int(s.(float64))
} else {
severity = s.(int)
}
// else {
// severity = strconv.Atoi(s.(string))
// }
err := hub.Log(name, summary, severity, timeline.Now())
if err == nil {
return true
}
return makeJsonRpcError(100, err.String())
})
return r
}