Compare commits

...

4 commits

Author SHA1 Message Date
bcda687c5e refactor: websocket client and closure variable
- update comments
- move `Done` variable to vars.go
- move `Connected()` method

🤖
2024-11-21 12:28:36 +01:00
342ecde6bb refactor: update reconnect code for better understanding 2024-11-21 12:28:36 +01:00
c4c787a782 chore: update module github.com/charmbracelet/bubbletea to v1.2.3 2024-11-21 12:28:36 +01:00
46c3a4c0b1 fix: remove unused variable prevMessage
- update logic to send current serverMessage instead of prevMessage
- simplify message processing for improved clarity

🤖
2024-11-21 12:28:32 +01:00
5 changed files with 24 additions and 26 deletions

2
go.mod
View file

@ -6,7 +6,7 @@ require (
git.smsvc.net/pomodoro/GoTomato v0.4.0
github.com/alecthomas/colour v0.1.0
github.com/charmbracelet/bubbles v0.20.0
github.com/charmbracelet/bubbletea v1.2.2
github.com/charmbracelet/bubbletea v1.2.3
github.com/charmbracelet/log v0.4.0
github.com/gen2brain/beeep v0.0.0-20240516210008-9c006672e7f4
github.com/gorilla/websocket v1.5.3

4
go.sum
View file

@ -6,8 +6,8 @@ github.com/aymanbagabas/go-osc52/v2 v2.0.1 h1:HwpRHbFMcZLEVr42D4p7XBqjyuxQH5SMiE
github.com/aymanbagabas/go-osc52/v2 v2.0.1/go.mod h1:uYgXzlJ7ZpABp8OJ+exZzJJhRNQ2ASbcXHWsFqH8hp8=
github.com/charmbracelet/bubbles v0.20.0 h1:jSZu6qD8cRQ6k9OMfR1WlM+ruM8fkPWkHvQWD9LIutE=
github.com/charmbracelet/bubbles v0.20.0/go.mod h1:39slydyswPy+uVOHZ5x/GjwVAFkCsV8IIVy+4MhzwwU=
github.com/charmbracelet/bubbletea v1.2.2 h1:EMz//Ky/aFS2uLcKqpCst5UOE6z5CFDGRsUpyXz0chs=
github.com/charmbracelet/bubbletea v1.2.2/go.mod h1:Qr6fVQw+wX7JkWWkVyXYk/ZUQ92a6XNekLXa3rR18MM=
github.com/charmbracelet/bubbletea v1.2.3 h1:d9MdMsANIYZB5pE1KkRqaUV6GfsiWm+/9z4fTuGVm9I=
github.com/charmbracelet/bubbletea v1.2.3/go.mod h1:Qr6fVQw+wX7JkWWkVyXYk/ZUQ92a6XNekLXa3rR18MM=
github.com/charmbracelet/harmonica v0.2.0 h1:8NxJWRWg/bzKqqEaaeFNipOu77YR5t8aSwG4pgaUBiQ=
github.com/charmbracelet/harmonica v0.2.0/go.mod h1:KSri/1RMQOZLbw7AHqgcBycp8pgJnQMYYT8QZRqZ1Ao=
github.com/charmbracelet/lipgloss v1.0.0 h1:O7VkGDvqEdGi93X+DeqsQ7PKHDgtQfF8j8/O2qFMQNg=

View file

@ -1,13 +1,15 @@
package websocket
import (
"github.com/gorilla/websocket"
"time"
"github.com/gorilla/websocket"
ChronoTomato "git.smsvc.net/pomodoro/ChronoTomato/pkg/models"
)
type Client ChronoTomato.GoTomatoClient // New websocket client
// New websocket client
type Client ChronoTomato.GoTomatoClient
// Connects to websocket
func Connect(url string) Client {
@ -16,10 +18,6 @@ func Connect(url string) Client {
return Client{Conn: conn, Server: url, LastErr: err}
}
func (c Client) Connected() bool {
return c.Conn != nil
}
// Disconnects from websocket
func (c Client) Disconnect() {
// Cleanly close the connection by sending a close message and then
@ -33,3 +31,7 @@ func (c Client) Disconnect() {
}
return
}
func (c Client) Connected() bool {
return c.Conn != nil
}

View file

@ -9,12 +9,10 @@ import (
GoTomato "git.smsvc.net/pomodoro/GoTomato/pkg/models"
)
var Done = make(chan struct{})
// Receives websocket messages and writes them to a channel.
// Closes the channel if websocket closes.
func (c *Client) ProcessServerMessages(channel chan<- GoTomato.ServerMessage) {
var serverMessage, prevMessage GoTomato.ServerMessage
var serverMessage GoTomato.ServerMessage
defer close(Done)
@ -22,27 +20,22 @@ func (c *Client) ProcessServerMessages(channel chan<- GoTomato.ServerMessage) {
c.Conn.SetReadDeadline(time.Now().Add(10 * time.Second))
_, message, err := c.Conn.ReadMessage()
if err != nil {
c.LastErr = err
// On normal closure exit gracefully
if websocket.IsCloseError(err, websocket.CloseNormalClosure) {
return
}
c.LastErr = err
// Try to reconnect on unexpected disconnect
for {
channel <- prevMessage // send previous ServerMessage to update view
// reset connection and reconnect
c.Conn = nil
pw := c.Password
for !c.Connected() {
channel <- serverMessage // send last known ServerMessage to update view
time.Sleep(time.Second)
// reconnect while preserving password
pw := c.Password
*c = Connect(c.Server)
c.Password = pw
if c.Connected() {
break
}
}
c.Password = pw
continue
}
@ -50,6 +43,5 @@ func (c *Client) ProcessServerMessages(channel chan<- GoTomato.ServerMessage) {
c.LastErr = err
channel <- serverMessage
prevMessage = serverMessage
}
}

View file

@ -0,0 +1,4 @@
package websocket
// Websocket closure
var Done = make(chan struct{})