mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-26 20:01:02 +00:00
ff01a9ff1d
closes #1295 closes #648 # TODO - [x] add new routes with `:repoID` - [x] load repo in middleware using `:repoID` if present - [x] update UI routes `:owner/:name` to `:repoID` - [x] load repos using id in UI - [x] add lookup endpoint `:owner/:name` to `:repoID` - [x] redirect `:owner/:name` to `:repoID` in UI - [x] use badge with `:repoID` route in UI - [x] update `woodpecker-go` - [x] check cli - [x] add migrations / deprecation notes - [x] check if #648 got solved directly - [x] Test - [x] create repo - [x] repo pages - [x] ui redirects - [x] forge status links
91 lines
1.7 KiB
Go
91 lines
1.7 KiB
Go
package secret
|
|
|
|
import (
|
|
"html/template"
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/cli/common"
|
|
"github.com/woodpecker-ci/woodpecker/cli/internal"
|
|
"github.com/woodpecker-ci/woodpecker/woodpecker-go/woodpecker"
|
|
)
|
|
|
|
var secretListCmd = &cli.Command{
|
|
Name: "ls",
|
|
Usage: "list secrets",
|
|
ArgsUsage: "[repo-id|repo-full-name]",
|
|
Action: secretList,
|
|
Flags: append(common.GlobalFlags,
|
|
&cli.BoolFlag{
|
|
Name: "global",
|
|
Usage: "global secret",
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "organization",
|
|
Usage: "organization name (e.g. octocat)",
|
|
},
|
|
common.RepoFlag,
|
|
common.FormatFlag(tmplSecretList, true),
|
|
),
|
|
}
|
|
|
|
func secretList(c *cli.Context) error {
|
|
format := c.String("format") + "\n"
|
|
|
|
client, err := internal.NewClient(c)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
global, owner, repoID, err := parseTargetArgs(client, c)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var list []*woodpecker.Secret
|
|
if global {
|
|
list, err = client.GlobalSecretList()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
} else if owner != "" {
|
|
list, err = client.OrgSecretList(owner)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
} else {
|
|
list, err = client.SecretList(repoID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
tmpl, err := template.New("_").Funcs(secretFuncMap).Parse(format)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
for _, registry := range list {
|
|
if err := tmpl.Execute(os.Stdout, registry); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// template for secret list items
|
|
var tmplSecretList = "\x1b[33m{{ .Name }} \x1b[0m" + `
|
|
Events: {{ list .Events }}
|
|
{{- if .Images }}
|
|
Images: {{ list .Images }}
|
|
{{- else }}
|
|
Images: <any>
|
|
{{- end }}
|
|
`
|
|
|
|
var secretFuncMap = template.FuncMap{
|
|
"list": func(s []string) string {
|
|
return strings.Join(s, ", ")
|
|
},
|
|
}
|