This repository has been archived by the owner on Nov 1, 2022. It is now read-only.
forked from Imgur/incus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sockets.go
171 lines (136 loc) · 2.81 KB
/
sockets.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
package main
import (
"encoding/json"
"errors"
"fmt"
"log"
"net/http"
"strings"
"time"
"github.com/gorilla/websocket"
)
var socketIds chan string
func init() {
socketIds = make(chan string)
go func() {
var i = 1
for {
i++
socketIds <- fmt.Sprintf("%v", i)
}
}()
}
func newSocket(ws *websocket.Conn, lp http.ResponseWriter, server *Server, UID string) *Socket {
return &Socket{<-socketIds, UID, "", ws, lp, server, make(chan *Message, 1000), make(chan bool), false}
}
type Socket struct {
SID string // socket ID, randomly generated
UID string // User ID, passed in via client
Page string // Current page, if set.
ws *websocket.Conn
lp http.ResponseWriter
Server *Server
buff chan *Message
done chan bool
closed bool
}
func (this *Socket) isWebsocket() bool {
return (this.ws != nil)
}
func (this *Socket) isLongPoll() bool {
return (this.lp != nil)
}
func (this *Socket) isClosed() bool {
return this.closed
}
func (this *Socket) Close() error {
if !this.closed {
this.closed = true
if this.Page != "" {
this.Server.Store.UnsetPage(this)
this.Page = ""
}
this.Server.Store.Remove(this)
close(this.done)
}
return nil
}
func (this *Socket) Authenticate(UID string) error {
if this.isWebsocket() {
var message = new(CommandMsg)
err := this.ws.ReadJSON(message)
if DEBUG {
log.Println(message.Command)
}
if err != nil {
return err
}
command := message.Command["command"]
if strings.ToLower(command) != "authenticate" {
return errors.New("Error: Authenticate Expected.\n")
}
var ok bool
UID, ok = message.Command["user"]
if !ok {
return errors.New("Error on Authenticate: Bad Input.\n")
}
}
if UID == "" {
return errors.New("Error on Authenticate: Bad Input.\n")
}
if DEBUG {
log.Printf("saving UID as %s", UID)
}
this.UID = UID
this.Server.Store.Save(this)
return nil
}
func (this *Socket) listenForMessages() {
for {
select {
case <-this.done:
return
default:
var command = new(CommandMsg)
err := this.ws.ReadJSON(command)
if err != nil {
if DEBUG {
log.Printf("Error: %s\n", err.Error())
}
go this.Close()
return
}
if DEBUG {
log.Println(command)
}
go command.FromSocket(this)
}
}
}
func (this *Socket) listenForWrites() {
for {
select {
case message := <-this.buff:
if DEBUG {
log.Println("Sending:", message)
}
var err error
if this.isWebsocket() {
this.ws.SetWriteDeadline(time.Now().Add(writeWait))
err = this.ws.WriteJSON(message)
} else {
json_str, _ := json.Marshal(message)
_, err = fmt.Fprint(this.lp, string(json_str))
}
if this.isLongPoll() || err != nil {
if DEBUG && err != nil {
log.Printf("Error: %s\n", err.Error())
}
go this.Close()
return
}
case <-this.done:
return
}
}
}