sq/cli/output/jsonw/versionwriter.go
Neil O'Toole ed9aa38a67
Improvements to source commands (#139)
* Expose source.Set.Data() method

* jsonw.writeJSON cleaned up

* sq add now respects --json

* Location strings are subject to more scrutiny

* Ignore .db files in project dir

* sq add is more restrictive about location string

* source.RedactedLocation now uses 'xxxxx' per stdlib url.URL.Redacted()

* Update changelog for v0.23.0

* typos
2022-12-31 20:17:44 -07:00

37 lines
831 B
Go

package jsonw
import (
"io"
"github.com/neilotoole/sq/cli/buildinfo"
"github.com/neilotoole/sq/cli/output"
)
var _ output.VersionWriter = (*versionWriter)(nil)
// versionWriter implements output.VersionWriter for JSON.
type versionWriter struct {
out io.Writer
fm *output.Formatting
}
// NewVersionWriter returns a new output.VersionWriter instance
// that outputs version info in JSON.
func NewVersionWriter(out io.Writer, fm *output.Formatting) output.VersionWriter {
return &versionWriter{out: out, fm: fm}
}
func (w *versionWriter) Version(info buildinfo.BuildInfo, latestVersion string) error {
type cliBuildInfo struct {
buildinfo.BuildInfo
LatestVersion string `json:"latest_version"`
}
bi := cliBuildInfo{
BuildInfo: info,
LatestVersion: latestVersion,
}
return writeJSON(w.out, w.fm, bi)
}