mirror of
https://github.com/henrygd/beszel.git
synced 2026-09-27 03:47:47 +02:00
Stats.WiFi is now map[string]int8 (json "wf") holding only available RSSI readings; SSID and unavailable signals stay in Info.WiFi. Averages are rounded to whole dBm. Wi-Fi is collected only on the default 60s interval; real-time requests reuse the last snapshot to avoid spawning osascript / dumping the BSS cache every second.
58 lines
1.6 KiB
Go
58 lines
1.6 KiB
Go
// Package wifi collects only currently associated station interfaces. Collection
|
|
// failures are empty snapshots, never cached connected state.
|
|
package wifi
|
|
|
|
import (
|
|
"context"
|
|
"math"
|
|
"os"
|
|
"os/exec"
|
|
"time"
|
|
"unicode/utf8"
|
|
|
|
"github.com/henrygd/beszel/internal/entities/system"
|
|
)
|
|
|
|
type commandRunner func(context.Context, string, ...string) ([]byte, error)
|
|
|
|
func run(ctx context.Context, name string, args ...string) ([]byte, error) {
|
|
cmd := exec.CommandContext(ctx, name, args...)
|
|
cmd.Env = append(os.Environ(), "LC_ALL=C", "LANG=C")
|
|
cmd.WaitDelay = 100 * time.Millisecond
|
|
return cmd.Output()
|
|
}
|
|
|
|
// validSSID omits non-UTF-8 SSIDs: 802.11 permits arbitrary octets, but CBOR
|
|
// text strings require UTF-8. Metadata must never invalidate the whole response.
|
|
func validSSID(ssid string) string {
|
|
if !utf8.ValidString(ssid) {
|
|
return ""
|
|
}
|
|
return ssid
|
|
}
|
|
|
|
// Collect uses a single deadline across interface queries where supported.
|
|
// Unsupported platforms and denied association access produce no readings;
|
|
// later polls retry.
|
|
func Collect() map[string]system.WiFi {
|
|
ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
|
|
defer cancel()
|
|
return collect(ctx)
|
|
}
|
|
|
|
// Signals reduces a snapshot to the RSSI values stored in stats history.
|
|
// Interfaces without an available reading are omitted.
|
|
func Signals(snapshot map[string]system.WiFi) map[string]int8 {
|
|
var signals map[string]int8
|
|
for id, reading := range snapshot {
|
|
if reading.Signal == nil {
|
|
continue
|
|
}
|
|
if signals == nil {
|
|
signals = make(map[string]int8, len(snapshot))
|
|
}
|
|
signals[id] = int8(max(math.Round(*reading.Signal), math.MinInt8))
|
|
}
|
|
return signals
|
|
}
|