-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChatServer.go
384 lines (225 loc) · 7.23 KB
/
ChatServer.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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
package main
import (
"encoding/json"
"fmt"
"net"
"os"
)
const BUFFERSIZE int = 1024
var buffer [BUFFERSIZE]byte
type User struct {
Username string
Login bool
Key string
}
type userInput struct {
Type string
To string
Message string
}
var allClient_conns = make(map[net.Conn]string)
var allLoggedIn_conns = make(map[net.Conn]interface{})
var lostclient = make(chan net.Conn)
var newclient = make(chan net.Conn)
var currentLoggedUser User
var currentLoggedUsername string
var userlist []string
var usernamelist string
var myconfig []User
func main() {
if len(os.Args) != 2 {
fmt.Printf("Usage: %s <port>\n", os.Args[0])
os.Exit(0)
}
port := os.Args[1]
if len(port) > 5 {
fmt.Println("Invalid port value. Try again!")
os.Exit(1)
}
server, err := net.Listen("tcp", ":"+port)
if err != nil {
fmt.Printf("Cannot listen on port '" + port + "'!\n")
os.Exit(2)
}
fmt.Println("ChatServer in GoLang developed by Kartik Desai, SecAD")
fmt.Printf("ChatServer is listening on port '%s' ...\n", port)
go func() {
for {
client_conn, _ := server.Accept()
welcomemessage := fmt.Sprintf("A new client is connected from'%s' Waiting for login!\n", client_conn.RemoteAddr().String())
fmt.Println(welcomemessage)
go AuthenticateUser(client_conn)
}
}()
for {
select {
case client_conn := <-newclient:
allClient_conns[client_conn] = client_conn.RemoteAddr().String()
allLoggedIn_conns[client_conn] = currentLoggedUsername
fmt.Println("No of Online Users", len(allLoggedIn_conns))
if allLoggedIn_conns[client_conn] != "" {
go client_goroutine(client_conn)
}
case client_conn := <- lostclient:
go logout(client_conn)
}
}
}
func client_goroutine(client_conn net.Conn) {
var buffer [BUFFERSIZE]byte
messageForUser := fmt.Sprintf(" New user %s logged into Chat System from %s. %s (from %d connections)", currentLoggedUsername, client_conn.RemoteAddr().String(), getUserList(),len(userlist))
fmt.Println(messageForUser)
sendtoAll([]byte (messageForUser))
fmt.Printf("Connected Clients: %d\n", len(allLoggedIn_conns))
go func() {
for {
byte_received, read_err := client_conn.Read(buffer[0:])
if read_err != nil {
lostclient <- client_conn
return
}
fmt.Printf("Received data: %s\n", buffer[0:byte_received])
handleUserRequest(client_conn, buffer[0:byte_received])
}
}()
}
func AuthenticateUser(client_conn net.Conn) {
byte_received, read_err := client_conn.Read(buffer[0:])
if read_err != nil {
fmt.Println("Error in receiving...")
lostclient <- client_conn
return
}
fmt.Printf("Got data : %s Expecting Login Data\n", buffer[0:byte_received])
status, Username, message := checklogin(buffer[0:byte_received])
if status {
currentLoggedUser = User{Username: Username, Login: true,Key:client_conn.RemoteAddr().String()}
currentLoggedUsername = Username
fmt.Println(currentLoggedUser)
newclient <- client_conn
userlist = append(userlist, currentLoggedUser.Username)
myconfig = append(myconfig, currentLoggedUser)
usernamelist = usernamelist + ", " + currentLoggedUser.Username
} else {
failedLogin := fmt.Sprintf("Authentication_failed_Please_Try_Again! Invalid username or password")
client_conn.Write([]byte(failedLogin))
go AuthenticateUser(client_conn)
}
fmt.Println(message)
}
func privateMsg(sender net.Conn, receiver string, msg string){
counter := 0
for client_conn,_ := range allLoggedIn_conns{
counter++
if allLoggedIn_conns[client_conn] == receiver {
recieving_user := client_conn
incomingMsg := fmt.Sprintf("%s: %s",allLoggedIn_conns[sender], msg)
sendtoOne(recieving_user, []byte(incomingMsg))
return
}
}
failedSending := fmt.Sprintf("Receiver is not online at the moment! Please Try Again!")
sender.Write([]byte(failedSending))
}
func handleUserRequest(client_conn net.Conn, data []byte) {
var userIn userInput
err := json.Unmarshal(data, &userIn)
if err == nil && userIn.Type == "userlist" {
client_conn.Write([]byte(getUserList()))
return
}
if err == nil && userIn.Type == "public" {
fmt.Println("coming")
publicMsg := []byte(userIn.Message)
sendtoAll(publicMsg)
return
}
if err == nil && userIn.Type == "private" {
privateMsg(client_conn, userIn.To, userIn.Message)
return
}
if err == nil && userIn.Type == "exit" {
lostclient <- client_conn
return
}
}
func sendtoAll(data []byte) {
for u, _ := range allLoggedIn_conns {
fmt.Printf("To All: %s\n", data)
sendtoOne(u, data)
}
}
func getUserList() string {
var allUserList string
for n, _ := range userlist {
allUserList = allUserList + " " + userlist[n]
}
return "Online Users: " + allUserList
}
func sendtoOne(client_conn net.Conn, data []byte) {
_, write_err := client_conn.Write(data)
if write_err != nil {
fmt.Println("DEBUG>Error in sending...to "+ client_conn.RemoteAddr().String())
return
}
}
func checkAccount(Username string, Password string) bool {
users := []string{"k", "john", "smith", "jenny"}
password := "123"
for _, U := range users {
if Username == U && Password == password {
return true
}
}
return false
}
func checklogin(data []byte) (bool, string, string) {
type Account struct {
Username string
Password string
}
var account Account
err := json.Unmarshal(data, &account)
if err != nil || account.Username == " " || account.Password == " " {
fmt.Printf("JSON parsing error : %s\n", err)
return false, " ", `[BAD LOGIN] Expected: {"Username":"..","Password":".."}`
}
fmt.Printf("DEBUG>Got: account =%s\n", account)
fmt.Printf("DEBUG>Got: username=%s,password=%s\n", account.Username, account.Password)
if checkAccount(account.Username, account.Password) {
return true, account.Username, "logged"
}
return false, "", "Invalid username or password"
}
func deleteDisconnedted(slices []string, name string,index int) []string{
fmt.Println(index)
fmt.Println(len(slices))
if(len(slices)>=index) {
if slices[index] == name {
slices = append(slices[:index], slices[index+1:]...)
}
}
return slices
}
func getUsernameofLoggedout (client_conn net.Conn ) (string,int) {
var username string
var index int
for i,user := range myconfig {
if user.Key == client_conn.RemoteAddr().String() {
fmt.Println("Hello")
username = user.Username
index = i
}
}
return username,index
}
func logout(client_conn net.Conn) ([]string){
exitmsg := fmt.Sprintf("%s client disconned", allLoggedIn_conns[client_conn])
go sendtoAll([]byte(exitmsg))
username , i := getUsernameofLoggedout(client_conn)
userlist = deleteDisconnedted(userlist,username ,i )
fmt.Println(userlist)
go delete(allLoggedIn_conns, client_conn)
client_conn.Close()
return userlist
}