credentials

package
v0.9.1 Latest Latest
Warning

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

Go to latest
Published: Jul 1, 2024 License: Apache-2.0 Imports: 14 Imported by: 9

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewHelper

func NewHelper(c *config.CLIConfig, helper string) (credentials.Store, error)

Types

type Credential

type Credential struct {
	Context      string            `json:"context"`
	ToolName     string            `json:"toolName"`
	Type         CredentialType    `json:"type"`
	Env          map[string]string `json:"env"`
	ExpiresAt    *time.Time        `json:"expiresAt"`
	RefreshToken string            `json:"refreshToken"`
}

func (Credential) IsExpired added in v0.8.4

func (c Credential) IsExpired() bool

type CredentialBuilder added in v0.9.0

type CredentialBuilder interface {
	EnsureCredentialHelpers(ctx context.Context) error
}

type CredentialHelperDirs added in v0.8.2

type CredentialHelperDirs struct {
	RevisionFile, LastCheckedFile, BinDir, RepoDir string
}

func GetCredentialHelperDirs added in v0.8.2

func GetCredentialHelperDirs(cacheDir string) CredentialHelperDirs

type CredentialStore added in v0.8.2

type CredentialStore interface {
	Get(ctx context.Context, toolName string) (*Credential, bool, error)
	Add(ctx context.Context, cred Credential) error
	Remove(ctx context.Context, toolName string) error
	List(ctx context.Context) ([]Credential, error)
}

func NewStore

func NewStore(cfg *config.CLIConfig, credentialBuilder CredentialBuilder, credCtx, cacheDir string) (CredentialStore, error)

type CredentialType added in v0.8.0

type CredentialType string
const (
	CredentialTypeTool          CredentialType = "tool"
	CredentialTypeModelProvider CredentialType = "modelProvider"
	ExistingCredential                         = "GPTSCRIPT_EXISTING_CREDENTIAL"
)

type HelperStore

type HelperStore struct {
	// contains filtered or unexported fields
}

func (*HelperStore) Erase

func (h *HelperStore) Erase(serverAddress string) error

func (*HelperStore) Get

func (h *HelperStore) Get(serverAddress string) (types.AuthConfig, error)

func (*HelperStore) GetAll

func (h *HelperStore) GetAll() (map[string]types.AuthConfig, error)

func (*HelperStore) Store

func (h *HelperStore) Store(authConfig types.AuthConfig) error

type NoopStore added in v0.8.2

type NoopStore struct{}

func (NoopStore) Add added in v0.8.2

func (NoopStore) Get added in v0.8.2

func (NoopStore) List added in v0.8.2

func (s NoopStore) List(context.Context) ([]Credential, error)

func (NoopStore) Remove added in v0.8.2

func (s NoopStore) Remove(context.Context, string) error

type Store

type Store struct {
	// contains filtered or unexported fields
}

func (Store) Add

func (s Store) Add(ctx context.Context, cred Credential) error

func (Store) Get

func (s Store) Get(ctx context.Context, toolName string) (*Credential, bool, error)

func (Store) List

func (s Store) List(ctx context.Context) ([]Credential, error)

func (Store) Remove

func (s Store) Remove(ctx context.Context, toolName string) error

Jump to

Keyboard shortcuts

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