ChronoTomato/internal/websocket/connect.go

42 lines
943 B
Go
Raw Normal View History

2024-10-22 11:13:41 +00:00
package websocket
import (
"github.com/charmbracelet/log"
"github.com/gorilla/websocket"
"time"
ChronoTomato "git.smsvc.net/pomodoro/ChronoTomato/pkg/models"
2024-10-22 11:13:41 +00:00
)
type Client ChronoTomato.GoTomatoClient // New websocket client
2024-10-30 10:03:18 +00:00
// Connects to websocket
func Connect(url string) Client {
2024-10-22 11:13:41 +00:00
log.Info("Connected 󰖟 ", "host", url)
conn, _, err := websocket.DefaultDialer.Dial(url, nil)
if err != nil {
log.Fatal("Dial error!", "reason", err)
}
return Client{Conn: conn}
2024-10-22 11:13:41 +00:00
}
2024-10-30 10:03:18 +00:00
// Disconnects from websocket
func (c Client) Disconnect() {
select {
case <-Done:
// session closed by remote
return
default:
// Cleanly close the connection by sending a close message and then
// waiting (with timeout) for the server to close the connection.
c.Conn.WriteMessage(websocket.CloseMessage, websocket.FormatCloseMessage(websocket.CloseNormalClosure, ""))
2024-10-22 11:13:41 +00:00
select {
case <-Done:
case <-time.After(time.Second):
2024-10-22 11:13:41 +00:00
}
return
2024-10-22 11:13:41 +00:00
}
}