-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsonrpc.go
248 lines (190 loc) · 5.34 KB
/
jsonrpc.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
package jsonrpc_server
import (
"encoding/json"
"fmt"
"log"
"net/http"
"os"
"reflect"
"strings"
"github.com/DizoftTeam/jsonrpc_server/utils"
"github.com/mitchellh/mapstructure"
)
const (
rpcVersion = "2.0" // Supported protocol version
notifyResponse = "JsonRpc_Notify_Response"
)
var (
methods = map[string]Method{} // Array of methods
httpRequest *http.Request // Current request
jlog = log.New(os.Stderr, "[JSONRpc]", log.LstdFlags)
)
// RPCRequest RPC struct
type RPCRequest struct {
Version string `mstruct:"jsonrpc"` // Protocol version
Method string `mstruct:"method"` // Method name
Params any `mstruct:"params"` // Method params
ID int `mstruct:"id"` // Request id
}
// RPCError Error struct
type RPCError struct {
Code int // Error code
Message string // Error message
}
// Method Alias on func
type Method func(params any) (any, *RPCError)
// RPCMethod Interface for struct style method
type RPCMethod interface {
Handler(params any) (any, *RPCError)
}
// Session contains request info
type Session struct {
Request *http.Request // Current request
}
// ----------- STRUCT METHODS -----------
// Register Add method based on struct style
func Register(name string, handler RPCMethod) {
RegisterFunc(name, handler.Handler)
}
// RegisterFunc Add method based on lambda func
func RegisterFunc(name string, method Method) {
methods[name] = method
jlog.Printf("Register method: %v\n", name)
}
// NewSession create new request session
func NewSession() *Session {
return &Session{
Request: httpRequest,
}
}
// --------------- PUBLIC ---------------
// CustomHandler used for custom incoming messages point (like WS)
func CustomHandler(rawJsonData []byte) string {
var request any
var response string
if err := json.Unmarshal(rawJsonData, &request); err != nil {
return `{"jsonrpc": "2.0", "error": {"code": -42700, "message": "Common Error"}}`
}
reqType := reflect.ValueOf(request).Kind()
if reqType == reflect.Slice {
var responses []string
for _, item := range request.([]any) {
r := processRequest(item.(map[string]any))
if r != notifyResponse {
responses = append(responses, r)
}
}
var rr []string
for _, r := range responses {
if r != "" && r != notifyResponse {
rr = append(rr, r)
}
}
response = fmt.Sprintf("[%s]", strings.Join(rr, ","))
} else {
response = processRequest(request.(map[string]any))
if response == notifyResponse {
response = ""
}
}
return response
}
// HttpHandler Main point function of http handler
func HttpHandler(w http.ResponseWriter, r *http.Request) {
defer r.Body.Close()
w.Header().Add("Content-Type", "application/json")
// TIP: CORS
w.Header().Add("Access-Control-Allow-Origin", "*")
w.Header().Add("Access-Control-Allow-Headers", "*")
w.Header().Add("Access-Control-Allow-Credentials", "true")
w.Header().Add("Access-Control-Allow-Methods", "POST")
httpRequest = r
var request any
var response any
if err := json.NewDecoder(r.Body).Decode(&request); err != nil {
_, _ = fmt.Fprintf(w, `{"jsonrpc": "2.0", "error": {"code": -42700, "message": "Common Error"}}`)
return
}
reqType := reflect.ValueOf(request).Kind()
if reqType == reflect.Slice {
var responses []string
for _, item := range request.([]any) {
pr := processRequest(item.(map[string]any))
if pr != notifyResponse {
responses = append(responses, pr)
}
}
var rr []string
for _, r := range responses {
if r != "" {
rr = append(rr, r)
}
}
// TODO: maybe it can make more beautiful
response = "[" + strings.Join(rr, ",") + "]"
} else {
response = processRequest(request.(map[string]any))
}
_, _ = fmt.Fprint(w, response)
httpRequest = nil
}
// EmptyRequestError Wrong data or Empty request
// Helper function for most cases
func EmptyRequestError() (any, *RPCError) {
return nil, &RPCError{
Code: -20,
Message: "Wrong data or Empty request",
}
}
// --------------- PRIVATE ---------------
func processRequest(request utils.Object) string {
req := RPCRequest{}
decoder, _ := mapstructure.NewDecoder(&mapstructure.DecoderConfig{
Result: &req,
TagName: "mstruct",
})
// Check wrong JSON data
if err := decoder.Decode(request); err != nil {
return performError(req, -32700, "Parse error")
}
// Check RPC format
if req.Version != rpcVersion {
return performError(req, -32600, "Invalid Request")
}
// If method not found
if _, ok := methods[req.Method]; !ok {
return performError(req, -32601, "Method not found")
}
// Run method
method := methods[req.Method]
result, rpcError := method(req.Params)
// Check is not notify type
if req.ID != 0 {
if rpcError != nil {
return performError(req, rpcError.Code, rpcError.Message)
}
return performSuccess(req, result)
}
return notifyResponse
}
// performError Format success response
func performSuccess(rpc RPCRequest, data any) string {
return performResponse(rpc, "result", data)
}
// performError Format error response
func performError(rpc RPCRequest, code int, message string) string {
return performResponse(rpc, "error", utils.Object{
"code": code,
"message": message,
})
}
// performResponse Create response
func performResponse(rpc RPCRequest, key string, value any) string {
_struct := utils.Object{
"jsonrpc": "2.0",
"id": rpc.ID,
key: value,
}
result, _ := json.Marshal(_struct)
return string(result)
}