summaryrefslogtreecommitdiff
path: root/goList.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-11-30 02:03:17 -0600
committerJeff Carr <[email protected]>2024-11-30 02:03:17 -0600
commitd5c394d3c3894a141d5848483102433a30e1a2db (patch)
tree252fc97264e943f17168c0866215237fdcbb0fc3 /goList.go
parentb52c3c426af45ae45ee5d862834c9353bb0e5fb5 (diff)
moving things to protobufv0.22.22v0.22.21
Diffstat (limited to 'goList.go')
-rw-r--r--goList.go117
1 files changed, 0 insertions, 117 deletions
diff --git a/goList.go b/goList.go
deleted file mode 100644
index bc30e78..0000000
--- a/goList.go
+++ /dev/null
@@ -1,117 +0,0 @@
-package repostatus
-
-import (
- "encoding/json"
- "strings"
- "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.Run([]string{"go", "list", "-json", "-m", url + "@" + ver})
- var modInfo Module
- out := strings.Join(r.Stdout, "\n")
- err = json.Unmarshal([]byte(out), &modInfo)
- if err != nil {
- log.Info("runGoList() r.Output =", out)
- 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.Run([]string{"go", "list", "-json", "-m", url + "@latest"})
- var modInfo Module
- out := strings.Join(r.Stdout, "\n")
- err := json.Unmarshal([]byte(out), &modInfo)
- if err != nil {
- log.Info("runGoList() r.Output =", out)
- log.Info("runGoList() json.Unmarshal() error =", err)
- return "", err
- }
- log.Info("runGoList() Output.Version =", modInfo.Version)
- return modInfo.Version, err
-}