summaryrefslogtreecommitdiff
path: root/cmd/gonf/main.go
blob: 99817c4834e73cb492b24205aa17a32b836ccdef (plain)
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
77
78
79
80
81
82
83
84
85
86
87
package main

import (
	"context"
	"errors"
	"flag"
	"fmt"
	"io"
	"os"
	"os/signal"
)

var (
	batchMode bool
	configDir string
	helpMode  bool
)

func main() {
	if err := run(context.Background(),
		os.Args,
		os.Getenv,
		//os.Getwd,
		//os.Stdin,
		os.Stdout,
		os.Stderr,
	); err != nil {
		fmt.Fprintf(os.Stderr, "%+v\n", err)
		os.Exit(1)
	}
}

func run(ctx context.Context,
	args []string,
	getenv func(string) string,
	//getwd func() (string, error),
	//stdin io.Reader,
	stdout, stderr io.Writer,
) error {
	ctx, cancel := signal.NotifyContext(ctx, os.Interrupt)
	defer cancel()
	f := flag.NewFlagSet(`gonf COMMAND [-FLAG]
where COMMAND is one of:
  * build: build configurations for one or more hosts
  * help: show contextual help
  * version: show build version and time
where FLAG can be one or more of`, flag.ContinueOnError)
	f.BoolVar(&batchMode, "batch", false, "skips all questions and confirmations, using the default (safe) choices each time")
	f.BoolVar(&helpMode, "help", false, "show contextual help")
	f.StringVar(&configDir, "config", "", "(REQUIRED for most commands) path to a gonf configurations repository (overrides the GONF_CONFIG environment variable)")
	f.SetOutput(stderr)
	if err := f.Parse(args[1:]); err != nil {
		return err
	}

	if f.NArg() < 1 {
		f.Usage()
		return errors.New("no command given")
	}
	cmd := f.Arg(0)
	argsTail := f.Args()[1:]
	switch cmd {
	case "help":
		f.SetOutput(stdout)
		f.Usage()
	case "version":
		cmdVersion()
	default:
		if configDir == "" {
			configDir = getenv("GONF_CONFIG")
			if configDir == "" {
				f.Usage()
				return errors.New("the GONF_CONFIG environment variable is unset and the -config FLAG is missing. Please use one or the other")
			}
		}
		switch cmd {
		case "build":
			return cmdBuild(ctx, f, argsTail, getenv, stdout, stderr)
		case "deploy":
			return cmdDeploy(ctx, f, argsTail, getenv, stdout, stderr)
		default:
			f.Usage()
			return fmt.Errorf("invalid command: %s", cmd)
		}
	}
	return nil
}