mirror of
https://github.com/coder/coder.git
synced 2026-06-03 13:08:25 +00:00
bddb808b25
Fixes all our Go file imports to match the preferred spec that we've _mostly_ been using. For example: ``` import ( "context" "time" "github.com/prometheus/client_golang/prometheus" "golang.org/x/xerrors" "gopkg.in/natefinch/lumberjack.v2" "cdr.dev/slog/v3" "github.com/coder/coder/v2/codersdk/agentsdk" "github.com/coder/serpent" ) ``` 3 groups: standard library, 3rd partly libs, Coder libs. This PR makes the change across the codebase. The PR in the stack above modifies our formatting to maintain this state of affairs, and is a separate PR so it's possible to review that one in detail.
91 lines
2.2 KiB
Go
91 lines
2.2 KiB
Go
package cli
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/coder/coder/v2/buildinfo"
|
|
"github.com/coder/coder/v2/cli/cliui"
|
|
"github.com/coder/pretty"
|
|
"github.com/coder/serpent"
|
|
)
|
|
|
|
// versionInfo wraps the stuff we get from buildinfo so that it's
|
|
// easier to emit in different formats.
|
|
type versionInfo struct {
|
|
Version string `json:"version"`
|
|
BuildTime time.Time `json:"build_time"`
|
|
ExternalURL string `json:"external_url"`
|
|
Slim bool `json:"slim"`
|
|
AGPL bool `json:"agpl"`
|
|
BoringCrypto bool `json:"boring_crypto"`
|
|
}
|
|
|
|
// String() implements Stringer
|
|
func (vi versionInfo) String() string {
|
|
var str strings.Builder
|
|
_, _ = str.WriteString("Coder ")
|
|
if vi.AGPL {
|
|
_, _ = str.WriteString("(AGPL) ")
|
|
}
|
|
_, _ = str.WriteString(vi.Version)
|
|
if vi.BoringCrypto {
|
|
_, _ = str.WriteString(" BoringCrypto")
|
|
}
|
|
|
|
if !vi.BuildTime.IsZero() {
|
|
_, _ = str.WriteString(" " + vi.BuildTime.Format(time.UnixDate))
|
|
}
|
|
_, _ = str.WriteString("\r\n" + vi.ExternalURL + "\r\n\r\n")
|
|
|
|
if vi.Slim {
|
|
_, _ = str.WriteString(fmt.Sprintf("Slim build of Coder, does not support the %s subcommand.", pretty.Sprint(cliui.DefaultStyles.Code, "server")))
|
|
} else {
|
|
_, _ = str.WriteString(fmt.Sprintf("Full build of Coder, supports the %s subcommand.", pretty.Sprint(cliui.DefaultStyles.Code, "server")))
|
|
}
|
|
return str.String()
|
|
}
|
|
|
|
func defaultVersionInfo() *versionInfo {
|
|
buildTime, _ := buildinfo.Time()
|
|
return &versionInfo{
|
|
Version: buildinfo.Version(),
|
|
BuildTime: buildTime,
|
|
ExternalURL: buildinfo.ExternalURL(),
|
|
Slim: buildinfo.IsSlim(),
|
|
AGPL: buildinfo.IsAGPL(),
|
|
BoringCrypto: buildinfo.IsBoringCrypto(),
|
|
}
|
|
}
|
|
|
|
// version prints the coder version
|
|
func (*RootCmd) version(versionInfo func() *versionInfo) *serpent.Command {
|
|
var (
|
|
formatter = cliui.NewOutputFormatter(
|
|
cliui.TextFormat(),
|
|
cliui.JSONFormat(),
|
|
)
|
|
vi = versionInfo()
|
|
)
|
|
|
|
cmd := &serpent.Command{
|
|
Use: "version",
|
|
Short: "Show coder version",
|
|
Options: serpent.OptionSet{},
|
|
Handler: func(inv *serpent.Invocation) error {
|
|
out, err := formatter.Format(inv.Context(), vi)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
_, err = fmt.Fprintln(inv.Stdout, out)
|
|
return err
|
|
},
|
|
}
|
|
|
|
formatter.AttachOptions(&cmd.Options)
|
|
|
|
return cmd
|
|
}
|