GoTomato/pkg/models/client.go

46 lines
1.1 KiB
Go
Raw Normal View History

package models
import (
2024-11-20 18:53:40 +00:00
"time"
2024-11-20 18:53:40 +00:00
"github.com/gorilla/websocket"
)
2024-11-20 18:53:40 +00:00
const TIMEOUT = 10
2024-10-30 06:37:14 +00:00
// Represents a command from the client (start/stop)
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-30 06:37:14 +00:00
// Represents a single client
type WebsocketClient struct {
2024-11-20 19:07:29 +00:00
Conn *websocket.Conn
LastPong time.Time
RealIP string
}
2024-10-30 06:37:14 +00:00
// Sends a message to the websocket.
func (c *WebsocketClient) SendMessage(messageType int, data []byte) error {
2024-11-20 20:22:12 +00:00
c.Conn.SetWriteDeadline(time.Now().Add(TIMEOUT * time.Second))
err := c.Conn.WriteMessage(websocket.PingMessage, nil)
if err != nil {
return err
}
2024-11-20 19:07:29 +00:00
c.Conn.SetWriteDeadline(time.Now().Add(TIMEOUT * time.Second))
2024-11-20 20:22:12 +00:00
err = c.Conn.WriteMessage(messageType, data)
if err != nil {
return err
}
return nil
}
2024-11-20 20:52:08 +00:00
// Checks if the websockets last Pong is recent
2024-11-20 20:22:12 +00:00
func (c *WebsocketClient) IsStale() bool {
return time.Since(c.LastPong) > (TIMEOUT * time.Second)
}