configv3

package
v6.28.0+incompatible Latest Latest
Warning

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

Go to latest
Published: Jun 27, 2017 License: Apache-2.0 Imports: 14 Imported by: 0

Documentation

Overview

Package configv3 package contains everything related to the CF CLI Configuration.

Index

Constants

View Source
const (
	// DefaultDialTimeout is the default timeout for the dail.
	DefaultDialTimeout = 5 * time.Second

	// DefaultOverallPollingTimeout is the default maximum time that the CLI will
	// poll a job running on the Cloud Controller. By default it's infinit, which
	// is represented by MaxInt64.
	DefaultOverallPollingTimeout = time.Duration(1 << 62)

	// DefaultPollingInterval is the time between consecutive polls of a status.
	DefaultPollingInterval = 3 * time.Second

	// DefaultStagingTimeout is the default timeout for application staging.
	DefaultStagingTimeout = 15 * time.Minute

	// DefaultStartupTimeout is the default timeout for application starting.
	DefaultStartupTimeout = 5 * time.Minute

	// DefaultTarget is the default CFConfig value for Target.
	DefaultTarget = ""

	// DefaultUAAOAuthClient is the default client ID for the CLI when
	// communicating with the UAA.
	DefaultUAAOAuthClient = "cf"

	// DefaultCFOClientSecret is the default client secret for the CLI when
	// communicating with the UAA.
	DefaultUAAOAuthClientSecret = ""
)
View Source
const (
	// DefaultPluginRepoName is the name of the preinstalled plugin repository.
	DefaultPluginRepoName = "CF-Community"

	// DefaultPluginRepoURL is the URL of the preinstalled plugin repository.
	DefaultPluginRepoURL = "https://plugins.cloudfoundry.org"
)
View Source
const (
	// DefaultLocale is the default CFConfig value for Locale.
	DefaultLocale = ""
)

Variables

This section is empty.

Functions

func ConfigFilePath

func ConfigFilePath() string

ConfigFilePath returns the location of the config file

func WriteConfig

func WriteConfig(c *Config) error

WriteConfig creates the .cf directory and then writes the config.json. The location of .cf directory is written in the same way LoadConfig reads .cf directory.

Types

type CFConfig

type CFConfig struct {
	ConfigVersion            int                `json:"ConfigVersion"`
	Target                   string             `json:"Target"`
	APIVersion               string             `json:"APIVersion"`
	AuthorizationEndpoint    string             `json:"AuthorizationEndpoint"`
	DopplerEndpoint          string             `json:"DopplerEndPoint"`
	UAAEndpoint              string             `json:"UaaEndpoint"`
	RoutingEndpoint          string             `json:"RoutingAPIEndpoint"`
	AccessToken              string             `json:"AccessToken"`
	SSHOAuthClient           string             `json:"SSHOAuthClient"`
	UAAOAuthClient           string             `json:"UAAOAuthClient"`
	UAAOAuthClientSecret     string             `json:"UAAOAuthClientSecret"`
	RefreshToken             string             `json:"RefreshToken"`
	TargetedOrganization     Organization       `json:"OrganizationFields"`
	TargetedSpace            Space              `json:"SpaceFields"`
	SkipSSLValidation        bool               `json:"SSLDisabled"`
	AsyncTimeout             int                `json:"AsyncTimeout"`
	Trace                    string             `json:"Trace"`
	ColorEnabled             string             `json:"ColorEnabled"`
	Locale                   string             `json:"Locale"`
	PluginRepositories       []PluginRepository `json:"PluginRepos"`
	MinCLIVersion            string             `json:"MinCLIVersion"`
	MinRecommendedCLIVersion string             `json:"MinRecommendedCLIVersion"`
}

CFConfig represents .cf/config.json

type ColorSetting

type ColorSetting int

ColorSetting is a trinary operator that represents if the display should have colors enabled, disabled, or automatically detected.

const (
	// DefaultColorEnabled is the default CFConfig value for ColorEnabled.
	DefaultColorEnabled = ""

	// ColorDisabled means that no colors/bolding will be displayed.
	ColorDisabled ColorSetting = iota

	// ColorEnabled means colors/bolding will be displayed.
	ColorEnabled

	// ColorAuto means that the UI should decide if colors/bolding will be
	// enabled.
	ColorAuto
)

type Config

