forked from schwartzmx/gremgo-neptune
-
Notifications
You must be signed in to change notification settings - Fork 0
/
request.go
103 lines (83 loc) · 2.63 KB
/
request.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
package gremgo
import (
"encoding/base64"
"encoding/json"
"github.com/satori/go.uuid"
)
type requester interface {
prepare() error
getID() string
getRequest() request
}
// request is a container for all evaluation request parameters to be sent to the Gremlin Server.
type request struct {
RequestID string `json:"requestId"`
Op string `json:"op"`
Processor string `json:"processor"`
Args map[string]interface{} `json:"args"`
}
// prepareRequest packages a query and binding into the format that Gremlin Server accepts
func prepareRequest(query string) (req request, id string, err error) {
var uuID uuid.UUID
uuID, err = uuid.NewV4()
if err != nil {
return
}
id = uuID.String()
req.RequestID = id
req.Op = "eval"
req.Processor = ""
req.Args = make(map[string]interface{})
req.Args["language"] = "gremlin-groovy"
req.Args["gremlin"] = query
return
}
// prepareRequest packages a query and binding into the format that Gremlin Server accepts
func prepareRequestWithBindings(query string, bindings, rebindings map[string]string) (req request, id string, err error) {
var uuID uuid.UUID
uuID, err = uuid.NewV4()
if err != nil {
return
}
id = uuID.String()
req.RequestID = id
req.Op = "eval"
req.Processor = ""
req.Args = make(map[string]interface{})
req.Args["language"] = "gremlin-groovy"
req.Args["gremlin"] = query
req.Args["bindings"] = bindings
req.Args["rebindings"] = rebindings
return
}
//prepareAuthRequest creates a ws request for Gremlin Server
func prepareAuthRequest(requestID string, username string, password string) (req request, err error) {
req.RequestID = requestID
req.Op = "authentication"
req.Processor = "trasversal"
var simpleAuth []byte
user := []byte(username)
pass := []byte(password)
simpleAuth = append(simpleAuth, 0)
simpleAuth = append(simpleAuth, user...)
simpleAuth = append(simpleAuth, 0)
simpleAuth = append(simpleAuth, pass...)
req.Args = make(map[string]interface{})
req.Args["sasl"] = base64.StdEncoding.EncodeToString(simpleAuth)
return
}
// formatMessage takes a request type and formats it into being able to be delivered to Gremlin Server
func packageRequest(req request) (msg []byte, err error) {
j, err := json.Marshal(req) // Formats request into byte format
if err != nil {
return
}
mimeType := []byte("application/vnd.gremlin-v3.0+json")
msg = append([]byte{0x21}, mimeType...) //0x21 is the fixed length of mimeType in hex
msg = append(msg, j...)
return
}
// dispactchRequest sends the request for writing to the remote Gremlin Server
func (c *Client) dispatchRequest(msg []byte) {
c.requests <- msg
}