Sebastian Mark
6187122b81
- change `ProcessServerMessages` to use receiver instead of parameter
- update `Disconnect` method to use receiver for better encapsulation
- move `Client` definition to `connect.go`
🤖
42 lines
861 B
Go
42 lines
861 B
Go
package websocket
|
|
|
|
import (
|
|
"encoding/json"
|
|
"github.com/charmbracelet/log"
|
|
"github.com/gorilla/websocket"
|
|
|
|
GoTomato "git.smsvc.net/pomodoro/GoTomato/pkg/models"
|
|
)
|
|
|
|
func (c Client) sendClientCommand(msg GoTomato.ClientCommand) {
|
|
messageBytes, err := json.Marshal(msg)
|
|
if err != nil {
|
|
log.Error("Error marshalling!", "reason", err)
|
|
return
|
|
}
|
|
|
|
err = c.Conn.WriteMessage(websocket.TextMessage, messageBytes)
|
|
if err != nil {
|
|
log.Error("Write error!", "reason", err)
|
|
return
|
|
}
|
|
}
|
|
|
|
func (c Client) SendCmd(cmd string) {
|
|
message := GoTomato.ClientCommand{
|
|
Command: cmd,
|
|
Password: c.Password,
|
|
}
|
|
|
|
c.sendClientCommand(message)
|
|
}
|
|
|
|
func (c Client) SendSettingsUpdate(settings GoTomato.PomodoroConfig) {
|
|
message := GoTomato.ClientCommand{
|
|
Command: "updateSettings",
|
|
Password: c.Password,
|
|
Settings: settings,
|
|
}
|
|
|
|
c.sendClientCommand(message)
|
|
}
|