type Config struct {
	// ConfigFile stores the configuration from the .cf/config
	ConfigFile CFConfig

	// ENV stores the configuration from os.ENV
	ENV EnvOverride

	// Flags stores the configuration from gobal flags
	Flags FlagOverride
	// contains filtered or unexported fields
}

Config combines the settings taken from the .cf/config.json, os.ENV, and the plugin config.

func LoadConfig

func LoadConfig(flags ...FlagOverride) (*Config, error)

LoadConfig loads the config from the .cf/config.json and os.ENV. If the config.json does not exists, it will use a default config in it's place. Takes in an optional FlagOverride, will only use the first one passed, that can override the given flag values.

The '.cf' directory will be read in one of the following locations on UNIX Systems:

  1. $CF_HOME/.cf if $CF_HOME is set
  2. $HOME/.cf as the default

The '.cf' directory will be read in one of the following locations on Windows Systems:

  1. CF_HOME\.cf if CF_HOME is set
  2. HOMEDRIVE\HOMEPATH\.cf if HOMEDRIVE or HOMEPATH is set
  3. USERPROFILE\.cf as the default

func (*Config) APIVersion

func (config *Config) APIVersion() string

APIVersion returns the CC API Version

func (*Config) AccessToken

func (config *Config) AccessToken() string

AccessToken returns the access token for making authenticated API calls

func (*Config) AddPlugin

func (config *Config) AddPlugin(plugin Plugin)

AddPlugin adds the specified plugin to PluginsConfig

func (*Config) AddPluginRepository

func (config *Config) AddPluginRepository(name string, url string)

does not add duplicates to the config

func (*Config) BinaryName

func (config *Config) BinaryName() string

BinaryName returns the running name of the CF CLI

func (*Config) BinaryVersion

func (config *Config) BinaryVersion() string

func (*Config) ColorEnabled

func (config *Config) ColorEnabled() ColorSetting

ColorEnabled returns the color setting based off:

  1. The $CF_COLOR environment variable if set (0/1/t/f/true/false)
  2. The 'ColorEnabled' value in the .cf/config.json if set
  3. Defaults to ColorEnabled if nothing is set

func (*Config) CurrentUser

func (config *Config) CurrentUser() (User, error)

CurrentUser returns user information decoded from the JWT access token in .cf/config.json

func (*Config) DialTimeout

func (config *Config) DialTimeout() time.Duration

DialTimeout returns the timeout to use when dialing. This is based off of:

  1. The $CF_DIAL_TIMEOUT environment variable if set
  2. Defaults to 5 seconds

func (*Config) Experimental

func (config *Config) Experimental() bool

Experimental returns whether or not to run experimental CLI commands. This is based off of:

  1. The $CF_CLI_EXPERIMENTAL environment variable if set
  2. Defaults to false

func (*Config) GetPlugin

func (config *Config) GetPlugin(pluginName string) (Plugin, bool)

GetPlugin returns the requested plugin and true if it exists.

func (*Config) GetPluginCaseInsensitive

func (config *Config) GetPluginCaseInsensitive(pluginName string) (Plugin, bool)

GetPluginCaseInsensitive finds the first matching plugin name case insensitive and returns true if it exists.

func (*Config) HTTPSProxy

func (config *Config) HTTPSProxy() string

HTTPSProxy returns the proxy url that the CLI should use. The url is based off of:

  1. The $https_proxy environment variable if set
  2. Defaults to the empty string

func (*Config) HasTargetedOrganization

func (config *Config) HasTargetedOrganization() bool

HasTargetedOrganization returns true if the organization is set

func (*Config) HasTargetedSpace

func (config *Config) HasTargetedSpace() bool

HasTargetedSpace returns true if the space is set

func (*Config) IsTTY

func (config *Config) IsTTY() bool

IsTTY returns true based off of:

  • The $FORCE_TTY is set to true/t/1
  • Detected from the STDOUT stream

func (*Config) Locale

func (config *Config) Locale() string

Locale returns the locale/language the UI should be displayed in. This value is based off of:

  1. The 'Locale' setting in the .cf/config.json
  2. The $LC_ALL environment variable if set
  3. The $LANG environment variable if set
  4. Defaults to DefaultLocale

func (*Config) LogLevel

func (config *Config) LogLevel() int

LogLevel returns the global log level. The levels follow Logrus's log level scheme. This value is based off of:

  • The $CF_LOG_LEVEL and an int/warn/info/etc...
  • Defaults to PANIC/0 (ie no logging)

