Compare commits

..

No commits in common. "d2fb88cd584b8e7e60cb6315d9fb8d0d6ceac22f" and "ca3a01f478aa60fb039892d2cae6823188b5842c" have entirely different histories.

5 changed files with 69 additions and 61 deletions

68
gui.go
View File

@ -101,11 +101,6 @@ func debugTab(title string) {
// log.Println(o)
})
g2.NewButton("getProcessNameByPort()", func () {
processName := getProcessNameByPort(53)
log.Info("Process with port 53:", processName)
})
g2 = me.debug.Box().NewGroup("debugging options")
// makes a slider widget
@ -194,39 +189,25 @@ func myDefaultExit(n *gui.Node) {
func mainWindow(title string) {
me.window = gadgets.NewBasicWindow(me.myGui, title)
gr := me.window.Box().NewGroup("dns update")
grid := gr.NewGrid("gridnuts", 2, 2)
me.mainStatus = me.window.Box().NewGroup("dns update")
grid := me.mainStatus.NewGrid("gridnuts", 2, 2)
grid.SetNext(1,1)
grid.NewLabel("hostname =")
me.fqdn = grid.NewLabel("?")
// grid.NewLabel("DNS AAAA =")
me.DnsAAAA = gadgets.NewOneLiner(grid, "DNS AAAA =").Set("unknown")
grid.NewLabel("DNS A =")
me.DnsA = grid.NewLabel("?")
// This is where you figure out what to do next to fix the problems
gr.NewButton("fix", func () {
if ! me.status.Ready() {
log.Warn("The IPv6 Control Panel is not Ready() yet")
return
}
if me.status.ValidHostname() {
log.Warn("Your hostname is VALID:", me.status.GetHostname())
} else {
log.Warn("You must first fix your hostname:", me.status.GetHostname())
return
}
if ! me.status.IPv4() {
log.Warn("You do not have real IPv4 addresses. Nothing to fix here")
}
if ! me.status.IPv6() {
log.Warn("IPv6 DNS is broken. Check what is broken here")
return
}
log.Warn("FIGURE OUT WHAT TO DO HERE")
me.digStatus = NewDigStatusWindow(me.myGui)
me.status = NewHostnameStatusWindow(me.myGui)
me.hostnameStatusButton = me.mainStatus.NewButton("Fix hostname DNS", func () {
me.status.window.Toggle()
})
grid.Margin()
@ -234,23 +215,15 @@ func mainWindow(title string) {
statusGrid(me.window.Box())
gr = me.window.Box().NewGroup("debugging")
gr.NewButton("hostname status", func () {
if ! me.status.Ready() {return}
me.status.window.Toggle()
})
gr.NewButton("OS details", func () {
gr := me.window.Box().NewGroup("debugging")
gr.NewButton("OS Details", func () {
me.details.Toggle()
})
gr.NewButton("resolver status", func () {
gr.NewButton("Resolver Status", func () {
if ! me.digStatus.Ready() {return}
me.digStatus.window.Toggle()
})
gr.NewButton("cloudflare wit.com", func () {
cloudflare.CreateRR(me.myGui, "wit.com", "3777302ac4a78cd7fa4f6d3f72086d06")
})
gr.NewButton("Debug", func () {
gr.NewButton("Control Panel Debug", func () {
me.debug.Toggle()
})
}
@ -372,3 +345,20 @@ func updateDNS() {
log.Println("updateDNS() END")
}
func suggestProcDebugging() {
if (me.fixProc != nil) {
// me.fixProc.Disable()
return
}
me.fixProc = me.mainStatus.NewButton("Try debugging Slow DNS lookups", func () {
log.Warn("You're DNS lookups are very slow")
me.dbOn.Set(true)
me.dbProc.Set(true)
processName := getProcessNameByPort(53)
log.Info("Process with port 53:", processName)
})
// me.fixProc.Disable()
}

View File

@ -7,7 +7,7 @@ import (
"go.wit.com/log"
"go.wit.com/shell"
// "go.wit.com/gui/cloudflare"
"go.wit.com/gui/cloudflare"
"github.com/miekg/dns"
// will try to get this hosts FQDN
@ -53,6 +53,15 @@ func getHostname() {
me.hostnameStatus.SetText("VALID")
me.changed = true
}
// enable the cloudflare button if the provider is cloudflare
if (me.cloudflareB == nil) {
log.Log(CHANGE, "me.cloudflare == nil; me.DnsAPI.S =", me.DnsAPI.S)
if (me.DnsAPI.S == "cloudflare") {
me.cloudflareB = me.mainStatus.NewButton("cloudflare wit.com", func () {
cloudflare.CreateRR(me.myGui, "wit.com", "3777302ac4a78cd7fa4f6d3f72086d06")
})
}
}
}
}

View File

@ -16,6 +16,7 @@ import (
"go.wit.com/log"
"go.wit.com/gui/gui"
"go.wit.com/gui/gadgets"
"go.wit.com/gui/cloudflare"
)
type hostnameStatus struct {
@ -50,8 +51,8 @@ type hostnameStatus struct {
speedActual *gadgets.OneLiner
// Actions
// dnsValue *gui.Node
// dnsAction *gui.Node
dnsValue *gui.Node
dnsAction *gui.Node
}
func NewHostnameStatusWindow(p *gui.Node) *hostnameStatus {
@ -94,7 +95,6 @@ func NewHostnameStatusWindow(p *gui.Node) *hostnameStatus {
group.Pad()
grid.Pad()
/*
group = hs.window.Box().NewGroup("Actions")
grid = group.NewGrid("LookupDetails", 2, 2)
@ -108,7 +108,6 @@ func NewHostnameStatusWindow(p *gui.Node) *hostnameStatus {
hs.createDNSrecord(hs.dnsValue.S)
}
})
*/
group.Pad()
grid.Pad()
@ -147,7 +146,6 @@ func (hs *hostnameStatus) API() string {
return hs.dnsAPI.Get()
}
/*
func (hs *hostnameStatus) deleteDNSrecord(value string) bool {
log.Info("deleteDNSrecord() START for", value)
log.Info("deleteDNSrecord() hostname =", me.status.GetHostname())
@ -173,7 +171,6 @@ func (hs *hostnameStatus) createDNSrecord(value string) bool {
}
return false
}
*/
func (hs *hostnameStatus) Update() {
log.Info("hostnameStatus() Update() START")
@ -269,7 +266,6 @@ func (hs *hostnameStatus) existsAAAA(s string) bool {
return false
}
/*
// figure out if I'm missing any IPv6 address in DNS
func (hs *hostnameStatus) missingAAAA() bool {
var aaaa []string
@ -288,7 +284,6 @@ func (hs *hostnameStatus) missingAAAA() bool {
return false
}
*/
func (hs *hostnameStatus) updateStatus() {
if ! hs.Ready() { return }
@ -307,17 +302,15 @@ func (hs *hostnameStatus) updateStatus() {
s = "(none)"
} else {
hs.setIPv6("Check for real IPv6 addresses here")
/*
if hs.missingAAAA() {
hs.setIPv6("Add the missing IPv6 address")
}
*/
for _, addr := range vals {
log.Log(STATUS, addr)
s += addr + " (DELETE)" + "\n"
hs.setIPv6("NEEDS DELETE")
// hs.dnsValue.SetText(addr)
// hs.dnsAction.SetText("DELETE")
hs.dnsValue.SetText(addr)
hs.dnsAction.SetText("DELETE")
}
}
hs.set(hs.dnsAAAA, s)

16
main.go
View File

@ -44,9 +44,6 @@ func main() {
log.Sleep(me.artificialSleep)
setupControlPanelWindow()
me.digStatus = NewDigStatusWindow(me.myGui)
me.status = NewHostnameStatusWindow(me.myGui)
if debugger.ArgDebug() {
log.Sleep(2)
debugger.DebugWindow(me.myGui)
@ -124,15 +121,24 @@ func DNSloop() {
log.Info("dnsTTL() execution Time: ", duration)
var s, newSpeed string
if (duration > 5000 * time.Millisecond ) {
newSpeed = "VERY SLOW"
newSpeed = "VERY BAD"
suggestProcDebugging()
} else if (duration > 2000 * time.Millisecond ) {
newSpeed = "SLOWER"
newSpeed = "BAD"
suggestProcDebugging()
} else if (duration > 500 * time.Millisecond ) {
suggestProcDebugging()
newSpeed = "SLOW"
} else if (duration > 100 * time.Millisecond ) {
newSpeed = "OK"
if (me.fixProc != nil) {
// me.fixProc.Disable()
}
} else {
newSpeed = "FAST"
if (me.fixProc != nil) {
// me.fixProc.Disable()
}
}
if (newSpeed != me.DnsSpeedLast) {
log.Log(CHANGE, "dns lookup speed changed =", newSpeed)

View File

@ -18,9 +18,13 @@ type Host struct {
hostnameStatus *gui.Node // a summary for the user of where things are
// hostname string // mirrors
domainname *gui.Node // kernel.org
hostshort *gui.Node // hostname -s
// fqdn string // mirrors.kernel.org
// dnsTTL int `default:"3"` // Recheck DNS is working every TTL (in seconds)
// dnsTTLsleep float64 // sleep between loops
artificialSleep float64 `default:"0.7"` // artificial sleep on startup
artificialS string `default:"abc"` // artificial sleep on startup
@ -67,16 +71,22 @@ type Host struct {
DnsSpeedActual *gui.Node // the last actual duration
DnsSpeedLast string // the last state 'FAST', 'OK', etc
// fix *gui.Node // button for the user to click
// fixProc *gui.Node // button for the user to click
fix *gui.Node // button for the user to click
fixProc *gui.Node // button for the user to click
// mainStatus *gui.Node // group for the main display of stuff
// cloudflareB *gui.Node // cloudflare button
mainStatus *gui.Node // group for the main display of stuff
cloudflareB *gui.Node // cloudflare button
dbOn *gui.Node // button for setting debugging on
dbNet *gui.Node // button for setting network debugging on
dbProc *gui.Node // button for setting proc debugging on
digStatus *digStatus
statusIPv6 *gadgets.OneLiner
digStatusButton *gui.Node
hostnameStatusButton *gui.Node
myDebug *gui.Node
myGui *gui.Node
}