-
Notifications
You must be signed in to change notification settings - Fork 1
/
utils.go
103 lines (94 loc) · 2.5 KB
/
utils.go
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
// Copyright 2024 Blink Labs Software
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"context"
_ "embed"
"fmt"
"net"
"os/exec"
"strings"
"time"
"github.com/oschwald/geoip2-golang"
"github.com/blinklabs-io/nview/internal/config"
)
func getNodeVersion() (version string, revision string, err error) {
cfg := config.GetConfig()
cmd := exec.Command(cfg.Node.Binary, "version")
stdout, err := cmd.Output()
if err != nil {
return "N/A", "N/A", err
}
strArray := strings.Split(string(stdout), string(' '))
if strArray == nil {
return "N/A", "N/A", fmt.Errorf("error")
}
version = strArray[1]
revision = strArray[7]
if len(revision) > 8 {
revision = revision[0:8]
}
return version, revision, nil
}
var publicIP *net.IP
func getPublicIP(ctx context.Context) (net.IP, error) {
// First, check for external address using custom resolver so we can
// use a given DNS server to resolve our public address
r := &net.Resolver{
PreferGo: true,
Dial: func(ctx context.Context, network, address string) (net.Conn, error) {
d := net.Dialer{
Timeout: time.Second * time.Duration(3),
}
return d.DialContext(ctx, network, "resolver1.opendns.com:53")
},
}
// Lookup special address to get our public IP
ips, err := r.LookupIP(ctx, "ip4", "myip.opendns.com")
if err != nil {
return nil, err
}
if ips != nil {
return ips[0], nil
}
return nil, nil
}
// MaxMind database (20240206), available from https://www.maxmind.com
//
//go:embed resources/GeoLite2-City.mmdb
var MaxmindDB []byte
func getGeoIP(ctx context.Context, address string) string {
db, err := geoip2.FromBytes(MaxmindDB)
if err != nil {
return "---"
}
defer db.Close()
ip := net.ParseIP(address)
record, err := db.City(ip)
if err != nil {
return "---"
}
if len(record.City.Names["en"]) == 0 {
if len(record.Country.IsoCode) == 0 {
return "---"
} else {
return fmt.Sprintf("%v", record.Country.IsoCode)
}
}
return fmt.Sprintf(
"%v, %v",
record.City.Names["en"],
record.Country.IsoCode,
)
}