mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-30 10:56:28 +02:00
123 lines
3.8 KiB
Go
123 lines
3.8 KiB
Go
// Package zero contains the pomerium zero configuration API client
|
|
package zero
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/pomerium/pomerium/pkg/fanout"
|
|
"github.com/pomerium/pomerium/pkg/zero/apierror"
|
|
cluster_api "github.com/pomerium/pomerium/pkg/zero/cluster"
|
|
connect_api "github.com/pomerium/pomerium/pkg/zero/connect"
|
|
connect_mux "github.com/pomerium/pomerium/pkg/zero/connect-mux"
|
|
token_api "github.com/pomerium/pomerium/pkg/zero/token"
|
|
)
|
|
|
|
// API is a Pomerium Zero Cluster API client
|
|
type API struct {
|
|
cfg *config
|
|
cluster cluster_api.ClientWithResponsesInterface
|
|
mux *connect_mux.Mux
|
|
downloadURLCache *cluster_api.URLCache
|
|
}
|
|
|
|
// WatchOption defines which events to watch for
|
|
type WatchOption = connect_mux.WatchOption
|
|
|
|
// NewAPI creates a new API client
|
|
func NewAPI(ctx context.Context, opts ...Option) (*API, error) {
|
|
cfg, err := newConfig(opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
fetcher, err := cluster_api.NewTokenFetcher(cfg.clusterAPIEndpoint,
|
|
cluster_api.WithHTTPClient(cfg.httpClient),
|
|
)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("error creating token fetcher: %w", err)
|
|
}
|
|
|
|
tokenCache := token_api.NewCache(fetcher, cfg.apiToken)
|
|
|
|
clusterClient, err := cluster_api.NewAuthorizedClient(cfg.clusterAPIEndpoint, tokenCache.GetToken, cfg.httpClient)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("error creating cluster client: %w", err)
|
|
}
|
|
|
|
connectClient, err := connect_api.NewAuthorizedConnectClient(ctx, cfg.connectAPIEndpoint, tokenCache.GetToken)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("error creating connect client: %w", err)
|
|
}
|
|
|
|
return &API{
|
|
cfg: cfg,
|
|
cluster: clusterClient,
|
|
mux: connect_mux.New(connectClient),
|
|
downloadURLCache: cluster_api.NewURLCache(),
|
|
}, nil
|
|
}
|
|
|
|
// Connect connects to the connect API and allows watching for changes
|
|
func (api *API) Connect(ctx context.Context, opts ...fanout.Option) error {
|
|
return api.mux.Run(ctx, opts...)
|
|
}
|
|
|
|
// Watch dispatches API updates
|
|
func (api *API) Watch(ctx context.Context, opts ...WatchOption) error {
|
|
return api.mux.Watch(ctx, opts...)
|
|
}
|
|
|
|
// GetClusterBootstrapConfig fetches the bootstrap configuration from the cluster API
|
|
func (api *API) GetClusterBootstrapConfig(ctx context.Context) (*cluster_api.BootstrapConfig, error) {
|
|
return apierror.CheckResponse[cluster_api.BootstrapConfig](
|
|
api.cluster.GetClusterBootstrapConfigWithResponse(ctx),
|
|
)
|
|
}
|
|
|
|
// GetClusterResourceBundles fetches the resource bundles from the cluster API
|
|
func (api *API) GetClusterResourceBundles(ctx context.Context) (*cluster_api.GetBundlesResponse, error) {
|
|
return apierror.CheckResponse[cluster_api.GetBundlesResponse](
|
|
api.cluster.GetClusterResourceBundlesWithResponse(ctx),
|
|
)
|
|
}
|
|
|
|
// ReportBundleAppliedSuccess reports a successful bundle application
|
|
func (api *API) ReportBundleAppliedSuccess(ctx context.Context, bundleID string, metadata map[string]string) error {
|
|
status := cluster_api.BundleStatus{
|
|
Success: &cluster_api.BundleStatusSuccess{
|
|
Metadata: metadata,
|
|
},
|
|
}
|
|
|
|
_, err := apierror.CheckResponse[cluster_api.EmptyResponse](
|
|
api.cluster.ReportClusterResourceBundleStatusWithResponse(ctx, bundleID, status),
|
|
)
|
|
if err != nil {
|
|
return fmt.Errorf("error reporting bundle status: %w", err)
|
|
}
|
|
return err
|
|
}
|
|
|
|
// ReportBundleAppliedFailure reports a failed bundle application
|
|
func (api *API) ReportBundleAppliedFailure(
|
|
ctx context.Context,
|
|
bundleID string,
|
|
source cluster_api.BundleStatusFailureSource,
|
|
err error,
|
|
) error {
|
|
status := cluster_api.BundleStatus{
|
|
Failure: &cluster_api.BundleStatusFailure{
|
|
Message: err.Error(),
|
|
Source: source,
|
|
},
|
|
}
|
|
|
|
_, err = apierror.CheckResponse[cluster_api.EmptyResponse](
|
|
api.cluster.ReportClusterResourceBundleStatusWithResponse(ctx, bundleID, status),
|
|
)
|
|
if err != nil {
|
|
return fmt.Errorf("error reporting bundle status: %w", err)
|
|
}
|
|
return err
|
|
}
|