-
Notifications
You must be signed in to change notification settings - Fork 1
/
hub.go
207 lines (178 loc) · 4.6 KB
/
hub.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
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
package main
import (
"fmt"
"strconv"
"strings"
)
type hub struct {
channels map[string]*channel
clients map[string]*client
commands chan command
deregistrations chan *client
registrations chan *client
}
func newHub() *hub {
return &hub{
registrations: make(chan *client),
deregistrations: make(chan *client),
clients: make(map[string]*client),
channels: make(map[string]*channel),
commands: make(chan command),
}
}
func (h *hub) run() {
for {
select {
case client := <-h.registrations:
h.register(client)
case client := <-h.deregistrations:
h.deregister(client)
case cmd := <-h.commands:
switch cmd.id {
case JOIN:
h.joinChannel(cmd.sender, cmd.recipient)
case LEAVE:
h.leaveChannel(cmd.sender, cmd.recipient)
case MSG:
h.message(cmd.sender, cmd.recipient, cmd.body)
case DATA:
h.data(cmd.sender, cmd.recipient, cmd.body)
case USRS:
h.listUsers(cmd.sender)
case CHNS:
h.listChannels(cmd.sender)
default:
// Freak out?
}
}
}
}
func (h *hub) register(c *client) {
//if _, exists := h.clients[c.username]; exists {
// c.username = ""
// c.conn.Write([]byte("ERR username taken\n"))
//} else {
//}
player := newPlayer(c.username)
if player != nil {
player.read()
h.clients[c.username] = c
c.conn.Write([]byte("REGOK\n"))
gender := append([]byte("GENDER "), []byte(player.Gender)...)
gender = append(gender, []byte("\n")...)
c.conn.Write([]byte(gender))
}
}
func (h *hub) deregister(c *client) {
if _, exists := h.clients[c.username]; exists {
delete(h.clients, c.username)
fmt.Println("User unregistered.")
for _, channel := range h.channels {
delete(channel.clients, c)
}
}
}
func (h *hub) joinChannel(u string, c string) {
if client, ok := h.clients[u]; ok {
if channel, ok := h.channels[c]; ok {
// Channel exists, join
channel.clients[client] = true
} else {
// Channel doesn't exists, create and join
ch := newChannel(c)
ch.clients[client] = true
h.channels[c] = ch
}
client.conn.Write([]byte("CHOK\n"))
}
}
func (h *hub) leaveChannel(u string, c string) {
if client, ok := h.clients[u]; ok {
if channel, ok := h.channels[c]; ok {
delete(channel.clients, client)
}
}
}
func (h *hub) message(u string, r string, m []byte) {
if sender, ok := h.clients[u]; ok {
switch r[0] {
case '#':
if channel, ok := h.channels[r]; ok {
if _, ok := channel.clients[sender]; ok {
channel.broadcast(sender.username, m)
}
} else {
sender.conn.Write([]byte("ERR no such channel"))
}
case '@':
if user, ok := h.clients[r]; ok {
player := newPlayer(sender.username)
if player != nil {
player.read()
msg := append([]byte("!"), []byte(player.ShoutColor)...)
msg = append(msg, []byte(sender.username)...)
msg = append(msg, ": "...)
msg = append(msg, m...)
msg = append(msg, '\n')
user.conn.Write(msg)
}
} else {
sender.conn.Write([]byte("ERR no such user"))
}
default:
sender.conn.Write([]byte("ERR MSG command"))
}
}
}
func (h *hub) data(u string, r string, m []byte) {
if sender, ok := h.clients[u]; ok {
switch r {
case "#INFO":
player := newPlayer(sender.username)
if player != nil {
player.readscore()
player.read()
msg := append([]byte("UINFO "), []byte(sender.username)...)
msg = append(msg, " "...)
msg = append(msg, []byte(strconv.Itoa(player.TotalScore))...)
msg = append(msg, " "...)
msg = append(msg, []byte(strconv.Itoa(player.SeasonScore))...)
msg = append(msg, " "...)
msg = append(msg, []byte(strconv.Itoa(player.TotalRank))...)
msg = append(msg, " "...)
msg = append(msg, []byte(strconv.Itoa(player.SeasonRank))...)
msg = append(msg, " "...)
msg = append(msg, []byte(strconv.Itoa(player.ShoutCount))...)
msg = append(msg, " "...)
msg = append(msg, []byte(strconv.Itoa(player.Country))...)
msg = append(msg, '\n')
sender.conn.Write(msg)
}
default:
sender.conn.Write([]byte("ERR DATA command"))
}
}
}
func (h *hub) listChannels(u string) {
if client, ok := h.clients[u]; ok {
var names []string
if len(h.channels) == 0 {
client.conn.Write([]byte("ERR no channels found\n"))
}
for c := range h.channels {
names = append(names, "#"+c+" ")
}
resp := strings.Join(names, ", ")
client.conn.Write([]byte(resp + "\n"))
}
}
func (h *hub) listUsers(u string) {
if client, ok := h.clients[u]; ok {
var names []string
for c := range h.clients {
names = append(names, "@"+c+" ")
}
resp := strings.Join(names, ", ")
client.conn.Write([]byte(resp + "\n"))
}
}