clientutil

package
v0.1.15 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 3, 2025 License: MIT Imports: 11 Imported by: 0

Documentation

Overview

Package clientutil provides some util functions to set client

Index

Constants

View Source
const (
	// TokenPrefix is the prefix used for cached tokens in the file system.
	TokenPrefix = "token"

	// BearerTokenKey is the key used to store the bearer token in the file cache.
	BearerTokenKey = "bearer"
)

Variables

View Source
var (
	// ErrUnauthorized is returned when the client is unauthorized.
	ErrUnauthorized = errors.New("unauthorized")
)

Functions

func NewAuthedClient

func NewAuthedClient(
	config *config.GlobalConfig,
) (*client.Client, error)

NewAuthedClient creates a new authenticated OpAMP client using the cached bearer token. It retrieves the token from the file cache and initializes the client with it.

func NewAuthedClientByIssuingTokenInCli

func NewAuthedClientByIssuingTokenInCli(
	conf *config.GlobalConfig,
) (*client.Client, error)

NewAuthedClientByIssuingTokenInCli creates a new authenticated OpAMP client by issuing a token in the CLI. It supports different authentication methods such as basic auth, manual token input, and GitHub device.

func NewClient

func NewClient(
	config *config.GlobalConfig,
) (*client.Client, error)

NewClient creates a new authenticated Client.

func TokenPath

func TokenPath(username string) string

TokenPath constructs the file path for the cached token of a specific user.

Types

type UnsupportedAuthMethodError

type UnsupportedAuthMethodError struct {
	Method string
}

UnsupportedAuthMethodError represents an error for unsupported authentication methods.

func (*UnsupportedAuthMethodError) Error

Error implements the error interface for UnsupportedAuthMethodError.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL