Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

allow overriding base url in profiles #139

Merged
merged 1 commit into from
Nov 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
21 changes: 18 additions & 3 deletions cli/apiconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ type TLSConfig struct {

// APIProfile contains account-specific API information
type APIProfile struct {
Base string `json:"base",omitempty`
Headers map[string]string `json:"headers,omitempty"`
Query map[string]string `json:"query,omitempty"`
Auth *APIAuth `json:"auth"`
Expand Down Expand Up @@ -189,9 +190,23 @@ func initAPIConfig() {

func findAPI(uri string) (string, *APIConfig) {
for name, config := range configs {
if strings.HasPrefix(uri, config.Base) {
// TODO: find the longest matching base?
return name, config
profile := viper.GetString("rsh-profile")
if profile != "default" {
if config.Profiles[profile] == nil {
continue
}
if config.Profiles[profile].Base != "" {
if strings.HasPrefix(uri, config.Profiles[profile].Base) {
return name, config
}
} else if strings.HasPrefix(uri, config.Base) {
return name, config
}
} else {
if strings.HasPrefix(uri, config.Base) {
// TODO: find the longest matching base?
return name, config
}
}
}

Expand Down
25 changes: 23 additions & 2 deletions cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,17 @@ func completeCurrentConfig(cmd *cobra.Command, args []string, toComplete string,
for _, cmd := range Root.Commands() {
if cmd.Use == currentConfig.name {
// This is the matching command. Load the URL and check each operation.
api, _ := Load(currentConfig.Base, cmd)
currentBase := currentConfig.Base
currentProfile := currentConfig.Profiles[viper.GetString("rsh-profile")]
if currentProfile == nil {
if viper.GetString("rsh-profile") != "default" {
panic("Invalid profile " + viper.GetString("rsh-profile"))
}
}
if currentProfile != nil && currentProfile.Base != "" {
currentBase = currentProfile.Base
}
api, _ := Load(currentBase, cmd)
for _, op := range api.Operations {
if op.Method != method {
// We only care about operations which match the currently selected
Expand Down Expand Up @@ -679,6 +689,7 @@ func Run() {
if headers, _ := GlobalFlags.GetStringSlice("rsh-header"); len(headers) > 0 {
viper.Set("rsh-header", headers)
}
profile, _ := GlobalFlags.GetString("rsh-profile")

// Now that global flags are parsed we can enable verbose mode if requested.
if viper.GetBool("rsh-verbose") {
Expand All @@ -704,7 +715,17 @@ func Run() {
currentConfig = cfg
for _, cmd := range Root.Commands() {
if cmd.Use == apiName {
if _, err := Load(cfg.Base, cmd); err != nil {
currentBase := cfg.Base
currentProfile := cfg.Profiles[profile]
if currentProfile == nil {
if profile != "default" {
panic("Invalid profile " + profile)
}
}
if currentProfile != nil && currentProfile.Base != "" {
currentBase = currentProfile.Base
}
if _, err := Load(currentBase, cmd); err != nil {
panic(err)
}
loaded = true
Expand Down
10 changes: 10 additions & 0 deletions cli/interactive.go
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,11 @@ func askEditProfile(a asker, name string, profile *APIProfile) {
options = append(options, "Delete query param "+k)
}

options = append(options, "Add custom base URL")
if profile.Base != "" {
options = append(options, "Remove custom base URL")
}

options = append(options, "Setup auth", "Finished with profile")

choice := a.askSelect("Select option for profile `"+name+"`", options, nil, "")
Expand Down Expand Up @@ -275,6 +280,11 @@ func askEditProfile(a asker, name string, profile *APIProfile) {
profile.Auth = &APIAuth{}
}
askAuth(a, profile.Auth)
case choice == "Add custom base URL":
url := a.askInput("Base URL", "", true, "")
profile.Base = url
case choice == "Remove custom base URL":
profile.Base = ""
case choice == "Finished with profile":
return
}
Expand Down
18 changes: 14 additions & 4 deletions cli/request.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,20 @@ func fixAddress(addr string) string {
// the base URL for that API.
parts := strings.Split(addr, "/")
c := configs[parts[0]]
if c != nil && c.Base != "" {
parts[0] = c.Base
return strings.Join(parts, "/")
if c != nil {
p := c.Profiles[viper.GetString("rsh-profile")]
if p == nil {
if viper.GetString("rsh-profile") != "default" {
panic("Invalid profile " + viper.GetString("rsh-profile"))
}
}
if p != nil && p.Base != "" {
parts[0] = p.Base
return strings.Join(parts, "/")
} else if c.Base != "" {
parts[0] = c.Base
return strings.Join(parts, "/")
}
}

// Local traffic defaults to HTTP, everything else uses TLS.
Expand Down Expand Up @@ -82,7 +93,6 @@ func MakeRequest(req *http.Request, options ...requestOption) (*http.Response, e
if viper.GetString("rsh-profile") != "default" {
panic("Invalid profile " + viper.GetString("rsh-profile"))
}

profile = &APIProfile{}
}

Expand Down