-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchat.go
111 lines (100 loc) · 2.78 KB
/
chat.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
package internal
import (
"fmt"
"log"
"net/http"
"strings"
"github.com/gorilla/websocket"
"github.com/sehogas/gosocket/models"
"github.com/sehogas/gosocket/utils"
)
var upgrader = websocket.Upgrader{
ReadBufferSize: 1024,
WriteBufferSize: 1024,
CheckOrigin: check,
}
type messageChannel chan *models.Message
type userChannel chan *UserChat
type Channel struct {
messageChannel messageChannel
leaveChannel userChannel
}
type WebSocketChat struct {
users map[string]*UserChat
joinChannel userChannel
channel *Channel
}
func NewWebSocketChat() *WebSocketChat {
return &WebSocketChat{
users: make(map[string]*UserChat),
joinChannel: make(userChannel),
channel: &Channel{
messageChannel: make(messageChannel),
leaveChannel: make(userChannel),
},
}
}
func check(r *http.Request) bool {
log.Printf("%s %s%s %v", r.Method, r.Host, r.RequestURI, r.Proto)
return r.Method == http.MethodGet
}
func (w *WebSocketChat) HandlerConnections(rw http.ResponseWriter, r *http.Request) {
connection, err := upgrader.Upgrade(rw, r, nil)
if err != nil {
log.Println(err)
rw.WriteHeader(http.StatusInternalServerError)
fmt.Fprintf(rw, "Error de conexión: %s", err.Error())
return
}
keys := r.URL.Query()
username := strings.TrimSpace(keys.Get("username"))
log.Println(username)
if strings.TrimSpace(username) == "" {
username = fmt.Sprintf("user-%d", utils.GetRandonInt())
}
u := NewUserChat(w.channel, username, connection)
w.joinChannel <- u
u.OnLine()
}
func (w *WebSocketChat) UsersManager() {
for {
select {
case userChat := <-w.joinChannel:
w.AddUser(userChat)
case message := <-w.channel.messageChannel:
w.SendMessage(message)
case user := <-w.channel.leaveChannel:
w.DisconnectUser(user.UserName)
}
}
}
func (w *WebSocketChat) AddUser(userchat *UserChat) {
if user, ok := w.users[userchat.UserName]; ok {
user.Connection = userchat.Connection
log.Printf("Usuario reconectado: %s \n", userchat.UserName)
} else {
w.users[userchat.UserName] = userchat
log.Printf("Usuario conectado: %s \n", userchat.UserName)
}
}
func (w *WebSocketChat) DisconnectUser(username string) {
if user, ok := w.users[username]; ok {
defer user.Connection.Close()
delete(w.users, username)
log.Printf("Usuario: %s, ha dejado el chat.", username)
}
}
func (w *WebSocketChat) SendMessage(message *models.Message) {
if user, ok := w.users[message.Target]; ok {
if err := user.SendMessage(message); err != nil {
log.Printf("No se pudo enviar el mensaje a [%s]", message.Target)
}
}
}
func StartWebSocket(port string) {
log.Printf("Chat escuchando en http://localhost:%s", port)
ws := NewWebSocketChat()
http.HandleFunc("/chat", ws.HandlerConnections)
go ws.UsersManager()
log.Fatalln(http.ListenAndServe(fmt.Sprintf("localhost:%s", port), nil))
}