Files
netbird/client/ui/services/update.go
T
2026-09-17 14:36:56 +02:00

84 lines
2.3 KiB
Go

//go:build !android && !ios && !freebsd && !js
package services
import (
"context"
"time"
"github.com/wailsapp/wails/v3/pkg/application"
"github.com/netbirdio/netbird/client/proto"
"github.com/netbirdio/netbird/client/ui/updater"
"github.com/netbirdio/netbird/version"
)
// UpdateResult mirrors TriggerUpdateResponse.
type UpdateResult struct {
Success bool `json:"success"`
ErrorMsg string `json:"errorMsg"`
}
// Update is the Wails-bound facade over the daemon's update RPCs. The state
// machine and push event live in client/ui/updater.
type Update struct {
conn DaemonConn
holder *updater.Holder
classifier errorClassifier
}
// NewUpdate wires up an Update service. translator or prefs may be nil, in
// which case classification falls back to the bare error key.
func NewUpdate(conn DaemonConn, holder *updater.Holder, translator ErrorTranslator, prefs LanguagePreference) *Update {
return &Update{conn: conn, holder: holder, classifier: errorClassifier{translator: translator, prefs: prefs}}
}
func (s *Update) GetState() updater.State {
return s.holder.Get()
}
// DownloadURL returns the platform-appropriate installer download link for
// manual (non-enforced) updates.
func (s *Update) DownloadURL() string {
return version.DownloadUrl()
}
// Quit exits the app. Scheduled off the calling goroutine so the JS caller's
// response returns before the runtime tears down.
func (s *Update) Quit() {
go func() {
time.Sleep(100 * time.Millisecond)
application.Get().Quit()
}()
}
func (s *Update) Trigger(ctx context.Context) (UpdateResult, error) {
cli, err := s.conn.Client()
if err != nil {
return UpdateResult{}, s.classifier.classify(err)
}
resp, err := cli.TriggerUpdate(ctx, &proto.TriggerUpdateRequest{})
if err != nil {
return UpdateResult{}, s.classifier.classify(err)
}
return UpdateResult{
Success: resp.GetSuccess(),
ErrorMsg: resp.GetErrorMsg(),
}, nil
}
func (s *Update) GetInstallerResult(ctx context.Context) (UpdateResult, error) {
cli, err := s.conn.Client()
if err != nil {
return UpdateResult{}, err
}
resp, err := cli.GetInstallerResult(ctx, &proto.InstallerResultRequest{})
if err != nil {
return UpdateResult{}, err
}
return UpdateResult{
Success: resp.GetSuccess(),
ErrorMsg: resp.GetErrorMsg(),
}, nil
}