48 lines
856 B
Go
48 lines
856 B
Go
package cli
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/google/go-github/v62/github"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
const (
|
|
defaultDepsFile = ".deps"
|
|
)
|
|
|
|
type action struct {
|
|
ghClient *github.Client
|
|
flags struct {
|
|
depsFile string
|
|
depsURL string
|
|
verbose bool
|
|
dryRun bool
|
|
}
|
|
}
|
|
|
|
func (a *action) RunHelp(c *cli.Context) error {
|
|
return cli.ShowAppHelp(c)
|
|
}
|
|
|
|
func (a *action) getFlags(c *cli.Context) {
|
|
a.flags.verbose = c.Bool(flagVerboseName)
|
|
|
|
a.flags.depsFile = c.String(flagDepsFileName)
|
|
if a.flags.depsFile == "" {
|
|
a.log("Fallback to default deps file [%s]\n", defaultDepsFile)
|
|
a.flags.depsFile = defaultDepsFile
|
|
}
|
|
|
|
a.flags.depsURL = c.String(flagDepsURLName)
|
|
a.flags.dryRun = c.Bool(flagDryRun)
|
|
|
|
a.log("Flags %+v\n", a.flags)
|
|
}
|
|
|
|
func (a *action) log(format string, v ...interface{}) {
|
|
if a.flags.verbose {
|
|
log.Printf(format, v...)
|
|
}
|
|
}
|