mirror of https://github.com/jetkvm/kvm.git
Compare commits
2 Commits
1097deeaf8
...
1671a245f2
| Author | SHA1 | Date |
|---|---|---|
|
|
1671a245f2 | |
|
|
e9df46baec |
17
network.go
17
network.go
|
|
@ -110,6 +110,13 @@ func triggerTimeSyncOnNetworkStateChange() {
|
||||||
}()
|
}()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func setPublicIPReadyState(ipv4Ready, ipv6Ready bool) {
|
||||||
|
if publicIPState == nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
publicIPState.SetIPv4AndIPv6(ipv4Ready, ipv6Ready)
|
||||||
|
}
|
||||||
|
|
||||||
func networkStateChanged(_ string, state types.InterfaceState) {
|
func networkStateChanged(_ string, state types.InterfaceState) {
|
||||||
// do not block the main thread
|
// do not block the main thread
|
||||||
go waitCtrlAndRequestDisplayUpdate(true, "network_state_changed")
|
go waitCtrlAndRequestDisplayUpdate(true, "network_state_changed")
|
||||||
|
|
@ -121,16 +128,10 @@ func networkStateChanged(_ string, state types.InterfaceState) {
|
||||||
if state.Online {
|
if state.Online {
|
||||||
networkLogger.Info().Msg("network state changed to online, triggering time sync")
|
networkLogger.Info().Msg("network state changed to online, triggering time sync")
|
||||||
triggerTimeSyncOnNetworkStateChange()
|
triggerTimeSyncOnNetworkStateChange()
|
||||||
|
|
||||||
if publicIPState != nil {
|
|
||||||
publicIPState.SetIPv4AndIPv6(state.IPv4Ready, state.IPv6Ready)
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if publicIPState != nil {
|
|
||||||
publicIPState.SetIPv4AndIPv6(false, false)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
setPublicIPReadyState(state.IPv4Ready, state.IPv6Ready)
|
||||||
|
|
||||||
// always restart mDNS when the network state changes
|
// always restart mDNS when the network state changes
|
||||||
if mDNS != nil {
|
if mDNS != nil {
|
||||||
restartMdns()
|
restartMdns()
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@ import (
|
||||||
"net"
|
"net"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/url"
|
"net/url"
|
||||||
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
@ -52,19 +53,36 @@ func (ps *PublicIPState) checkCloudflare(ctx context.Context, family int) (*Publ
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
values := make(map[string]string)
|
||||||
for line := range strings.SplitSeq(string(body), "\n") {
|
for line := range strings.SplitSeq(string(body), "\n") {
|
||||||
key, value, ok := strings.Cut(line, "=")
|
key, value, ok := strings.Cut(line, "=")
|
||||||
if !ok || key != "ip" {
|
if !ok {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
values[key] = value
|
||||||
return &PublicIP{
|
|
||||||
IPAddress: net.ParseIP(value),
|
|
||||||
LastUpdated: time.Now(),
|
|
||||||
}, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil, fmt.Errorf("no IP address found")
|
ps.lastUpdated = time.Now()
|
||||||
|
if ts, ok := values["ts"]; ok {
|
||||||
|
if ts, err := strconv.ParseFloat(ts, 64); err == nil {
|
||||||
|
ps.lastUpdated = time.Unix(int64(ts), 0)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ipStr, ok := values["ip"]
|
||||||
|
if !ok {
|
||||||
|
return nil, fmt.Errorf("no IP address found")
|
||||||
|
}
|
||||||
|
|
||||||
|
ip := net.ParseIP(ipStr)
|
||||||
|
if ip == nil {
|
||||||
|
return nil, fmt.Errorf("invalid IP address: %s", ipStr)
|
||||||
|
}
|
||||||
|
|
||||||
|
return &PublicIP{
|
||||||
|
IPAddress: ip,
|
||||||
|
LastUpdated: ps.lastUpdated,
|
||||||
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// checkAPI uses the API endpoint to get the public IP address
|
// checkAPI uses the API endpoint to get the public IP address
|
||||||
|
|
|
||||||
|
|
@ -92,22 +92,6 @@ func (ps *PublicIPState) SetIPv4AndIPv6(ipv4, ipv6 bool) {
|
||||||
ps.ipv6 = ipv6
|
ps.ipv6 = ipv6
|
||||||
}
|
}
|
||||||
|
|
||||||
// SetIPv4 sets if we need to track IPv4 public IP addresses
|
|
||||||
func (ps *PublicIPState) SetIPv4(ipv4 bool) {
|
|
||||||
ps.mu.Lock()
|
|
||||||
defer ps.mu.Unlock()
|
|
||||||
|
|
||||||
ps.ipv4 = ipv4
|
|
||||||
}
|
|
||||||
|
|
||||||
// SetIPv6 sets if we need to track IPv6 public IP addresses
|
|
||||||
func (ps *PublicIPState) SetIPv6(ipv6 bool) {
|
|
||||||
ps.mu.Lock()
|
|
||||||
defer ps.mu.Unlock()
|
|
||||||
|
|
||||||
ps.ipv6 = ipv6
|
|
||||||
}
|
|
||||||
|
|
||||||
// SetCloudflareEndpoint sets the Cloudflare endpoint
|
// SetCloudflareEndpoint sets the Cloudflare endpoint
|
||||||
func (ps *PublicIPState) SetCloudflareEndpoint(endpoint string) {
|
func (ps *PublicIPState) SetCloudflareEndpoint(endpoint string) {
|
||||||
ps.mu.Lock()
|
ps.mu.Lock()
|
||||||
|
|
|
||||||
|
|
@ -7,8 +7,25 @@ import { PublicIP } from "@hooks/stores";
|
||||||
import { m } from "@localizations/messages.js";
|
import { m } from "@localizations/messages.js";
|
||||||
import { JsonRpcResponse, useJsonRpc } from "@hooks/useJsonRpc";
|
import { JsonRpcResponse, useJsonRpc } from "@hooks/useJsonRpc";
|
||||||
import notifications from "@/notifications";
|
import notifications from "@/notifications";
|
||||||
|
import { formatters } from "@/utils";
|
||||||
|
|
||||||
|
|
||||||
|
const TimeAgoLabel = ({ date }: { date: Date }) => {
|
||||||
|
const [timeAgo, setTimeAgo] = useState<string | undefined>(formatters.timeAgo(date));
|
||||||
|
useEffect(() => {
|
||||||
|
const interval = setInterval(() => {
|
||||||
|
setTimeAgo(formatters.timeAgo(date));
|
||||||
|
}, 1000);
|
||||||
|
return () => clearInterval(interval);
|
||||||
|
}, [date]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<span className="text-sm text-slate-600 dark:text-slate-400 select-none">
|
||||||
|
{timeAgo}
|
||||||
|
</span>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
export default function PublicIPCard() {
|
export default function PublicIPCard() {
|
||||||
const { send } = useJsonRpc();
|
const { send } = useJsonRpc();
|
||||||
|
|
||||||
|
|
@ -21,6 +38,8 @@ export default function PublicIPCard() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const publicIPs = resp.result as PublicIP[];
|
const publicIPs = resp.result as PublicIP[];
|
||||||
|
// sort the public IPs by IP address
|
||||||
|
// IPv6 addresses are sorted after IPv4 addresses
|
||||||
setPublicIPs(publicIPs.sort(({ ip: aIp }, { ip: bIp }) => {
|
setPublicIPs(publicIPs.sort(({ ip: aIp }, { ip: bIp }) => {
|
||||||
const aIsIPv6 = aIp.includes(":");
|
const aIsIPv6 = aIp.includes(":");
|
||||||
const bIsIPv6 = bIp.includes(":");
|
const bIsIPv6 = bIp.includes(":");
|
||||||
|
|
@ -74,6 +93,7 @@ export default function PublicIPCard() {
|
||||||
<span className="text-sm font-medium">
|
<span className="text-sm font-medium">
|
||||||
{ip.ip}
|
{ip.ip}
|
||||||
</span>
|
</span>
|
||||||
|
{ip.last_updated && <TimeAgoLabel date={new Date(ip.last_updated)} />}
|
||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue