modules/admin-full: add menupoints for wifi networks

This commit is contained in:
Jo-Philipp Wich 2011-01-20 23:25:40 +00:00
parent 510a023d77
commit b8c1487f6d

View file

@ -17,6 +17,7 @@ module("luci.controller.admin.network", package.seeall)
function index() function index()
require("luci.i18n") require("luci.i18n")
local uci = require("luci.model.uci").cursor() local uci = require("luci.model.uci").cursor()
local net = require "luci.model.network".init(uci)
local i18n = luci.i18n.translate local i18n = luci.i18n.translate
local has_wifi = nixio.fs.stat("/etc/config/wireless") local has_wifi = nixio.fs.stat("/etc/config/wireless")
local has_switch = false local has_switch = false
@ -59,6 +60,18 @@ function index()
page = entry({"admin", "network", "wireless_status"}, call("wifi_status"), nil, 16) page = entry({"admin", "network", "wireless_status"}, call("wifi_status"), nil, 16)
page.leaf = true page.leaf = true
local wdev
for _, wdev in ipairs(net:get_wifidevs()) do
local wnet
for _, wnet in ipairs(wdev:get_wifinets()) do
entry(
{"admin", "network", "wireless", wnet.netid},
alias("admin", "network", "wireless"),
wdev:name() .. ": " .. wnet:shortname()
)
end
end
end end
page = entry({"admin", "network", "network"}, arcombine(cbi("admin_network/network"), cbi("admin_network/ifaces")), i18n("Interfaces"), 10) page = entry({"admin", "network", "network"}, arcombine(cbi("admin_network/network"), cbi("admin_network/ifaces")), i18n("Interfaces"), 10)
@ -307,6 +320,7 @@ function iface_delete()
end end
function wifi_status() function wifi_status()
local netm = require "luci.model.network".init()
local path = luci.dispatcher.context.requestpath local path = luci.dispatcher.context.requestpath
local arp = luci.sys.net.arptable() local arp = luci.sys.net.arptable()
local rv = { } local rv = { }
@ -314,17 +328,22 @@ function wifi_status()
local dev local dev
for dev in path[#path]:gmatch("[%w%.%-]+") do for dev in path[#path]:gmatch("[%w%.%-]+") do
local j = { id = dev } local j = { id = dev }
local iw = luci.sys.wifi.getiwinfo(dev) local wn = netm:get_wifinet(dev)
local iw = wn and wn.iwinfo
if iw then if iw then
local f local f
for _, f in ipairs({ for _, f in ipairs({
"channel", "frequency", "txpower", "bitrate", "signal", "noise", "channel", "frequency", "txpower", "bitrate", "signal", "noise",
"quality", "quality_max", "mode", "ssid", "bssid", "country", "quality", "quality_max", "bssid", "country",
"encryption", "ifname", "assoclist" "encryption", "ifname", "assoclist"
}) do }) do
j[f] = iw[f] j[f] = iw[f]
end end
end end
j.mode = wn and wn:active_mode() or "?"
j.ssid = wn and wn:active_ssid() or "?"
rv[#rv+1] = j rv[#rv+1] = j
end end