summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-11-07 01:55:47 -0600
committerJeff Carr <[email protected]>2024-11-07 01:55:47 -0600
commitdc233d329fffa38904d2d6dbed9d4e7b64ecbc65 (patch)
tree4549fc056c44e98788a924236fe5f07160b2ca75
parent8dea9ab921fdca434c6a47908d20488621eb820f (diff)
old ideas for this
Signed-off-by: Jeff Carr <[email protected]>
-rw-r--r--goList.go114
1 files changed, 114 insertions, 0 deletions
diff --git a/goList.go b/goList.go
new file mode 100644
index 0000000..96ce6f5
--- /dev/null
+++ b/goList.go
@@ -0,0 +1,114 @@
+package repostatus
+
+import (
+ "encoding/json"
+ "time"
+
+ "go.wit.com/lib/gui/shell"
+ "go.wit.com/log"
+)
+
+// go list -json -m go.wit.com/apps/go-clone@latest
+
+// go list -json -m go.wit.com/apps/go-clone@latest
+// {
+// "Path": "go.wit.com/apps/go-clone",
+// "Version": "v0.0.6",
+// "Query": "latest",
+// "Time": "2024-03-10T04:12:15Z",
+// "GoMod": "/home/jcarr/go/pkg/mod/cache/download/go.wit.com/apps/go-clone/@v/v0.0.6.mod",
+// "GoVersion": "1.22.0"
+// }
+
+type Module struct {
+ Path string // module path
+ Query string // version query corresponding to this version
+ Version string // module version
+ Versions []string // available module versions
+ Replace *Module // replaced by this module
+ Time *time.Time // time version was created
+ Update *Module // available update (with -u)
+ Main bool // is this the main module?
+ Indirect bool // module is only indirectly needed by main module
+ Dir string // directory holding local copy of files, if any
+ GoMod string // path to go.mod file describing module, if any
+ GoVersion string // go version used in module
+ Retracted []string // retraction information, if any (with -retracted or -u)
+ Deprecated string // deprecation message, if any (with -u)
+ Error *ModuleError // error loading module
+ Sum string // checksum for path, version (as in go.sum)
+ GoModSum string // checksum for go.mod (as in go.sum)
+ Reuse bool // reuse of old module info is safe
+ Origin Origin
+}
+
+type ModuleError struct {
+ Err string // the error itself
+}
+
+// An Origin describes the provenance of a given repo method result.
+// It can be passed to CheckReuse (usually in a different go command invocation)
+// to see whether the result remains up-to-date.
+type Origin struct {
+ VCS string `json:",omitempty"` // "git" etc
+ URL string `json:",omitempty"` // URL of repository
+ Subdir string `json:",omitempty"` // subdirectory in repo
+
+ Hash string `json:",omitempty"` // commit hash or ID
+
+ // If TagSum is non-empty, then the resolution of this module version
+ // depends on the set of tags present in the repo, specifically the tags
+ // of the form TagPrefix + a valid semver version.
+ // If the matching repo tags and their commit hashes still hash to TagSum,
+ // the Origin is still valid (at least as far as the tags are concerned).
+ // The exact checksum is up to the Repo implementation; see (*gitRepo).Tags.
+ TagPrefix string `json:",omitempty"`
+ TagSum string `json:",omitempty"`
+
+ // If Ref is non-empty, then the resolution of this module version
+ // depends on Ref resolving to the revision identified by Hash.
+ // If Ref still resolves to Hash, the Origin is still valid (at least as far as Ref is concerned).
+ // For Git, the Ref is a full ref like "refs/heads/main" or "refs/tags/v1.2.3",
+ // and the Hash is the Git object hash the ref maps to.
+ // Other VCS might choose differently, but the idea is that Ref is the name
+ // with a mutable meaning while Hash is a name with an immutable meaning.
+ Ref string `json:",omitempty"`
+
+ // If RepoSum is non-empty, then the resolution of this module version
+ // failed due to the repo being available but the version not being present.
+ // This depends on the entire state of the repo, which RepoSum summarizes.
+ // For Git, this is a hash of all the refs and their hashes.
+ RepoSum string `json:",omitempty"`
+}
+
+// A Tags describes the available tags in a code repository.
+
+func runGoList(url string) (string, error) {
+ ver, err := getLatestVersion(url)
+ if err != nil {
+ return "", err
+ }
+ r := shell.Output("", []string{"go", "list", "-json", "-m", url + "@" + ver})
+ var modInfo Module
+ err = json.Unmarshal(r.Output, &modInfo)
+ if err != nil {
+ log.Info("runGoList() r.Output =", string(r.Output))
+ log.Info("runGoList() json.Unmarshal() error =", err)
+ return "", err
+ }
+ log.Info("runGoList() Output.Origin.URL =", modInfo.Origin.URL)
+ return modInfo.Origin.URL, err
+}
+
+func getLatestVersion(url string) (string, error) {
+ r := shell.Output("", []string{"go", "list", "-json", "-m", url + "@latest"})
+ var modInfo Module
+ err := json.Unmarshal(r.Output, &modInfo)
+ if err != nil {
+ log.Info("runGoList() r.Output =", string(r.Output))
+ log.Info("runGoList() json.Unmarshal() error =", err)
+ return "", err
+ }
+ log.Info("runGoList() Output.Version =", modInfo.Version)
+ return modInfo.Version, err
+}