mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
3760b377b1
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6509 Co-authored-by: Aravind K P <8335904+scriptonist@users.noreply.github.com> GitOrigin-RevId: 56c534327883de52ee93eeb4a83c9329fde6ec94
59 lines
1.8 KiB
Go
59 lines
1.8 KiB
Go
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
|
|
}
|