-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconnection.go
More file actions
218 lines (164 loc) · 4.21 KB
/
Copy pathconnection.go
File metadata and controls
218 lines (164 loc) · 4.21 KB
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
package streaming
import (
"sync"
"time"
"github.com/xraph/forge"
)
// Transport type constants.
const (
TransportWebSocket = "websocket"
TransportSSE = "sse"
)
// enhancedConn implements EnhancedConnection.
type enhancedConn struct {
forge.Connection
mu sync.RWMutex
userID string
sessionID string
transport string // "websocket" or "sse"
contentType string // preferred content type (e.g. "application/json")
metadata map[string]any
joinedRooms map[string]bool
subscriptions map[string]bool
lastActivity time.Time
closed bool
}
// NewConnection creates a new enhanced connection with default transport "websocket".
func NewConnection(conn forge.Connection) Connection {
return NewConnectionWithTransport(conn, TransportWebSocket)
}
// NewConnectionWithTransport creates a new enhanced connection with a specified transport type.
func NewConnectionWithTransport(conn forge.Connection, transport string) Connection {
return &enhancedConn{
Connection: conn,
transport: transport,
metadata: make(map[string]any),
joinedRooms: make(map[string]bool),
subscriptions: make(map[string]bool),
lastActivity: time.Now(),
closed: false,
}
}
func (c *enhancedConn) GetUserID() string {
c.mu.RLock()
defer c.mu.RUnlock()
return c.userID
}
func (c *enhancedConn) SetUserID(userID string) {
c.mu.Lock()
defer c.mu.Unlock()
c.userID = userID
}
func (c *enhancedConn) GetSessionID() string {
c.mu.RLock()
defer c.mu.RUnlock()
return c.sessionID
}
func (c *enhancedConn) SetSessionID(sessionID string) {
c.mu.Lock()
defer c.mu.Unlock()
c.sessionID = sessionID
}
func (c *enhancedConn) GetMetadata(key string) (any, bool) {
c.mu.RLock()
defer c.mu.RUnlock()
val, ok := c.metadata[key]
return val, ok
}
func (c *enhancedConn) SetMetadata(key string, value any) {
c.mu.Lock()
defer c.mu.Unlock()
c.metadata[key] = value
}
func (c *enhancedConn) GetJoinedRooms() []string {
c.mu.RLock()
defer c.mu.RUnlock()
rooms := make([]string, 0, len(c.joinedRooms))
for room := range c.joinedRooms {
rooms = append(rooms, room)
}
return rooms
}
func (c *enhancedConn) AddRoom(roomID string) {
c.mu.Lock()
defer c.mu.Unlock()
c.joinedRooms[roomID] = true
}
func (c *enhancedConn) RemoveRoom(roomID string) {
c.mu.Lock()
defer c.mu.Unlock()
delete(c.joinedRooms, roomID)
}
func (c *enhancedConn) IsInRoom(roomID string) bool {
c.mu.RLock()
defer c.mu.RUnlock()
return c.joinedRooms[roomID]
}
func (c *enhancedConn) GetSubscriptions() []string {
c.mu.RLock()
defer c.mu.RUnlock()
subs := make([]string, 0, len(c.subscriptions))
for sub := range c.subscriptions {
subs = append(subs, sub)
}
return subs
}
func (c *enhancedConn) AddSubscription(channelID string) {
c.mu.Lock()
defer c.mu.Unlock()
c.subscriptions[channelID] = true
}
func (c *enhancedConn) RemoveSubscription(channelID string) {
c.mu.Lock()
defer c.mu.Unlock()
delete(c.subscriptions, channelID)
}
func (c *enhancedConn) IsSubscribed(channelID string) bool {
c.mu.RLock()
defer c.mu.RUnlock()
return c.subscriptions[channelID]
}
func (c *enhancedConn) GetLastActivity() time.Time {
c.mu.RLock()
defer c.mu.RUnlock()
return c.lastActivity
}
func (c *enhancedConn) UpdateActivity() {
c.mu.Lock()
defer c.mu.Unlock()
c.lastActivity = time.Now()
}
func (c *enhancedConn) IsClosed() bool {
c.mu.RLock()
defer c.mu.RUnlock()
return c.closed
}
func (c *enhancedConn) MarkClosed() {
c.mu.Lock()
defer c.mu.Unlock()
c.closed = true
}
// GetTransport returns the connection transport type ("websocket" or "sse").
func (c *enhancedConn) GetTransport() string {
c.mu.RLock()
defer c.mu.RUnlock()
return c.transport
}
// SetTransport sets the connection transport type.
func (c *enhancedConn) SetTransport(transport string) {
c.mu.Lock()
defer c.mu.Unlock()
c.transport = transport
}
// GetContentType returns the connection's preferred content type for message encoding.
func (c *enhancedConn) GetContentType() string {
c.mu.RLock()
defer c.mu.RUnlock()
return c.contentType
}
// SetContentType sets the connection's preferred content type.
func (c *enhancedConn) SetContentType(contentType string) {
c.mu.Lock()
defer c.mu.Unlock()
c.contentType = contentType
}