2024-10-20 09:06:37 +00:00
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gorilla/websocket"
|
2024-11-04 19:33:25 +00:00
|
|
|
|
|
|
|
"git.smsvc.net/pomodoro/GoTomato/internal/helper"
|
2024-10-20 09:06:37 +00:00
|
|
|
)
|
|
|
|
|
2024-10-30 06:37:14 +00:00
|
|
|
// Represents a command from the client (start/stop)
|
2024-10-20 09:06:37 +00:00
|
|
|
type ClientCommand struct {
|
2024-10-30 06:37:14 +00:00
|
|
|
Command string `json:"command"` // Command send to the server
|
|
|
|
Password string `json:"password"` // Pomodoro control password
|
|
|
|
Settings PomodoroConfig `json:"settings"` // Pomodoro config
|
2024-10-20 09:06:37 +00:00
|
|
|
}
|
|
|
|
|
2024-10-30 06:37:14 +00:00
|
|
|
// Represents a single client
|
2024-10-30 08:57:09 +00:00
|
|
|
type WebsocketClient struct {
|
2024-11-03 09:00:14 +00:00
|
|
|
Conn *websocket.Conn
|
|
|
|
RealIP string
|
2024-10-20 09:06:37 +00:00
|
|
|
}
|
|
|
|
|
2024-10-30 06:37:14 +00:00
|
|
|
// Sends a message to the websocket.
|
|
|
|
// Automatically locks and unlocks the client mutex, to ensure that only one goroutine can write at a time.
|
2024-10-30 08:57:09 +00:00
|
|
|
func (c *WebsocketClient) SendMessage(messageType int, data []byte) error {
|
2024-10-20 09:06:37 +00:00
|
|
|
err := c.Conn.WriteMessage(messageType, data)
|
|
|
|
if err != nil {
|
2024-11-04 19:33:25 +00:00
|
|
|
helper.Logger.Error("Error writing to WebSocket:", "msg", err)
|
2024-10-20 09:06:37 +00:00
|
|
|
c.Conn.Close() // Close the connection on error
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|