Sebastian Mark
44a64bfce4
- add Gorilla handlers package for enhanced HTTP handling - refactor HTTP server to use a new ServeMux for routing - update ListenAndServe to utilize ProxyHeaders for better proxy support - add RealIP field to client model - use RealIP fild for connect/disconnect log output
45 lines
1.2 KiB
Go
45 lines
1.2 KiB
Go
package websocket
|
|
|
|
import (
|
|
"github.com/charmbracelet/log"
|
|
"github.com/gorilla/websocket"
|
|
"net"
|
|
"net/http"
|
|
"sync"
|
|
|
|
"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
|
|
|
|
// Upgrade HTTP requests to WebSocket connections
|
|
var upgrader = websocket.Upgrader{
|
|
CheckOrigin: func(r *http.Request) bool { return true },
|
|
}
|
|
|
|
// 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 {
|
|
log.Error("WebSocket upgrade error:", "msg", err)
|
|
return
|
|
}
|
|
defer ws.Close()
|
|
|
|
// Register the new client
|
|
client := models.WebsocketClient{
|
|
Conn: ws,
|
|
RealIP: r.RemoteAddr,
|
|
}
|
|
mu.Lock()
|
|
Clients[ws.LocalAddr()] = &client
|
|
mu.Unlock()
|
|
|
|
log.Info("Client connected", "host", client.RealIP, "clients", len(Clients))
|
|
|
|
// Listen for commands from the connected client
|
|
handleClientCommands(client)
|
|
}
|