zrok/controller/util.go

40 lines
1.0 KiB
Go
Raw Normal View History

2022-07-25 19:17:52 +02:00
package controller
import (
"crypto/rand"
2022-07-27 19:38:35 +02:00
"crypto/x509"
2022-07-25 19:17:52 +02:00
"encoding/hex"
2022-07-27 19:38:35 +02:00
"github.com/openziti/edge/rest_management_api_client"
"github.com/openziti/edge/rest_util"
2022-07-25 19:17:52 +02:00
"github.com/pkg/errors"
)
2022-07-27 19:38:35 +02:00
func edgeClient() (*rest_management_api_client.ZitiEdgeManagement, error) {
ctrlAddress := "https://linux:1280"
caCerts, err := rest_util.GetControllerWellKnownCas(ctrlAddress)
if err != nil {
return nil, err
}
caPool := x509.NewCertPool()
for _, ca := range caCerts {
caPool.AddCert(ca)
}
return rest_util.NewEdgeManagementClientWithUpdb("admin", "admin", ctrlAddress, caPool)
}
2022-07-25 19:17:52 +02:00
func generateApiToken() (string, error) {
bytes := make([]byte, 64)
if _, err := rand.Read(bytes); err != nil {
return "", errors.Wrap(err, "error generating random api token")
}
return hex.EncodeToString(bytes), nil
}
2022-07-26 22:21:49 +02:00
func randomId() (string, error) {
bytes := make([]byte, 8)
if _, err := rand.Read(bytes); err != nil {
return "", errors.Wrap(err, "error generating random identity id")
}
return hex.EncodeToString(bytes), nil
}