func (ui *terminalUI) NotifyUpdateIfNeeded(config core_config.Reader) { if !config.IsMinCliVersion(cf.Version) { ui.Say("") ui.Say(T("Cloud Foundry API version {{.ApiVer}} requires CLI version {{.CliMin}}. You are currently on version {{.CliVer}}. To upgrade your CLI, please visit: https://github.com/cloudfoundry/cli#downloads", map[string]interface{}{ "ApiVer": config.ApiVersion(), "CliMin": config.MinCliVersion(), "CliVer": cf.Version, })) } }
func (ui *terminalUI) ShowConfiguration(config core_config.Reader) { table := NewTable(ui, []string{"", ""}) if config.HasAPIEndpoint() { table.Add( T("API endpoint:"), T("{{.ApiEndpoint}} (API version: {{.ApiVersionString}})", map[string]interface{}{ "ApiEndpoint": EntityNameColor(config.ApiEndpoint()), "ApiVersionString": EntityNameColor(config.ApiVersion()), }), ) } if !config.IsLoggedIn() { table.Print() ui.Say(NotLoggedInText()) return } else { table.Add( T("User:"******"%s target -o ORG -s SPACE", cf.Name()) ui.Say(T("No org or space targeted, use '{{.CFTargetCommand}}'", map[string]interface{}{ "CFTargetCommand": CommandColor(command), })) return } if config.HasOrganization() { table.Add( T("Org:"), EntityNameColor(config.OrganizationFields().Name), ) } else { command := fmt.Sprintf("%s target -o Org", cf.Name()) table.Add( T("Org:"), T("No org targeted, use '{{.CFTargetCommand}}'", map[string]interface{}{ "CFTargetCommand": CommandColor(command), }), ) } if config.HasSpace() { table.Add( T("Space:"), EntityNameColor(config.SpaceFields().Name), ) } else { command := fmt.Sprintf("%s target -s SPACE", cf.Name()) table.Add( T("Space:"), T("No space targeted, use '{{.CFTargetCommand}}'", map[string]interface{}{"CFTargetCommand": CommandColor(command)}), ) } table.Print() }