graphql-engine/cli/version/feature_flags.go

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

59 lines
1.8 KiB
Go
Raw Normal View History

package version
import (
"fmt"
"github.com/Masterminds/semver"
"github.com/hasura/graphql-engine/cli/v2/internal/errors"
)
// ServerFeatureFlags indicates what features are supported by this
// version of server.
type ServerFeatureFlags struct {
HasAccessKey bool
HasAction bool
HasCronTriggers bool
}
const adminSecretVersion = "v1.0.0-alpha38"
const actionVersion = "v1.2.0-beta.1"
const cronTriggersVersion = "v1.3.0-beta.1"
// GetServerFeatureFlags returns the feature flags for server.
func (v *Version) GetServerFeatureFlags() error {
var op errors.Op = "version.GetServerFeatureFlags"
flags := &ServerFeatureFlags{}
if v.ServerSemver == nil {
flags.HasAccessKey = false
flags.HasAction = true
} else {
// create a constraint to check if the current server version has admin secret
adminSecretConstraint, err := semver.NewConstraint("< " + adminSecretVersion)
if err != nil {
return errors.E(op, fmt.Errorf("building admin secret constraint failed: %w", err))
}
// check the current version with the constraint
flags.HasAccessKey = adminSecretConstraint.Check(v.ServerSemver)
// create a constraint to check if the current server version has actions
actionConstraint, err := semver.NewConstraint(">= " + actionVersion)
if err != nil {
return errors.E(op, fmt.Errorf("building action constraint failed: %w", err))
}
// check the current version with the constraint
flags.HasAction = actionConstraint.Check(v.ServerSemver)
// cronTriggers Constraint
cronTriggersConstraint, err := semver.NewConstraint(">= " + cronTriggersVersion)
if err != nil {
return errors.E(op, fmt.Errorf("building cron triggers constraint failed: %w", err))
}
// check the current version with the constraint
flags.HasCronTriggers = cronTriggersConstraint.Check(v.ServerSemver)
}
v.ServerFeatureFlags = flags
return nil
}