GoTomato/internal/websocket/handle_connection.go

61 lines
1.5 KiB
Go
Raw Normal View History

package websocket
import (
"github.com/gorilla/websocket"
"net"
"net/http"
"sync"
2024-11-20 19:31:24 +00:00
"time"
"git.smsvc.net/pomodoro/GoTomato/internal/helper"
"git.smsvc.net/pomodoro/GoTomato/pkg/models"
)
// Clients is a map of connected WebSocket clients, where each client is represented by the WebsocketClient struct
var Clients = make(map[net.Addr]*models.WebsocketClient)
var mu sync.Mutex // Mutex to protect access to the Clients map
2024-10-30 06:37:14 +00:00
// Upgrade HTTP requests to WebSocket connections
var upgrader = websocket.Upgrader{
CheckOrigin: func(r *http.Request) bool { return true },
}
2024-11-20 20:22:46 +00:00
// initialize a new WebsocketClient
func newWebsocketClient(ws *websocket.Conn, address string) models.WebsocketClient {
wsclient := models.WebsocketClient{
Conn: ws,
LastPong: time.Now(),
RealIP: address,
}
wsclient.Conn.SetPongHandler(func(appData string) error {
wsclient.LastPong = time.Now()
return nil
})
return wsclient
}
2024-10-30 06:37:14 +00:00
// Upgrades HTTP requests to WebSocket connections and manages the client lifecycle
func HandleConnection(w http.ResponseWriter, r *http.Request) {
// Upgrade initial GET request to a WebSocket
ws, err := upgrader.Upgrade(w, r, nil)
if err != nil {
helper.Logger.Error("WebSocket upgrade error:", "msg", err)
return
}
defer ws.Close()
// Register the new client
2024-11-20 20:22:46 +00:00
client := newWebsocketClient(ws, r.RemoteAddr)
mu.Lock()
Clients[ws.LocalAddr()] = &client
mu.Unlock()
helper.Logger.Info("Client connected", "host", client.RealIP, "clients", len(Clients))
// Listen for commands from the connected client
handleClientCommands(client)
}