After discussing this with the team, the `gh config` changes to display `accessible_colors` have been removed from this branch being outside of acceptance criteria. This will be moved to a separate issue along with any other work needed to finalize the public preview such as `gh help` entries for `GH_ACCESSIBLE_COLORS` environment variable. List commands that use ColorScheme.Gray have been updated to use ColorScheme.Muted.
113 lines
2.4 KiB
Go
113 lines
2.4 KiB
Go
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.Muted)
|
|
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:]
|
|
}
|