mirror of
				https://github.com/taigrr/wtf
				synced 2025-01-18 04:03:14 -08:00 
			
		
		
		
	* Another actions test Signed-off-by: Chris Cummer <chriscummer@me.com> * Add BuildTest action Signed-off-by: Chris Cummer <chriscummer@me.com> * Remove lint check for the time being (so many issues) Signed-off-by: Chris Cummer <chriscummer@me.com> * Fix issues found by errcheck Signed-off-by: Chris Cummer <chriscummer@me.com> * Fix errors found by staticcheck Signed-off-by: Chris Cummer <chriscummer@me.com> * Fix issues found by goimports Signed-off-by: Chris Cummer <chriscummer@me.com> * Comment out the action for the time being Signed-off-by: Chris Cummer <chriscummer@me.com> * Fix shadowed variables Signed-off-by: Chris Cummer <chriscummer@me.com> * go mod tidy Signed-off-by: Chris Cummer <chriscummer@me.com> * Remove buildtest.yml Signed-off-by: Chris Cummer <chriscummer@me.com> * go mod tidy Signed-off-by: Chris Cummer <chriscummer@me.com>
		
			
				
	
	
		
			139 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			139 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package ipinfo
 | |
| 
 | |
| import (
 | |
| 	"bytes"
 | |
| 	"encoding/json"
 | |
| 	"fmt"
 | |
| 	"net"
 | |
| 	"net/http"
 | |
| 	"text/template"
 | |
| 
 | |
| 	"github.com/rivo/tview"
 | |
| 	"github.com/wtfutil/wtf/view"
 | |
| )
 | |
| 
 | |
| type Widget struct {
 | |
| 	view.TextWidget
 | |
| 
 | |
| 	result   string
 | |
| 	settings *Settings
 | |
| }
 | |
| 
 | |
| type ipinfo struct {
 | |
| 	Ip           string `json:"ip"`
 | |
| 	Hostname     string `json:"hostname"`
 | |
| 	City         string `json:"city"`
 | |
| 	Region       string `json:"region"`
 | |
| 	Country      string `json:"country"`
 | |
| 	Coordinates  string `json:"loc"`
 | |
| 	PostalCode   string `json:"postal"`
 | |
| 	Organization string `json:"org"`
 | |
| }
 | |
| 
 | |
| func NewWidget(app *tview.Application, settings *Settings) *Widget {
 | |
| 	widget := Widget{
 | |
| 		TextWidget: view.NewTextWidget(app, settings.common),
 | |
| 
 | |
| 		settings: settings,
 | |
| 	}
 | |
| 
 | |
| 	widget.View.SetWrap(false)
 | |
| 
 | |
| 	return &widget
 | |
| }
 | |
| 
 | |
| func (widget *Widget) Refresh() {
 | |
| 	widget.ipinfo()
 | |
| 
 | |
| 	widget.Redraw(func() (string, string, bool) { return widget.CommonSettings().Title, widget.result, false })
 | |
| }
 | |
| 
 | |
| //this method reads the config and calls ipinfo for ip information
 | |
| func (widget *Widget) ipinfo() {
 | |
| 	client := &http.Client{}
 | |
| 	var url string
 | |
| 	ip, ipv6 := getMyIP()
 | |
| 	if ipv6 {
 | |
| 		url = fmt.Sprintf("https://ipinfo.io/%s", ip.String())
 | |
| 	} else {
 | |
| 		url = "https://ipinfo.io/"
 | |
| 	}
 | |
| 
 | |
| 	req, err := http.NewRequest("GET", url, nil)
 | |
| 	if err != nil {
 | |
| 		widget.result = err.Error()
 | |
| 		return
 | |
| 	}
 | |
| 	req.Header.Set("User-Agent", "curl")
 | |
| 	response, err := client.Do(req)
 | |
| 	if err != nil {
 | |
| 		widget.result = err.Error()
 | |
| 		return
 | |
| 	}
 | |
| 	defer func() { _ = response.Body.Close() }()
 | |
| 
 | |
| 	var info ipinfo
 | |
| 	err = json.NewDecoder(response.Body).Decode(&info)
 | |
| 	if err != nil {
 | |
| 		widget.result = err.Error()
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	widget.setResult(&info)
 | |
| }
 | |
| 
 | |
| func (widget *Widget) setResult(info *ipinfo) {
 | |
| 	resultTemplate, _ := template.New("ipinfo_result").Parse(
 | |
| 		formatableText("IP", "Ip") +
 | |
| 			formatableText("Hostname", "Hostname") +
 | |
| 			formatableText("City", "City") +
 | |
| 			formatableText("Region", "Region") +
 | |
| 			formatableText("Country", "Country") +
 | |
| 			formatableText("Loc", "Coordinates") +
 | |
| 			formatableText("Org", "Organization"),
 | |
| 	)
 | |
| 
 | |
| 	resultBuffer := new(bytes.Buffer)
 | |
| 
 | |
| 	err := resultTemplate.Execute(resultBuffer, map[string]string{
 | |
| 		"subheadingColor": widget.settings.common.Colors.Subheading,
 | |
| 		"valueColor":      widget.settings.common.Colors.Text,
 | |
| 		"Ip":              info.Ip,
 | |
| 		"Hostname":        info.Hostname,
 | |
| 		"City":            info.City,
 | |
| 		"Region":          info.Region,
 | |
| 		"Country":         info.Country,
 | |
| 		"Coordinates":     info.Coordinates,
 | |
| 		"PostalCode":      info.PostalCode,
 | |
| 		"Organization":    info.Organization,
 | |
| 	})
 | |
| 
 | |
| 	if err != nil {
 | |
| 		widget.result = err.Error()
 | |
| 	}
 | |
| 
 | |
| 	widget.result = resultBuffer.String()
 | |
| }
 | |
| 
 | |
| func formatableText(key, value string) string {
 | |
| 	return fmt.Sprintf(" [{{.subheadingColor}}]%8s[-:-:-] [{{.valueColor}}]{{.%s}}\n", key, value)
 | |
| }
 | |
| 
 | |
| // getMyIP provides this system's default IPv4 or IPv6 IP address for routing WAN requests.
 | |
| // It does so by dialing out to a site known to have both an A and AAAA DNS records (IPv6)
 | |
| // The 'net' package is allowed to decide how to connect, connecting to both IPv4 or IPv6 address
 | |
| // depending on the availbility of IP protocols.
 | |
| func getMyIP() (ip net.IP, v6 bool) {
 | |
| 	conn, err := net.Dial("tcp", "fast.com:80")
 | |
| 	if err != nil {
 | |
| 		return
 | |
| 	}
 | |
| 	defer func() { _ = conn.Close() }()
 | |
| 
 | |
| 	addr := conn.LocalAddr().(*net.TCPAddr)
 | |
| 	ip = addr.IP
 | |
| 	v6 = ip.To4() == nil
 | |
| 
 | |
| 	return
 | |
| }
 |