summaryrefslogtreecommitdiff
path: root/args.go
blob: fed42d50451a5a32c6223adc45a9231b914b3fc3 (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
package main

/*
	this parses the command line arguements
*/

import 	(
	"log"
	"fmt"
	"time"
	arg "github.com/alexflint/go-arg"
	"go.wit.com/gui"
	// log "go.wit.com/gui/log"
	"go.wit.com/control-panel-dns/cloudflare"
)

var newRR *cloudflare.RRT

var args struct {
	Verbose bool
	VerboseNet bool  `arg:"--verbose-net" help:"debug your local OS network settings"`
	VerboseDNS bool  `arg:"--verbose-dns" help:"debug your dns settings"`
	LogFile string `help:"write all output to a file"`
	// User string `arg:"env:USER"`
	Display string `arg:"env:DISPLAY"`

	Foo string
	Bar bool
	User string `arg:"env:USER"`
	Demo bool `help:"run a demo"`
	gui.GuiArgs
	// log.LogArgs
}

func init() {
	arg.MustParse(&args)
	fmt.Println(args.Foo, args.Bar, args.User)

	if (args.Gui != "") {
		gui.GuiArg.Gui = args.Gui
	}
	log.Println(true, "INIT() args.GuiArg.Gui =", gui.GuiArg.Gui)

	newRR = &cloudflare.CFdialog

	me.dnsTTL = 2		// how often to recheck DNS
	me.dnsTTLsleep = 0.4	// sleep between loops

	me.dnsSleep = 500 * time.Millisecond
	me.localSleep = 100 * time.Millisecond

	me.artificialSleep = me.dnsTTLsleep	// seems to need to exist or GTK crashes
	me.artificialS = "blah"
	log.Println("init() me.artificialSleep =", me.artificialSleep)
	log.Println("init() me.artificialS =", me.artificialS)
	sleep(me.artificialSleep)
}