docs: document packages, exported API and non-obvious logic

This commit is contained in:
Mathis Maquenne
2026-08-06 13:04:10 +02:00
parent 5dfd832d0d
commit b1ad9b4904
41 changed files with 757 additions and 7 deletions
+26 -1
View File
@@ -14,7 +14,13 @@ import (
const noCheckEnv = "GODEEZ_NO_UPDATE_CHECK"
const (
cacheTTL = 24 * time.Hour
// cacheTTL keeps the check to roughly once a day, which is often enough
// to notice a release without hitting the GitHub API on every command.
cacheTTL = 24 * time.Hour
// checkTimeout is deliberately short. The check is a courtesy running
// alongside a download, so it gives up quickly rather than delaying
// anything the user actually asked for.
checkTimeout = 3 * time.Second
)
@@ -32,6 +38,9 @@ func cachePath() (string, error) {
return filepath.Join(dir, "godeez", "update.json"), nil
}
// readCache returns the cached result, or false if there is nothing usable.
// Every failure, including a corrupt or unreadable file, is reported the same
// way: the caller simply checks again, so there is nothing to distinguish.
func readCache() (cacheEntry, bool) {
path, err := cachePath()
if err != nil {
@@ -71,6 +80,11 @@ func writeCache(version string) error {
return os.WriteFile(path, data, 0644)
}
// check returns the latest version if it is newer than the running one, or
// "" if it is not. The cache is written even when the release turns out not
// to be newer, since the point is to record that GitHub was asked recently,
// and a failure to write it is ignored: an uncacheable check still works, it
// just repeats.
func check(ctx context.Context) (string, error) {
if entry, ok := readCache(); ok {
return latestIfNewer(entry.LatestVersion), nil
@@ -95,6 +109,17 @@ func latestIfNewer(latest string) string {
return ""
}
// StartCheck begins a background update check and returns a channel that
// yields the newer version, if there is one, and is closed either way.
//
// It runs concurrently so the check never delays the command the user ran,
// and the channel is buffered so the goroutine exits even if nobody reads the
// result. Errors are swallowed: a failed check is not something to report.
//
// The check is skipped entirely for development builds, which have no version
// to compare, and whenever GODEEZ_NO_UPDATE_CHECK is set, which is the escape
// hatch for packagers and offline use. Both cases close the channel
// immediately so callers need no special handling.
func StartCheck(ctx context.Context) <-chan string {
ch := make(chan string, 1)