-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcodec.go
96 lines (77 loc) · 2.14 KB
/
codec.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
package res
import "encoding/json"
type resRequest struct {
CID string `json:"cid"`
Params json.RawMessage `json:"params"`
Token json.RawMessage `json:"token"`
Header map[string][]string `json:"header"`
Host string `json:"host"`
RemoteAddr string `json:"remoteAddr"`
URI string `json:"uri"`
Query string `json:"query"`
IsHTTP bool `json:"isHttp"`
}
type metaObject struct {
Status int `json:"status,omitempty"`
Header map[string][]string `json:"header,omitempty"`
}
type successResponse struct {
Result interface{} `json:"result"`
Meta *metaObject `json:"meta,omitempty"`
}
type resourceResponse struct {
Resource Ref `json:"resource"`
Meta *metaObject `json:"meta,omitempty"`
}
type errorResponse struct {
Error *Error `json:"error"`
Meta *metaObject `json:"meta,omitempty"`
}
type accessResponse struct {
Get bool `json:"get,omitempty"`
Call string `json:"call,omitempty"`
Meta *metaObject `json:"meta,omitempty"`
}
type modelResponse struct {
Model interface{} `json:"model"`
Query string `json:"query,omitempty"`
}
type collectionResponse struct {
Collection interface{} `json:"collection"`
Query string `json:"query,omitempty"`
}
type resetEvent struct {
Resources []string `json:"resources,omitempty"`
Access []string `json:"access,omitempty"`
}
type tokenEvent struct {
Token interface{} `json:"token"`
TID string `json:"tid,omitempty"`
}
type tokenResetEvent struct {
TIDs []string `json:"tids"`
Subject string `json:"subject"`
}
type changeEvent struct {
Values map[string]interface{} `json:"values"`
}
type addEvent struct {
Value interface{} `json:"value"`
Idx int `json:"idx"`
}
type removeEvent struct {
Idx int `json:"idx"`
}
type resQueryEvent struct {
Subject string `json:"subject"`
}
type resQueryRequest struct {
Query string `json:"query"`
}
type resEvent struct {
Event string `json:"event"`
Data interface{} `json:"data"`
}
type queryResponse struct {
Events []resEvent `json:"events"`
}