Home

tmpl @5e164b9bb94e60b60c506f239485e5b27b6b338e - refs - log -
-
https://git.jolheiser.com/tmpl.git
Template automation
tmpl / cmd / app.go
- raw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package cmd

import (
	"os"
	"path/filepath"

	"go.jolheiser.com/tmpl/cmd/flags"

	"github.com/urfave/cli/v2"
	"go.jolheiser.com/beaver"
)

var (
	Version    = "develop"
	defaultDir string
)

func init() {
	home, err := os.UserHomeDir()
	if err != nil {
		beaver.Error("could not locate user's home directory, tmpl will use temp dir for registry")
		return
	}
	defaultDir = filepath.Join(home, ".tmpl")
}

func NewApp() *cli.App {
	app := cli.NewApp()
	app.Name = "tmpl"
	app.Usage = "Template automation"
	app.Description = "Template automation"
	app.Version = Version
	app.Flags = []cli.Flag{
		&cli.BoolFlag{
			Name:        "debug",
			Aliases:     []string{"d"},
			Usage:       "Debug mode",
			Destination: &flags.Debug,
		},
		&cli.StringFlag{
			Name:        "registry",
			Aliases:     []string{"r"},
			Usage:       "Registry directory of tmpl",
			Value:       defaultDir,
			Destination: &flags.Registry,
		},
		&cli.StringFlag{
			Name:        "source",
			Aliases:     []string{"s"},
			Usage:       "Short-name source to use",
			Destination: &flags.Source,
		},
	}
	app.Before = before

	app.Commands = []*cli.Command{
		Download,
		Init,
		List,
		Remove,
		Save,
		Source,
		Test,
		Update,
		Use,
	}

	return app
}

func before(ctx *cli.Context) error {
	if ctx.Bool("debug") {
		beaver.Console.Level = beaver.DEBUG
	}
	return nil
}