control-panel-dns/args.go

58 lines
1.3 KiB
Go
Raw Normal View History

2023-02-08 11:04:04 -06:00
package main
/*
this parses the command line arguements
*/
2023-02-08 11:04:04 -06:00
import (
"log"
"fmt"
"time"
arg "github.com/alexflint/go-arg"
2023-02-08 11:04:04 -06:00
"git.wit.org/wit/gui"
// log "git.wit.org/wit/gui/log"
"git.wit.org/jcarr/control-panel-dns/cloudflare"
2023-02-08 11:04:04 -06:00
)
var newRR *cloudflare.RRT
var args struct {
2023-02-08 11:04:04 -06:00
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"`
2023-02-08 11:04:04 -06:00
Foo string
Bar bool
User string `arg:"env:USER"`
Demo bool `help:"run a demo"`
2023-02-08 11:04:04 -06:00
gui.GuiArgs
// log.LogArgs
2023-02-08 11:04:04 -06:00
}
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)
}