mirror of
https://github.com/openziti/zrok.git
synced 2024-11-07 08:44:14 +01:00
40 lines
847 B
Go
40 lines
847 B
Go
package environment
|
|
|
|
import (
|
|
"github.com/openziti/zrok/environment/env_core"
|
|
"github.com/openziti/zrok/environment/env_v0_3"
|
|
"github.com/openziti/zrok/environment/env_v0_4"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func LoadRoot() (env_core.Root, error) {
|
|
if assert, err := env_v0_4.Assert(); assert && err == nil {
|
|
return env_v0_4.Load()
|
|
} else if assert, err := env_v0_3.Assert(); assert && err == nil {
|
|
return env_v0_3.Load()
|
|
} else {
|
|
return env_v0_4.Default()
|
|
}
|
|
}
|
|
|
|
func IsLatest(r env_core.Root) bool {
|
|
if r == nil {
|
|
return false
|
|
}
|
|
if r.Metadata() == nil {
|
|
return false
|
|
}
|
|
if r.Metadata().V == env_v0_4.V {
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
func UpdateRoot(r env_core.Root) (env_core.Root, error) {
|
|
newR, err := env_v0_4.Update(r)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "unable to update environment")
|
|
}
|
|
return newR, nil
|
|
}
|