Sebastian Mark
9a86adaf85
- change ticker to use BROADCAST_INTERVAL constant
- define BROADCAST_INTERVAL as 1 second
🤖
37 lines
1 KiB
Go
37 lines
1 KiB
Go
package websocket
|
|
|
|
import (
|
|
"encoding/json"
|
|
"github.com/gorilla/websocket"
|
|
"time"
|
|
|
|
"git.smsvc.net/pomodoro/GoTomato/internal/helper"
|
|
"git.smsvc.net/pomodoro/GoTomato/internal/shared"
|
|
)
|
|
|
|
// Sends continous messages to all connected WebSocket clients
|
|
func SendPermanentBroadCastMessage() {
|
|
ticker := time.NewTicker(BROADCAST_INTERVAL * time.Second)
|
|
defer ticker.Stop()
|
|
|
|
for range ticker.C {
|
|
// Marshal the message into JSON format
|
|
jsonMessage, err := json.Marshal(shared.State)
|
|
if err != nil {
|
|
helper.Logger.Error("Error marshalling message:", "msg", err)
|
|
return
|
|
}
|
|
|
|
// Iterate over all connected clients and broadcast the message
|
|
mu.Lock()
|
|
for _, client := range Clients {
|
|
// Send message to client
|
|
client.Conn.SetWriteDeadline(time.Now().Add(SEND_TIMEOUT * time.Second))
|
|
err := client.Conn.WriteMessage(websocket.TextMessage, jsonMessage)
|
|
if err != nil {
|
|
helper.Logger.Error("Error broadcasting to client:", "msg", err, "host", client.RealIP, "clients", len(Clients))
|
|
}
|
|
}
|
|
mu.Unlock()
|
|
}
|
|
}
|