mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-05 16:39:50 +00:00
59 lines
972 B
Go
59 lines
972 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
"text/template"
|
|
|
|
"github.com/codegangsta/cli"
|
|
)
|
|
|
|
var repoListCmd = cli.Command{
|
|
Name: "ls",
|
|
Usage: "list all repos",
|
|
Action: func(c *cli.Context) {
|
|
if err := repoList(c); err != nil {
|
|
log.Fatalln(err)
|
|
}
|
|
},
|
|
Flags: []cli.Flag{
|
|
cli.StringFlag{
|
|
Name: "format",
|
|
Usage: "format output",
|
|
Value: tmplRepoList,
|
|
},
|
|
cli.StringFlag{
|
|
Name: "org",
|
|
Usage: "filter by organization",
|
|
},
|
|
},
|
|
}
|
|
|
|
func repoList(c *cli.Context) error {
|
|
client, err := newClient(c)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
repos, err := client.RepoList()
|
|
if err != nil || len(repos) == 0 {
|
|
return err
|
|
}
|
|
|
|
tmpl, err := template.New("_").Parse(c.String("format") + "\n")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
org := c.String("org")
|
|
for _, repo := range repos {
|
|
if org != "" && org != repo.Owner {
|
|
continue
|
|
}
|
|
tmpl.Execute(os.Stdout, repo)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// template for repository list items
|
|
var tmplRepoList = `{{ .FullName }}`
|