package main import ( "log" "strings" "time" ) func processGateways() []node { d := getDevices(conf.Gateways.GatewaysURL) var nodes []node for i := range d.Devices { log.Println("Processing Static Device: ", d.Devices[i].Name) nodes = append(nodes, node{ Firstseen: time.Now().Format(iso8601), Lastseen: time.Now().Format(iso8601), IsOnline: true, IsGateway: true, Clients: 0, ClientsWifi24: 0, ClientsWifi5: 0, ClientsOther: 0, RootFSUsage: 0, LoadAVG: 0, MemoryUsage: 0, Uptime: time.Now().Format(iso8601), GatewayNexthop: "", Gateway: "", NodeID: strings.ReplaceAll(d.Devices[i].MAC, ":", ""), MAC: d.Devices[i].MAC, Domain: d.Devices[i].Domain, Hostname: "[Gateway] " + d.Devices[i].Name, Owner: "Freifunk Troisdorf", Firmware: firmware{ Base: "KVM", Release: "Ubuntu 22.04", }, Autoupdater: autoupdater{ Enabled: false, Branch: "stable", }, NProc: 1, Model: "KVM", }) } return nodes }