update worked correctly for the first time

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2024-01-06 21:02:41 -06:00
parent de051d06f3
commit 5e9f1591ca
4 changed files with 20 additions and 7 deletions

19
fix.go
View File

@ -3,6 +3,7 @@ package main
import ( import (
"go.wit.com/log" "go.wit.com/log"
"go.wit.com/gui/cloudflare"
) )
func fix() bool { func fix() bool {
@ -12,26 +13,26 @@ func fix() bool {
return false return false
} }
if me.statusOS.ValidHostname() { if me.statusOS.ValidHostname() {
log.Log(CHANGE, "Your hostname is VALID:", me.statusOS.GetHostname()) log.Log(CHANGE, "GOOD Your hostname is VALID:", me.statusOS.GetHostname())
} else { } else {
log.Log(CHANGE, "You must first fix your hostname:", me.statusOS.GetHostname()) log.Log(CHANGE, "You must first fix your hostname:", me.statusOS.GetHostname())
return false return false
} }
if me.digStatus.IPv4() { if me.digStatus.IPv4() {
log.Log(CHANGE, "IPv4 addresses are resolving") log.Log(CHANGE, "GOOD IPv4 addresses are resolving")
} else { } else {
log.Log(CHANGE, "You must first figure out why you can't look up IPv4 addresses") log.Log(CHANGE, "You must first figure out why you can't look up IPv4 addresses")
log.Log(CHANGE, "Are you on the internet at all?") log.Log(CHANGE, "Are you on the internet at all?")
return false return false
} }
if me.digStatus.IPv6() { if me.digStatus.IPv6() {
log.Log(CHANGE, "IPv6 addresses are resolving") log.Log(CHANGE, "GOOD IPv6 addresses are resolving")
} else { } else {
log.Log(CHANGE, "You must first figure out why you can't look up IPv6 addresses") log.Log(CHANGE, "You must first figure out why you can't look up IPv6 addresses")
return false return false
} }
if ! me.statusDNS.IPv4() { if ! me.statusDNS.IPv4() {
log.Log(CHANGE, "You do not have real IPv4 addresses. Nothing to fix here") log.Log(CHANGE, "OK You do not have real IPv4 addresses. Nothing to fix here")
} }
if ! me.statusDNS.IPv6() { if ! me.statusDNS.IPv6() {
log.Log(CHANGE, "IPv6 DNS is broken. Check what is broken here") log.Log(CHANGE, "IPv6 DNS is broken. Check what is broken here")
@ -40,7 +41,7 @@ func fix() bool {
return false return false
} }
} }
log.Log(CHANGE, "YOU SHOULD BE IN IPv6 BLISS") log.Log(CHANGE, "GOOD YOU SHOULD BE IN IPv6 BLISS")
return true return true
} }
@ -102,7 +103,13 @@ func deleteFromDNS(aaaa string) bool {
func addToDNS(aaaa string) bool { func addToDNS(aaaa string) bool {
log.Log(CHANGE, "TODO: Add this to DNS !!!!", aaaa) log.Log(CHANGE, "TODO: Add this to DNS !!!!", aaaa)
log.Log(CHANGE, "what is your API provider?") api := me.statusDNS.API()
log.Log(CHANGE, "what is your API provider?", api)
if api == "cloudflare" {
log.Log(CHANGE, "Let's try an ADD via the Cloudflare API")
hostname := me.statusOS.GetHostname()
return cloudflare.Create("wit.com", hostname, aaaa)
}
return false return false
} }

5
gui.go
View File

@ -193,7 +193,10 @@ func mainWindow(title string) {
me.digStatus.window.Toggle() me.digStatus.window.Toggle()
}) })
gr.NewButton("cloudflare wit.com", func () { gr.NewButton("cloudflare wit.com", func () {
cloudflare.CreateRR(me.myGui, "wit.com", "3777302ac4a78cd7fa4f6d3f72086d06") if me.witcom != nil {
me.witcom.Toggle()
}
me.witcom = cloudflare.CreateRR(me.myGui, "wit.com", "3777302ac4a78cd7fa4f6d3f72086d06")
}) })
gr.NewButton("Debug", func () { gr.NewButton("Debug", func () {
me.debug.Toggle() me.debug.Toggle()

View File

@ -29,6 +29,7 @@ func myreg(f *log.LogFlag, b bool, name string, desc string) {
func init() { func init() {
myreg(&NOW, true, "NOW", "temp debugging stuff") myreg(&NOW, true, "NOW", "temp debugging stuff")
myreg(&INFO, false, "INFO", "normal debugging stuff")
myreg(&NET, false, "NET", "Network Logging") myreg(&NET, false, "NET", "Network Logging")
myreg(&DNS, false, "DNS", "dnsStatus.update()") myreg(&DNS, false, "DNS", "dnsStatus.update()")
myreg(&PROC, false, "PROC", "/proc logging") myreg(&PROC, false, "PROC", "/proc logging")

View File

@ -6,6 +6,7 @@ import (
"time" "time"
"go.wit.com/gui/gui" "go.wit.com/gui/gui"
"go.wit.com/gui/gadgets" "go.wit.com/gui/gadgets"
// "go.wit.com/gui/cloudflare"
"go.wit.com/control-panels/dns/linuxstatus" "go.wit.com/control-panels/dns/linuxstatus"
"github.com/miekg/dns" "github.com/miekg/dns"
@ -57,6 +58,7 @@ type Host struct {
statusIPv6 *gadgets.OneLiner statusIPv6 *gadgets.OneLiner
digStatusButton *gui.Node digStatusButton *gui.Node
witcom *gadgets.BasicWindow
} }
type IPtype struct { type IPtype struct {