summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/mrexodia/wray/response.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/mrexodia/wray/response.go')
-rw-r--r--vendor/github.com/mrexodia/wray/response.go61
1 files changed, 0 insertions, 61 deletions
diff --git a/vendor/github.com/mrexodia/wray/response.go b/vendor/github.com/mrexodia/wray/response.go
deleted file mode 100644
index e9815c3f..00000000
--- a/vendor/github.com/mrexodia/wray/response.go
+++ /dev/null
@@ -1,61 +0,0 @@
-package wray
-
-type Response struct {
- id string
- channel string
- successful bool
- clientId string
- supportedConnectionTypes []string
- messages []Message
- error error
-}
-
-type Message struct {
- Channel string
- Id string
- Data map[string]interface{}
-}
-
-func newResponse(data []interface{}) Response {
- headerData := data[0].(map[string]interface{})
- messagesData := data[1.:]
- messages := parseMessages(messagesData)
- var id string
- if headerData["id"] != nil {
- id = headerData["id"].(string)
- }
- supportedConnectionTypes := []string{}
- if headerData["supportedConnectionTypes"] != nil {
- d := headerData["supportedConnectionTypes"].([]interface{})
- for _, sct := range(d) {
- supportedConnectionTypes = append(supportedConnectionTypes, sct.(string))
- }
- }
- var clientId string
- if headerData["clientId"] != nil {
- clientId = headerData["clientId"].(string)
- }
- return Response{id: id,
- clientId: clientId,
- channel: headerData["channel"].(string),
- successful: headerData["successful"].(bool),
- messages: messages,
- supportedConnectionTypes: supportedConnectionTypes}
-}
-
-func parseMessages(data []interface{}) []Message {
- messages := []Message{}
- for _, messageData := range(data) {
- m := messageData.(map[string]interface{})
- var id string
- if m["id"] != nil {
- id = m["id"].(string)
- }
- message := Message{Channel: m["channel"].(string),
- Id: id,
- Data: m["data"].(map[string]interface{})}
- messages = append(messages, message)
- }
- return messages
-}
-