mirror of
https://github.com/openziti/zrok.git
synced 2024-11-08 09:14:28 +01:00
62 lines
1.7 KiB
Go
62 lines
1.7 KiB
Go
package zrokdir
|
|
|
|
import (
|
|
"github.com/go-openapi/runtime"
|
|
httptransport "github.com/go-openapi/runtime/client"
|
|
"github.com/go-openapi/strfmt"
|
|
"github.com/openziti/zrok/build"
|
|
"github.com/openziti/zrok/rest_client_zrok"
|
|
"github.com/pkg/errors"
|
|
"net/url"
|
|
"os"
|
|
"regexp"
|
|
)
|
|
|
|
func (zrd *ZrokDir) Client() (*rest_client_zrok.Zrok, error) {
|
|
apiEndpoint, _ := zrd.ApiEndpoint()
|
|
apiUrl, err := url.Parse(apiEndpoint)
|
|
if err != nil {
|
|
return nil, errors.Wrapf(err, "error parsing api endpoint '%v'", zrd)
|
|
}
|
|
transport := httptransport.New(apiUrl.Host, "/api/v1", []string{apiUrl.Scheme})
|
|
transport.Producers["application/zrok.v1+json"] = runtime.JSONProducer()
|
|
transport.Consumers["application/zrok.v1+json"] = runtime.JSONConsumer()
|
|
|
|
zrok := rest_client_zrok.New(transport, strfmt.Default)
|
|
v, err := zrok.Metadata.Version(nil)
|
|
if err != nil {
|
|
return nil, errors.Wrapf(err, "error getting version from api endpoint '%v': %v", apiEndpoint, err)
|
|
}
|
|
// allow reported version string to be optionally prefixed with
|
|
// "refs/heads/" or "refs/tags/"
|
|
re := regexp.MustCompile(`^(refs/(heads|tags)/)?` + build.Series)
|
|
if ! re.MatchString(string(v.Payload)) {
|
|
return nil, errors.Errorf("expected a '%v' version, received: '%v'", build.Series, v.Payload)
|
|
}
|
|
|
|
return zrok, nil
|
|
}
|
|
|
|
func (zrd *ZrokDir) ApiEndpoint() (apiEndpoint string, from string) {
|
|
apiEndpoint = "https://api.zrok.io"
|
|
from = "binary"
|
|
|
|
if zrd.Cfg != nil && zrd.Cfg.ApiEndpoint != "" {
|
|
apiEndpoint = zrd.Cfg.ApiEndpoint
|
|
from = "config"
|
|
}
|
|
|
|
env := os.Getenv("ZROK_API_ENDPOINT")
|
|
if env != "" {
|
|
apiEndpoint = env
|
|
from = "ZROK_API_ENDPOINT"
|
|
}
|
|
|
|
if zrd.Env != nil && zrd.Env.ApiEndpoint != "" {
|
|
apiEndpoint = zrd.Env.ApiEndpoint
|
|
from = "env"
|
|
}
|
|
|
|
return apiEndpoint, from
|
|
}
|