package list import ( "fmt" "net/http" "strconv" "time" "github.com/cli/cli/v2/internal/ghrepo" "github.com/cli/cli/v2/internal/tableprinter" "github.com/cli/cli/v2/pkg/cmdutil" "github.com/cli/cli/v2/pkg/iostreams" "github.com/spf13/cobra" ) type ListOptions struct { IO *iostreams.IOStreams HTTPClient func() (*http.Client, error) BaseRepo func() (ghrepo.Interface, error) Exporter cmdutil.Exporter } var deployKeyFields = []string{ "id", "key", "title", "createdAt", "readOnly", } func NewCmdList(f *cmdutil.Factory, runF func(*ListOptions) error) *cobra.Command { opts := &ListOptions{ IO: f.IOStreams, HTTPClient: f.HttpClient, } cmd := &cobra.Command{ Use: "list", Short: "List deploy keys in a GitHub repository", Aliases: []string{"ls"}, Args: cobra.ExactArgs(0), RunE: func(cmd *cobra.Command, args []string) error { opts.BaseRepo = f.BaseRepo if runF != nil { return runF(opts) } return listRun(opts) }, } cmdutil.AddJSONFlags(cmd, &opts.Exporter, deployKeyFields) return cmd } func listRun(opts *ListOptions) error { apiClient, err := opts.HTTPClient() if err != nil { return err } repo, err := opts.BaseRepo() if err != nil { return err } deployKeys, err := repoKeys(apiClient, repo) if err != nil { return err } if len(deployKeys) == 0 { return cmdutil.NewNoResultsError(fmt.Sprintf("no deploy keys found in %s", ghrepo.FullName(repo))) } if opts.Exporter != nil { return opts.Exporter.Write(opts.IO, deployKeys) } t := tableprinter.New(opts.IO, tableprinter.WithHeader("ID", "TITLE", "TYPE", "KEY", "CREATED AT")) cs := opts.IO.ColorScheme() now := time.Now() for _, deployKey := range deployKeys { sshID := strconv.Itoa(deployKey.ID) t.AddField(sshID) t.AddField(deployKey.Title) sshType := "read-only" if !deployKey.ReadOnly { sshType = "read-write" } t.AddField(sshType) t.AddField(deployKey.Key, tableprinter.WithTruncate(truncateMiddle)) t.AddTimeField(now, deployKey.CreatedAt, cs.Gray) t.EndRow() } return t.Render() } func truncateMiddle(maxWidth int, t string) string { if len(t) <= maxWidth { return t } ellipsis := "..." if maxWidth < len(ellipsis)+2 { return t[0:maxWidth] } halfWidth := (maxWidth - len(ellipsis)) / 2 remainder := (maxWidth - len(ellipsis)) % 2 return t[0:halfWidth+remainder] + ellipsis + t[len(t)-halfWidth:] }