mirror of
https://github.com/neilotoole/sq.git
synced 2024-12-19 06:01:36 +03:00
db55986980
- Support for ingest cache, download cache, and progress bars.
50 lines
1.4 KiB
Go
50 lines
1.4 KiB
Go
package jsonw
|
|
|
|
import (
|
|
"io"
|
|
|
|
"github.com/neilotoole/sq/cli/buildinfo"
|
|
"github.com/neilotoole/sq/cli/hostinfo"
|
|
"github.com/neilotoole/sq/cli/output"
|
|
)
|
|
|
|
var _ output.VersionWriter = (*versionWriter)(nil)
|
|
|
|
// versionWriter implements output.VersionWriter for JSON.
|
|
type versionWriter struct {
|
|
out io.Writer
|
|
pr *output.Printing
|
|
}
|
|
|
|
// NewVersionWriter returns a new output.VersionWriter instance
|
|
// that outputs version info in JSON.
|
|
func NewVersionWriter(out io.Writer, pr *output.Printing) output.VersionWriter {
|
|
return &versionWriter{out: out, pr: pr}
|
|
}
|
|
|
|
// Version implements output.VersionWriter.
|
|
func (w *versionWriter) Version(bi buildinfo.Info, latestVersion string, hi hostinfo.Info) error {
|
|
// We use a custom struct so that we can
|
|
// control the timestamp format.
|
|
type cliBuildInfo struct {
|
|
Version string `json:"version" yaml:"version"`
|
|
Commit string `json:"commit,omitempty" yaml:"commit,omitempty"`
|
|
Timestamp string `json:"timestamp,omitempty" yaml:"timestamp,omitempty"`
|
|
LatestVersion string `json:"latest_version"`
|
|
Host hostinfo.Info `json:"host"`
|
|
}
|
|
|
|
cbi := cliBuildInfo{
|
|
Version: bi.Version,
|
|
Commit: bi.Commit,
|
|
LatestVersion: latestVersion,
|
|
Host: hi,
|
|
}
|
|
|
|
if !bi.Timestamp.IsZero() {
|
|
cbi.Timestamp = w.pr.FormatDatetime(bi.Timestamp)
|
|
}
|
|
|
|
return writeJSON(w.out, w.pr, cbi)
|
|
}
|