mirror of
https://github.com/k8sgpt-ai/k8sgpt.git
synced 2025-04-28 03:20:56 +00:00
Updated the outdated URL 'https://beta.openai.com/account/api-keys' to the current OpenAI API key generation page 'https://platform.openai.com/account/api-keys'. This resolves the issue where users were directed to an incorrect URL when generating an OpenAI API key. Signed-off-by: 100daysofdevops <47483190+100daysofdevops@users.noreply.github.com>
93 lines
2.4 KiB
Go
93 lines
2.4 KiB
Go
/*
|
|
Copyright 2023 The K8sGPT Authors.
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package generate
|
|
|
|
import (
|
|
"fmt"
|
|
"os/exec"
|
|
"runtime"
|
|
|
|
"github.com/fatih/color"
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
var (
|
|
backend string
|
|
backendType string
|
|
)
|
|
|
|
// generateCmd represents the auth command
|
|
var GenerateCmd = &cobra.Command{
|
|
Use: "generate",
|
|
Short: "Generate Key for your chosen backend (opens browser)",
|
|
Long: `Opens your browser to generate a key for your chosen backend.`,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
|
|
backendType = viper.GetString("backend_type")
|
|
if backendType == "" {
|
|
// Set the default backend
|
|
backend = "openai"
|
|
}
|
|
// override the default backend if a flag is provided
|
|
if backend != "" {
|
|
backendType = backend
|
|
}
|
|
fmt.Println("")
|
|
openbrowser("https://platform.openai.com/api-keys")
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
// add flag for backend
|
|
GenerateCmd.Flags().StringVarP(&backend, "backend", "b", "openai", "Backend AI provider")
|
|
}
|
|
|
|
func openbrowser(url string) {
|
|
var err error
|
|
isGui := true
|
|
switch runtime.GOOS {
|
|
case "linux":
|
|
_, err = exec.LookPath("xdg-open")
|
|
if err != nil {
|
|
isGui = false
|
|
} else {
|
|
err = exec.Command("xdg-open", url).Start()
|
|
}
|
|
case "windows":
|
|
err = exec.Command("rundll32", "url.dll,FileProtocolHandler", url).Start()
|
|
case "darwin":
|
|
err = exec.Command("open", url).Start()
|
|
default:
|
|
err = fmt.Errorf("unsupported platform")
|
|
}
|
|
printInstructions(isGui, backend)
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
}
|
|
}
|
|
|
|
func printInstructions(isGui bool, backendType string) {
|
|
fmt.Println("")
|
|
if isGui {
|
|
color.Green("Opening: https://platform.openai.com/api-keys to generate a key for %s", backendType)
|
|
fmt.Println("")
|
|
} else {
|
|
color.Green("Please open: https://platform.openai.com/api-keys to generate a key for %s", backendType)
|
|
fmt.Println("")
|
|
}
|
|
color.Green("Please copy the generated key and run `k8sgpt auth add` to add it to your config file")
|
|
fmt.Println("")
|
|
}
|