Compare commits

..

No commits in common. "d2e34e84f87f2dfd7e88836a4e30795a6bb3a88e" and "45c527cc7972246a6339c0d2ffb909a57a89e111" have entirely different histories.

3 changed files with 11 additions and 11 deletions

View file

@ -6,8 +6,13 @@ import (
"git.smsvc.net/pomodoro/GoTomato/pkg/models" "git.smsvc.net/pomodoro/GoTomato/pkg/models"
"github.com/gorilla/websocket" "github.com/gorilla/websocket"
"log" "log"
"sync"
) )
// Clients is a map of connected WebSocket clients, where each client is represented by the Client struct
var Clients = make(map[*websocket.Conn]*models.Client)
var mu sync.Mutex // Mutex to protect access to the Clients map
// handleClientCommands listens for commands from WebSocket clients and dispatches to the timer. // handleClientCommands listens for commands from WebSocket clients and dispatches to the timer.
func handleClientCommands(ws *websocket.Conn) { func handleClientCommands(ws *websocket.Conn) {
for { for {

View file

@ -5,13 +5,8 @@ import (
"github.com/gorilla/websocket" "github.com/gorilla/websocket"
"log" "log"
"net/http" "net/http"
"sync"
) )
// Clients is a map of connected WebSocket clients, where each client is represented by the Client struct
var Clients = make(map[*websocket.Conn]*models.Client)
var mu sync.Mutex // Mutex to protect access to the Clients map
// Upgrader to upgrade HTTP requests to WebSocket connections // Upgrader to upgrade HTTP requests to WebSocket connections
var upgrader = websocket.Upgrader{ var upgrader = websocket.Upgrader{
CheckOrigin: func(r *http.Request) bool { return true }, CheckOrigin: func(r *http.Request) bool { return true },

View file

@ -1,13 +1,13 @@
package models package models
type GoTomatoTimerConfig struct { type GoTomatoTimerConfig struct {
Work int `json:"work"` // Length of work sessions in seconds Work int `json:"work"`
ShortBreak int `json:"shortBreak"` // Length of short break in seconds ShortBreak int `json:"shortBreak"`
LongBreak int `json:"longBreak"` // Length if ling break in seconds LongBreak int `json:"longBreak"`
Sessions int `json:"sessions"` // Number of total sessions Sessions int `json:"sessions"`
} }
type GoTomatoServerConfig struct { type GoTomatoServerConfig struct {
ListenAddress string `json:"listenAddress"` // Server listen address ListenAddress string `json:"listenAddress"`
ListenPort int `json:"listenPort"` // Server listen port ListenPort int `json:"listenPort"`
} }