Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ClearTokensCommand = cli.Command{ Name: "clear", Usage: "Remove a selected token from the keyring", Flags: []cli.Flag{ &cli.BoolFlag{Name: "all", Aliases: []string{"a"}, Usage: "Remove all saved tokens from keyring"}, }, Action: func(c *cli.Context) error { if c.Bool("all") { err := credstore.ClearAll() if err != nil { return err } fmt.Fprintf(os.Stderr, "Cleared all saved tokens") return nil } var selection string if c.Args().First() != "" { selection = c.Args().First() } startUrlMap, err := MapTokens(c.Context) if err != nil { return err } if selection == "" { var max int for k := range startUrlMap { if len(k) > max { max = len(k) } } selectionsMap := make(map[string]string) tokenList := []string{} for k, profiles := range startUrlMap { stringKey := fmt.Sprintf("%-*s (%s)", max, k, strings.Join(profiles, ", ")) tokenList = append(tokenList, stringKey) selectionsMap[stringKey] = k } withStdio := survey.WithStdio(os.Stdin, os.Stderr, os.Stderr) in := survey.Select{ Message: "Select a token to remove from keyring", Options: tokenList, } fmt.Fprintln(os.Stderr) var out string err = testable.AskOne(&in, &out, withStdio) if err != nil { return err } selection = selectionsMap[out] } err = credstore.Clear(selection) if err != nil { return err } fmt.Fprintf(os.Stderr, "Cleared %s", selection) return nil }, }
View Source
var CompletionCommand = cli.Command{ Name: "completion", Usage: "Add autocomplete to your granted cli installation", Flags: flags, Action: func(c *cli.Context) error { if c.String("shell") == "fish" { assumeApp := assume.GetCliApp() if build.Version == "dev" { fmt.Printf("⚙️ Generating commands for dgranted/dassume\n") c.App.Name = "dgranted" assumeApp.Name = "dassume" } else { c.App.Name = "granted" assumeApp.Name = "assume" } grantedAppOutput, _ := c.App.ToFishCompletion() assumeAppOutput, _ := assumeApp.ToFishCompletion() combinedOutput := fmt.Sprintf("%s\n%s", grantedAppOutput, assumeAppOutput) user, _ := user.Current() executableDir := user.HomeDir + "/.config/fish/completions/granted_completer_fish.fish" err := os.WriteFile(executableDir, []byte(combinedOutput), 0600) if err != nil { fmt.Fprintln(color.Error, "Something went wrong when saving fish autocompletions: "+err.Error()) } green := color.New(color.FgGreen) green.Fprintln(color.Error, "[✔] Fish autocompletions generated successfully ") fmt.Fprintln(color.Error, "To use these completions please run the executable:") fmt.Fprintln(color.Error, "source "+executableDir) } else { fmt.Fprintln(color.Error, "To install completions for other shells like zsh, bash, please see our docs:") fmt.Fprintln(color.Error, "https://granted.dev/autocompletion") } return nil }, Description: "To install completions for other shells like zsh, bash, please see our docs:\nhttps://granted.dev/autocompletion\n", }
View Source
var DefaultBrowserCommand = cli.Command{ Name: "browser", Usage: "View the web browser that Granted uses to open cloud consoles", Subcommands: []*cli.Command{&SetBrowserCommand}, Action: func(c *cli.Context) error { conf, err := config.Load() if err != nil { return err } fmt.Fprintf(color.Error, "Granted is using %s. To change this run `granted browser set`.\n", conf.DefaultBrowser) return nil }, }
View Source
var SetBrowserCommand = cli.Command{ Name: "set", Usage: "Change the web browser that Granted uses to open cloud consoles", Flags: []cli.Flag{&cli.StringFlag{Name: "browser", Aliases: []string{"b"}, Usage: "Specify a default browser without prompts, e.g `-b firefox`, `-b chrome`"}, &cli.StringFlag{Name: "path", Aliases: []string{"p"}, Usage: "Specify a path to the browser without prompts, requires -browser to be provided"}}, Action: func(c *cli.Context) (err error) { outcome := c.String("browser") path := c.String("path") if outcome == "" { if path != "" { fmt.Fprintln(color.Error, "-path flag must be used with -browser flag, provided path will be ignored.") } outcome, err = browsers.HandleManualBrowserSelection() if err != nil { return err } } return browsers.ConfigureBrowserSelection(outcome, path) }, }
View Source
var TokenCommand = cli.Command{ Name: "token", Usage: "Manage aws access tokens", Subcommands: []*cli.Command{&TokenListCommand, &ClearTokensCommand}, Action: TokenListCommand.Action, }
View Source
var TokenListCommand = cli.Command{ Name: "list", Usage: "Lists all access tokens saved in the keyring", Action: func(ctx *cli.Context) error { startUrlMap, err := MapTokens(ctx.Context) if err != nil { return err } var max int for k := range startUrlMap { if len(k) > max { max = len(k) } } tokens, err := credstore.ListKeys() if err != nil { return err } for _, token := range tokens { fmt.Fprintf(os.Stderr, "%s\n", fmt.Sprintf("%-*s (%s)", max, token, strings.Join(startUrlMap[token], ", "))) } return nil }, }
View Source
var UninstallCommand = cli.Command{ Name: "uninstall", Usage: "Remove all Granted configuration", Action: func(c *cli.Context) error { withStdio := survey.WithStdio(os.Stdin, os.Stderr, os.Stderr) in := &survey.Confirm{ Message: "Are you sure you want to remove your Granted config?", Default: true, } var confirm bool err := survey.AskOne(in, &confirm, withStdio) if err != nil { return err } if confirm { _, err = alias.UninstallDefaultShellAlias() if err != nil { fmt.Fprintln(color.Error, err) } grantedFolder, err := config.GrantedConfigFolder() if err != nil { return err } err = os.RemoveAll(grantedFolder) if err != nil { return err } fmt.Printf("removed Granted config folder %s\n", grantedFolder) fmt.Fprintln(color.Error, "[✔] all Granted config has been removed") } return nil }, }
Functions ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.