mirror of
https://github.com/drone/drone-cli.git
synced 2024-11-23 01:11:57 +01:00
49 lines
857 B
Go
49 lines
857 B
Go
package info
|
|
|
|
import (
|
|
"os"
|
|
"text/template"
|
|
|
|
"github.com/drone/drone-cli/drone/internal"
|
|
"github.com/drone/funcmap"
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
// Command exports the info command.
|
|
var Command = cli.Command{
|
|
Name: "info",
|
|
Usage: "show information about the current user",
|
|
ArgsUsage: " ",
|
|
Action: info,
|
|
Flags: []cli.Flag{
|
|
cli.StringFlag{
|
|
Name: "format",
|
|
Usage: "format output",
|
|
Value: tmplInfo,
|
|
},
|
|
},
|
|
}
|
|
|
|
func info(c *cli.Context) error {
|
|
client, err := internal.NewClient(c)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
user, err := client.Self()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
tmpl, err := template.New("_").Funcs(funcmap.Funcs).Parse(c.String("format") + "\n")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return tmpl.Execute(os.Stdout, user)
|
|
}
|
|
|
|
// template for user information
|
|
var tmplInfo = `User: {{ .Login }}
|
|
Email: {{ .Email }}`
|