2017-05-20 14:46:29 +02:00
|
|
|
package meshviewerFFRGB
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
2018-01-07 21:00:56 +01:00
|
|
|
"github.com/FreifunkBremen/yanic/lib/jsontime"
|
2017-05-20 14:46:29 +02:00
|
|
|
"github.com/FreifunkBremen/yanic/runtime"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Meshviewer struct {
|
|
|
|
Timestamp jsontime.Time `json:"timestamp"`
|
|
|
|
Nodes []*Node `json:"nodes"`
|
|
|
|
Links []*Link `json:"links"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Node struct {
|
|
|
|
Firstseen jsontime.Time `json:"firstseen"`
|
|
|
|
Lastseen jsontime.Time `json:"lastseen"`
|
|
|
|
IsOnline bool `json:"is_online"`
|
|
|
|
IsGateway bool `json:"is_gateway"`
|
|
|
|
Clients uint32 `json:"clients"`
|
|
|
|
ClientsWifi24 uint32 `json:"clients_wifi24"`
|
|
|
|
ClientsWifi5 uint32 `json:"clients_wifi5"`
|
|
|
|
ClientsOthers uint32 `json:"clients_other"`
|
2017-11-17 11:00:01 +01:00
|
|
|
RootFSUsage float64 `json:"rootfs_usage"`
|
|
|
|
LoadAverage float64 `json:"loadavg"`
|
2017-05-20 14:46:29 +02:00
|
|
|
MemoryUsage *float64 `json:"memory_usage,omitempty"`
|
|
|
|
Uptime jsontime.Time `json:"uptime,omitempty"`
|
|
|
|
GatewayNexthop string `json:"gateway_nexthop,omitempty"`
|
|
|
|
GatewayIPv4 string `json:"gateway,omitempty"`
|
|
|
|
GatewayIPv6 string `json:"gateway6,omitempty"`
|
|
|
|
NodeID string `json:"node_id"`
|
2017-11-04 20:22:22 +01:00
|
|
|
MAC string `json:"mac"`
|
|
|
|
Addresses []string `json:"addresses"`
|
2017-05-20 14:46:29 +02:00
|
|
|
SiteCode string `json:"site_code,omitempty"`
|
|
|
|
Hostname string `json:"hostname"`
|
2017-11-03 14:05:52 +01:00
|
|
|
Owner string `json:"owner,omitempty"`
|
2017-05-20 14:46:29 +02:00
|
|
|
Location *Location `json:"location,omitempty"`
|
|
|
|
Firmware Firmware `json:"firmware,omitempty"`
|
|
|
|
Autoupdater Autoupdater `json:"autoupdater"`
|
|
|
|
Nproc int `json:"nproc"`
|
|
|
|
Model string `json:"model,omitempty"`
|
|
|
|
VPN bool `json:"vpn"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Firmware out of software
|
|
|
|
type Firmware struct {
|
|
|
|
Base string `json:"base,omitempty"`
|
|
|
|
Release string `json:"release,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Autoupdater
|
|
|
|
type Autoupdater struct {
|
|
|
|
Enabled bool `json:"enabled"`
|
|
|
|
Branch string `json:"branch,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Location struct
|
|
|
|
type Location struct {
|
2017-11-23 13:01:39 +01:00
|
|
|
Longitude float64 `json:"longitude,omitempty"`
|
|
|
|
Latitude float64 `json:"latitude,omitempty"`
|
2017-05-20 14:46:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Link
|
|
|
|
type Link struct {
|
2017-11-14 19:32:24 +01:00
|
|
|
Type string `json:"type"`
|
|
|
|
Source string `json:"source"`
|
|
|
|
Target string `json:"target"`
|
|
|
|
SourceTQ float32 `json:"source_tq"`
|
|
|
|
TargetTQ float32 `json:"target_tq"`
|
|
|
|
SourceMAC string `json:"source_mac"`
|
|
|
|
TargetMAC string `json:"target_mac"`
|
2017-05-20 14:46:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewNode(nodes *runtime.Nodes, n *runtime.Node) *Node {
|
|
|
|
node := &Node{
|
|
|
|
Firstseen: n.Firstseen,
|
|
|
|
Lastseen: n.Lastseen,
|
|
|
|
IsOnline: n.Online,
|
|
|
|
IsGateway: n.IsGateway(),
|
|
|
|
}
|
|
|
|
|
|
|
|
if nodeinfo := n.Nodeinfo; nodeinfo != nil {
|
|
|
|
node.NodeID = nodeinfo.NodeID
|
2017-11-04 20:22:22 +01:00
|
|
|
node.MAC = nodeinfo.Network.Mac
|
|
|
|
node.Addresses = nodeinfo.Network.Addresses
|
2017-05-20 14:46:29 +02:00
|
|
|
node.SiteCode = nodeinfo.System.SiteCode
|
|
|
|
node.Hostname = nodeinfo.Hostname
|
2017-11-03 14:05:52 +01:00
|
|
|
if owner := nodeinfo.Owner; owner != nil {
|
|
|
|
node.Owner = owner.Contact
|
|
|
|
}
|
2017-05-20 14:46:29 +02:00
|
|
|
if location := nodeinfo.Location; location != nil {
|
|
|
|
node.Location = &Location{
|
2017-11-23 13:01:39 +01:00
|
|
|
Longitude: location.Longitude,
|
2017-12-27 02:12:15 +01:00
|
|
|
Latitude: location.Latitude,
|
2017-05-20 14:46:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
node.Firmware = nodeinfo.Software.Firmware
|
|
|
|
node.Autoupdater = Autoupdater{
|
|
|
|
Enabled: nodeinfo.Software.Autoupdater.Enabled,
|
|
|
|
Branch: nodeinfo.Software.Autoupdater.Branch,
|
|
|
|
}
|
|
|
|
node.Nproc = nodeinfo.Hardware.Nproc
|
|
|
|
node.Model = nodeinfo.Hardware.Model
|
|
|
|
node.VPN = nodeinfo.VPN
|
|
|
|
}
|
|
|
|
if statistic := n.Statistics; statistic != nil {
|
2017-12-27 02:12:15 +01:00
|
|
|
if n.Online {
|
|
|
|
node.Clients = statistic.Clients.Total
|
|
|
|
node.ClientsWifi24 = statistic.Clients.Wifi24
|
|
|
|
node.ClientsWifi5 = statistic.Clients.Wifi5
|
2017-05-20 14:46:29 +02:00
|
|
|
|
2017-12-27 02:12:15 +01:00
|
|
|
clientsWifi := node.ClientsWifi24 + node.ClientsWifi5
|
|
|
|
if node.Clients == 0 {
|
|
|
|
node.Clients = clientsWifi
|
|
|
|
} else if node.Clients >= clientsWifi {
|
|
|
|
node.ClientsOthers = node.Clients - clientsWifi
|
|
|
|
}
|
2017-05-20 14:46:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
node.RootFSUsage = statistic.RootFsUsage
|
|
|
|
node.LoadAverage = statistic.LoadAverage
|
|
|
|
|
|
|
|
/* The Meshviewer could not handle absolute memory output
|
|
|
|
* calc the used memory as a float which 100% equal 1.0
|
|
|
|
* calc is coppied from node statuspage (look discussion:
|
|
|
|
* https://github.com/FreifunkBremen/yanic/issues/35)
|
|
|
|
*/
|
|
|
|
if statistic.Memory.Total > 0 {
|
|
|
|
usage := 1 - (float64(statistic.Memory.Free)+float64(statistic.Memory.Buffers)+float64(statistic.Memory.Cached))/float64(statistic.Memory.Total)
|
|
|
|
node.MemoryUsage = &usage
|
|
|
|
}
|
|
|
|
|
|
|
|
node.Uptime = jsontime.Now().Add(time.Duration(statistic.Uptime) * -time.Second)
|
|
|
|
node.GatewayNexthop = nodes.GetNodeIDbyMAC(statistic.GatewayNexthop)
|
|
|
|
if node.GatewayNexthop == "" {
|
|
|
|
node.GatewayNexthop = statistic.GatewayNexthop
|
|
|
|
}
|
|
|
|
node.GatewayIPv4 = nodes.GetNodeIDbyMAC(statistic.GatewayIPv4)
|
|
|
|
if node.GatewayIPv4 == "" {
|
|
|
|
node.GatewayIPv4 = statistic.GatewayIPv4
|
|
|
|
}
|
|
|
|
node.GatewayIPv6 = nodes.GetNodeIDbyMAC(statistic.GatewayIPv6)
|
|
|
|
if node.GatewayIPv6 == "" {
|
|
|
|
node.GatewayIPv6 = statistic.GatewayIPv6
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return node
|
|
|
|
}
|