mirror of
https://github.com/drone/drone-cli.git
synced 2024-11-26 06:07:05 +01:00
47 lines
805 B
Go
47 lines
805 B
Go
package repo
|
|
|
|
import (
|
|
"os"
|
|
"text/template"
|
|
|
|
"github.com/drone/drone-cli/drone/internal"
|
|
"github.com/drone/funcmap"
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
var repoSyncCmd = cli.Command{
|
|
Name: "sync",
|
|
Usage: "synchronize the repository list",
|
|
ArgsUsage: " ",
|
|
Action: repoSync,
|
|
Flags: []cli.Flag{
|
|
cli.StringFlag{
|
|
Name: "format",
|
|
Usage: "format output",
|
|
Value: tmplRepoList,
|
|
},
|
|
},
|
|
}
|
|
|
|
func repoSync(c *cli.Context) error {
|
|
client, err := internal.NewClient(c)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
repos, err := client.RepoListSync()
|
|
if err != nil || len(repos) == 0 {
|
|
return err
|
|
}
|
|
|
|
tmpl, err := template.New("_").Funcs(funcmap.Funcs).Parse(c.String("format") + "\n")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
for _, repo := range repos {
|
|
tmpl.Execute(os.Stdout, repo)
|
|
}
|
|
return nil
|
|
}
|