mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-22 04:55:33 +03:00
bb80a7c215
Updates #5270.
Updates #5373.
Squashed commit of the following:
commit ad4654fa63beac13c4fbb38aa8fd06eaec25cb5e
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Mon Feb 27 17:00:28 2023 +0300
updater: imp docs
commit c3482766df6b831eae529e209ea7fa0a87f1b417
Merge: 1cbee78b 386add03
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Mon Feb 27 16:59:13 2023 +0300
Merge branch 'master' into 5373-mips-autoupdate
commit 1cbee78b94914c7d72c837cd2fad96a50ac2c30a
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Mon Feb 27 11:57:28 2023 +0300
all: fix autoupdate on mips*
146 lines
4 KiB
Go
146 lines
4 KiB
Go
package updater
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
"time"
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/aghalg"
|
|
"github.com/AdguardTeam/AdGuardHome/internal/aghio"
|
|
"github.com/AdguardTeam/golibs/errors"
|
|
"github.com/AdguardTeam/golibs/log"
|
|
"golang.org/x/exp/maps"
|
|
"golang.org/x/exp/slices"
|
|
)
|
|
|
|
// TODO(a.garipov): Make configurable.
|
|
const versionCheckPeriod = 8 * time.Hour
|
|
|
|
// VersionInfo contains information about a new version.
|
|
type VersionInfo struct {
|
|
NewVersion string `json:"new_version,omitempty"`
|
|
Announcement string `json:"announcement,omitempty"`
|
|
AnnouncementURL string `json:"announcement_url,omitempty"`
|
|
// TODO(a.garipov): See if the frontend actually still cares about
|
|
// nullability.
|
|
CanAutoUpdate aghalg.NullBool `json:"can_autoupdate,omitempty"`
|
|
}
|
|
|
|
// MaxResponseSize is responses on server's requests maximum length in bytes.
|
|
const MaxResponseSize = 64 * 1024
|
|
|
|
// VersionInfo downloads the latest version information. If forceRecheck is
|
|
// false and there are cached results, those results are returned.
|
|
func (u *Updater) VersionInfo(forceRecheck bool) (vi VersionInfo, err error) {
|
|
u.mu.Lock()
|
|
defer u.mu.Unlock()
|
|
|
|
now := time.Now()
|
|
recheckTime := u.prevCheckTime.Add(versionCheckPeriod)
|
|
if !forceRecheck && now.Before(recheckTime) {
|
|
return u.prevCheckResult, u.prevCheckError
|
|
}
|
|
|
|
var resp *http.Response
|
|
vcu := u.versionCheckURL
|
|
resp, err = u.client.Get(vcu)
|
|
if err != nil {
|
|
return VersionInfo{}, fmt.Errorf("updater: HTTP GET %s: %w", vcu, err)
|
|
}
|
|
defer func() { err = errors.WithDeferred(err, resp.Body.Close()) }()
|
|
|
|
var r io.Reader
|
|
r, err = aghio.LimitReader(resp.Body, MaxResponseSize)
|
|
if err != nil {
|
|
return VersionInfo{}, fmt.Errorf("updater: LimitReadCloser: %w", err)
|
|
}
|
|
|
|
// This use of ReadAll is safe, because we just limited the appropriate
|
|
// ReadCloser.
|
|
body, err := io.ReadAll(r)
|
|
if err != nil {
|
|
return VersionInfo{}, fmt.Errorf("updater: HTTP GET %s: %w", vcu, err)
|
|
}
|
|
|
|
u.prevCheckTime = now
|
|
u.prevCheckResult, u.prevCheckError = u.parseVersionResponse(body)
|
|
|
|
return u.prevCheckResult, u.prevCheckError
|
|
}
|
|
|
|
func (u *Updater) parseVersionResponse(data []byte) (VersionInfo, error) {
|
|
info := VersionInfo{
|
|
CanAutoUpdate: aghalg.NBFalse,
|
|
}
|
|
versionJSON := map[string]string{
|
|
"version": "",
|
|
"announcement": "",
|
|
"announcement_url": "",
|
|
}
|
|
err := json.Unmarshal(data, &versionJSON)
|
|
if err != nil {
|
|
return info, fmt.Errorf("version.json: %w", err)
|
|
}
|
|
|
|
for k, v := range versionJSON {
|
|
if v == "" {
|
|
return info, fmt.Errorf("version.json: bad data: value for key %q is empty", k)
|
|
}
|
|
}
|
|
|
|
info.NewVersion = versionJSON["version"]
|
|
info.Announcement = versionJSON["announcement"]
|
|
info.AnnouncementURL = versionJSON["announcement_url"]
|
|
|
|
packageURL, key, found := u.downloadURL(versionJSON)
|
|
if !found {
|
|
return info, fmt.Errorf("version.json: no package URL: key %q not found in object", key)
|
|
}
|
|
|
|
info.CanAutoUpdate = aghalg.BoolToNullBool(info.NewVersion != u.version)
|
|
|
|
u.newVersion = info.NewVersion
|
|
u.packageURL = packageURL
|
|
|
|
return info, nil
|
|
}
|
|
|
|
// downloadURL returns the download URL for current build as well as its key in
|
|
// versionObj. If the key is not found, it additionally prints an informative
|
|
// log message.
|
|
func (u *Updater) downloadURL(versionObj map[string]string) (dlURL, key string, ok bool) {
|
|
if u.goarch == "arm" && u.goarm != "" {
|
|
key = fmt.Sprintf("download_%s_%sv%s", u.goos, u.goarch, u.goarm)
|
|
} else if isMIPS(u.goarch) && u.gomips != "" {
|
|
key = fmt.Sprintf("download_%s_%s_%s", u.goos, u.goarch, u.gomips)
|
|
} else {
|
|
key = fmt.Sprintf("download_%s_%s", u.goos, u.goarch)
|
|
}
|
|
|
|
dlURL, ok = versionObj[key]
|
|
if ok {
|
|
return dlURL, key, true
|
|
}
|
|
|
|
keys := maps.Keys(versionObj)
|
|
slices.Sort(keys)
|
|
log.Error("updater: key %q not found; got keys %q", key, keys)
|
|
|
|
return "", key, false
|
|
}
|
|
|
|
// isMIPS returns true if arch is any MIPS architecture.
|
|
func isMIPS(arch string) (ok bool) {
|
|
switch arch {
|
|
case
|
|
"mips",
|
|
"mips64",
|
|
"mips64le",
|
|
"mipsle":
|
|
return true
|
|
default:
|
|
return false
|
|
}
|
|
}
|