func (*Config) MinCLIVersion

func (config *Config) MinCLIVersion() string

MinCLIVersion returns the minimum CLI version requried by the CC

func (*Config) OverallPollingTimeout

func (config *Config) OverallPollingTimeout() time.Duration

OverallPollingTimeout returns the overall polling timeout for async operations. The time is based off of:

  1. The config file's AsyncTimeout value (integer) is > 0
  2. Defaults to the DefaultOverallPollingTimeout

func (*Config) PluginHome

func (config *Config) PluginHome() string

PluginHome returns the plugin configuration directory to:

  1. The $CF_PLUGIN_HOME/.cf/plugins environment variable if set
  2. Defaults to the home directory (outlined in LoadConfig)/.cf/plugins

func (*Config) PluginRepositories

func (config *Config) PluginRepositories() []PluginRepository

PluginRepositories returns the currently configured plugin repositories from the .cf/config.json

func (*Config) Plugins

func (config *Config) Plugins() []Plugin

Plugins returns installed plugins from the config sorted by name (case-insensitive).

func (*Config) PollingInterval

func (config *Config) PollingInterval() time.Duration

PollingInterval returns the time between polls.

func (*Config) RefreshToken

func (config *Config) RefreshToken() string

RefreshToken returns the refresh token for getting a new access token

func (*Config) RemovePlugin

func (config *Config) RemovePlugin(pluginName string)

RemovePlugin removes the specified plugin from PluginsConfig idempotently

func (*Config) SetAccessToken

func (config *Config) SetAccessToken(accessToken string)

SetAccessToken sets the current access token

func (*Config) SetOrganizationInformation

func (config *Config) SetOrganizationInformation(guid string, name string)

SetOrganizationInformation sets the currently targeted organization

func (*Config) SetRefreshToken

func (config *Config) SetRefreshToken(refreshToken string)

SetRefreshToken sets the current refresh token

func (*Config) SetSpaceInformation

func (config *Config) SetSpaceInformation(guid string, name string, allowSSH bool)

SetSpaceInformation sets the currently targeted space

func (*Config) SetTargetInformation

func (config *Config) SetTargetInformation(api string, apiVersion string, auth string, minCLIVersion string, doppler string, uaa string, routing string, skipSSLValidation bool)

SetTargetInformation sets the currently targeted CC API and related other related API URLs

func (*Config) SetTokenInformation

func (config *Config) SetTokenInformation(accessToken string, refreshToken string, sshOAuthClient string)

SetTokenInformation sets the current token/user information

func (*Config) SkipSSLValidation

func (config *Config) SkipSSLValidation() bool

SkipSSLValidation returns whether or not to skip SSL validation when targeting an API endpoint

func (*Config) StagingTimeout

func (config *Config) StagingTimeout() time.Duration

StagingTimeout returns the max time an application staging should take. The time is based off of:

  1. The $CF_STAGING_TIMEOUT environment variable if set
  2. Defaults to the DefaultStagingTimeout

func (*Config) StartupTimeout

func (config *Config) StartupTimeout() time.Duration

StartupTimeout returns the max time an application should take to start. The time is based off of:

  1. The $CF_STARTUP_TIMEOUT environment variable if set
  2. Defaults to the DefaultStartupTimeout

func (*Config) Target

func (config *Config) Target() string

Target returns the CC API URL

func (*Config) TargetedOrganization

func (config *Config) TargetedOrganization() Organization

TargetedOrganization returns the currently targeted organization

func (*Config) TargetedSpace

func (config *Config) TargetedSpace() Space

TargetedSpace returns the currently targeted space

func (*Config) TerminalWidth

func (config *Config) TerminalWidth() int

TerminalWidth returns the width of the terminal from when the config was loaded. If the terminal width has changed since the config has loaded, it will **not** return the new width.

func (*Config) UAAOAuthClient

func (config *Config) UAAOAuthClient() string

UAAOAuthClient returns the CLI's UAA client ID

func (*Config) UAAOAuthClientSecret

func (config *Config) UAAOAuthClientSecret() string

UAAOAuthClientSecret returns the CLI's UAA client secret

func (*Config) UnsetOrganizationInformation

func (config *Config) UnsetOrganizationInformation()

UnsetOrganizationInformation resets the organization values to default

