mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-02-20 01:28:45 +01:00
83 lines
2.3 KiB
Go
83 lines
2.3 KiB
Go
package version
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/golang/protobuf/ptypes/empty"
|
|
"github.com/google/go-jsonnet"
|
|
|
|
"github.com/argoproj/argo-cd/v3/common"
|
|
"github.com/argoproj/argo-cd/v3/pkg/apiclient/version"
|
|
"github.com/argoproj/argo-cd/v3/server/settings"
|
|
"github.com/argoproj/argo-cd/v3/util/helm"
|
|
"github.com/argoproj/argo-cd/v3/util/kustomize"
|
|
sessionmgr "github.com/argoproj/argo-cd/v3/util/session"
|
|
)
|
|
|
|
type Server struct {
|
|
kustomizeVersion string
|
|
helmVersion string
|
|
jsonnetVersion string
|
|
authenticator settings.Authenticator
|
|
disableAuth func() (bool, error)
|
|
}
|
|
|
|
func NewServer(authenticator settings.Authenticator, disableAuth func() (bool, error)) *Server {
|
|
return &Server{authenticator: authenticator, disableAuth: disableAuth}
|
|
}
|
|
|
|
// Version returns the version of the API server
|
|
func (s *Server) Version(ctx context.Context, _ *empty.Empty) (*version.VersionMessage, error) {
|
|
vers := common.GetVersion()
|
|
disableAuth, err := s.disableAuth()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if !sessionmgr.LoggedIn(ctx) && !disableAuth {
|
|
return &version.VersionMessage{Version: vers.Version}, nil
|
|
}
|
|
|
|
if s.kustomizeVersion == "" {
|
|
kustomizeVersion, err := kustomize.Version()
|
|
if err == nil {
|
|
s.kustomizeVersion = kustomizeVersion
|
|
} else {
|
|
s.kustomizeVersion = err.Error()
|
|
}
|
|
}
|
|
if s.helmVersion == "" {
|
|
helmVersion, err := helm.Version()
|
|
if err == nil {
|
|
s.helmVersion = helmVersion
|
|
} else {
|
|
s.helmVersion = err.Error()
|
|
}
|
|
}
|
|
s.jsonnetVersion = jsonnet.Version()
|
|
return &version.VersionMessage{
|
|
Version: vers.Version,
|
|
BuildDate: vers.BuildDate,
|
|
GitCommit: vers.GitCommit,
|
|
GitTag: vers.GitTag,
|
|
GitTreeState: vers.GitTreeState,
|
|
GoVersion: vers.GoVersion,
|
|
Compiler: vers.Compiler,
|
|
Platform: vers.Platform,
|
|
KustomizeVersion: s.kustomizeVersion,
|
|
HelmVersion: s.helmVersion,
|
|
JsonnetVersion: s.jsonnetVersion,
|
|
KubectlVersion: vers.KubectlVersion,
|
|
ExtraBuildInfo: vers.ExtraBuildInfo,
|
|
}, nil
|
|
}
|
|
|
|
// AuthFuncOverride allows the version to be returned without auth
|
|
func (s *Server) AuthFuncOverride(ctx context.Context, _ string) (context.Context, error) {
|
|
if s.authenticator != nil {
|
|
// this authenticates the user, but ignores any error, so that we have claims populated
|
|
ctx, _ = s.authenticator.Authenticate(ctx)
|
|
}
|
|
return ctx, nil
|
|
}
|