ChronoTomato/cmd/client/main.go

41 lines
1 KiB
Go
Raw Normal View History

2024-10-22 11:13:41 +00:00
package client
import (
"atomicgo.dev/cursor"
2024-10-22 11:13:41 +00:00
"flag"
"git.smsvc.net/pomodoro/ChronoTomato/internal/frontend"
"git.smsvc.net/pomodoro/ChronoTomato/internal/helper"
"git.smsvc.net/pomodoro/ChronoTomato/internal/websocket"
ChronoTomato "git.smsvc.net/pomodoro/ChronoTomato/pkg/models"
GoTomato "git.smsvc.net/pomodoro/GoTomato/pkg/models"
2024-10-22 11:13:41 +00:00
)
func Start() {
cursor.Hide()
defer cursor.Show()
var config ChronoTomato.Config
channel := make(chan GoTomato.ServerMessage, 2)
parameter_url := flag.String("url", "", "GoTomato Server URL (eg ws://localhost:8080/ws)")
parameter_password := flag.String("password", "", "Control password for pomodoro session (optional)")
configfile := flag.String("config", "", "path to config file (optional)")
2024-10-22 11:13:41 +00:00
flag.Parse()
if *configfile != "" {
config = helper.ParseConfig(*configfile)
}
config.URL = *parameter_url
config.Password = *parameter_password
conn := websocket.Connect(config.URL)
2024-10-22 11:13:41 +00:00
go websocket.ProcessServerMessages(conn, channel)
frontend.Handler(conn, config, channel)
websocket.Disconnect(conn)
2024-10-22 11:13:41 +00:00
}