func (*Config) UnsetSpaceInformation

func (config *Config) UnsetSpaceInformation()

UnsetSpaceInformation resets the space values to default

func (*Config) Verbose

func (config *Config) Verbose() (bool, []string)

Verbose returns true if verbose should be displayed to terminal and a location to log to. This is based off of:

  • The config file's trace value (true/false/file path)
  • The $CF_TRACE enviroment variable if set (true/false/file path)
  • The '-v/--verbose' global flag
  • Defaults to false

func (*Config) WritePluginConfig

func (config *Config) WritePluginConfig() error

WritePluginConfig writes the plugin config to config.json in the plugin home directory.

type EnvOverride

type EnvOverride struct {
	BinaryName       string
	CFColor          string
	CFHome           string
	CFPluginHome     string
	CFStagingTimeout string
	CFStartupTimeout string
	CFTrace          string
	HTTPSProxy       string
	Lang             string
	LCAll            string
	Experimental     string
	CFDialTimeout    string
	ForceTTY         string
	CFLogLevel       string
}

EnvOverride represents all the environment variables read by the CF CLI

type FlagOverride

type FlagOverride struct {
	Verbose bool
}

FlagOverride represents all the global flags passed to the CF CLI

type Organization

type Organization struct {
	GUID            string          `json:"GUID"`
	Name            string          `json:"Name"`
	QuotaDefinition QuotaDefinition `json:"QuotaDefinition"`
}

Organization contains basic information about the targeted organization

type Plugin

type Plugin struct {
	Name     string
	Location string          `json:"Location"`
	Version  PluginVersion   `json:"Version"`
	Commands []PluginCommand `json:"Commands"`
}

Plugin represents the plugin as a whole, not be confused with PluginCommand

func (Plugin) CalculateSHA1

func (p Plugin) CalculateSHA1() string

CalculateSHA1 returns the sha1 value of the plugin executable. If an error is encountered calculating sha1, N/A is returned

func (Plugin) PluginCommands

func (p Plugin) PluginCommands() []PluginCommand

PluginCommands returns the plugin's commands sorted by command name.

type PluginCommand

type PluginCommand struct {
	Name         string             `json:"Name"`
	Alias        string             `json:"Alias"`
	HelpText     string             `json:"HelpText"`
	UsageDetails PluginUsageDetails `json:"UsageDetails"`
}

PluginCommand represents an individual command inside a plugin

func (PluginCommand) CommandName

func (c PluginCommand) CommandName() string

CommandName returns the name of the plugin. The name is concatenated with alias if alias is specified.

type PluginRepository

type PluginRepository struct {
	Name string `json:"Name"`
	URL  string `json:"URL"`
}

PluginRepository is a saved plugin repository

type PluginUsageDetails

type PluginUsageDetails struct {
	Usage   string            `json:"Usage"`
	Options map[string]string `json:"Options"`
}

PluginUsageDetails contains the usage metadata provided by the plugin

type PluginVersion

type PluginVersion struct {
	Major int `json:"Major"`
	Minor int `json:"Minor"`
	Build int `json:"Build"`
}

PluginVersion is the plugin version information

func (PluginVersion) String

func (v PluginVersion) String() string

String returns the plugin's version in the format x.y.z.

type PluginsConfig

type PluginsConfig struct {
	Plugins map[string]Plugin `json:"Plugins"`
}

PluginsConfig represents the plugin configuration

type QuotaDefinition

type QuotaDefinition struct {
	GUID                    string `json:"guid"`
	Name                    string `json:"name"`
	MemoryLimit             int    `json:"memory_limit"`
	InstanceMemoryLimit     int    `json:"instance_memory_limit"`
	TotalRoutes             int    `json:"total_routes"`
	TotalServices           int    `json:"total_services"`
	NonBasicServicesAllowed bool   `json:"non_basic_services_allowed"`
	AppInstanceLimit        int    `json:"app_instance_limit"`
	TotalReservedRoutePorts int    `json:"total_reserved_route_ports"`
}

QuotaDefinition contains information about the organization's quota

type Space

type Space struct {
	GUID     string `json:"GUID"`
	Name     string `json:"Name"`
	AllowSSH bool   `json:"AllowSSH"`
}

Space contains basic information about the targeted space

type User

type User struct {
	Name string
}

User represents the user information provided by the JWT access token

Jump to

Keyboard shortcuts

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