add the gluon-luci-wifi-config package

This commit is contained in:
do9xe 2015-01-20 07:49:36 +01:00
parent 93e48e0a9c
commit dd07b98330
3 changed files with 109 additions and 0 deletions

View File

@ -0,0 +1,32 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=gluon-luci-wifi-config
PKG_VERSION:=0.1
PKG_RELEASE:=1
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
include $(INCLUDE_DIR)/package.mk
define Package/gluon-luci-wifi-config
SECTION:=gluon
CATEGORY:=Gluon
DEPENDS:=+gluon-luci-admin
TITLE:=UI for switching wifi on/off
endef
define Build/Prepare
mkdir -p $(PKG_BUILD_DIR)
endef
define Build/Configure
endef
define Build/Compile
endef
define Package/gluon-luci-wifi-config/install
$(CP) ./files/* $(1)/
endef
$(eval $(call BuildPackage,gluon-luci-wifi-config))

View File

@ -0,0 +1,5 @@
module("luci.controller.admin.wifi-config", package.seeall)
function index()
entry({"admin", "wifi-config"}, cbi("admin/wifi-config"), "WLAN-Config", 20)
end

View File

@ -0,0 +1,72 @@
local f, s, o
local uci = luci.model.uci.cursor()
local config = 'wireless'
-- where to read the configuration from
f = SimpleForm("wifi", "WLAN-Config")
f.reset = false
f.template = "admin/expertmode"
f.submit = "Speichern"
s = f:section(SimpleSection, nil, [[
Viele Freifunk-Communitys betreiben ein sogenanntes Dachnetz. Das bedeutet, dass
manche Router sich über große Strecken miteinander verbinden, um viele kleine
Mesh-Netze miteinander zu verbinden. Um diese weiten Verbindungen effektiver zu
gestalten hast du hier die Möglichkeit die SSID, mit der sich die Clients verbinden,
zu deaktivieren.
]])
local radios = {}
uci:foreach('wireless', 'wifi-device',
function(s)
table.insert(radios, s['.name'])
end
)
for index, radio in ipairs(radios) do
local hwmode = uci:get('wireless', radio, 'hwmode')
if hwmode == '11g' or hwmode == '11ng' then
o = s:option(Flag, 'clientbox' .. index, "2,4GHz Client Netz aktivieren")
o.default = (uci:get_bool(config, 'client_' .. radio, "disabled")) and o.disabled or o.enabled
o.rmempty = false
o = s:option(Flag, 'meshbox' .. index, "2,4GHz Mesh Netz aktivieren")
o.default = (uci:get_bool(config, 'client_' .. radio, "disabled")) and o.disabled or o.enabled
o.rmempty = false
elseif hwmode == '11a' or hwmode == '11na' then
o = s:option(Flag, 'clientbox' .. index, "5GHz Client Netz aktivieren")
o.default = (uci:get_bool(config, 'client_' .. radio, "disabled")) and o.disabled or o.enabled
o.rmempty = false
o = s:option(Flag, 'meshbox' .. index, "5GHz Mesh Netz aktivieren")
o.default = (uci:get_bool(config, 'client_' .. radio, "disabled")) and o.disabled or o.enabled
o.rmempty = false
end
end
function f.handle(self, state, data)
if state == FORM_VALID then
for index, radio in ipairs(radios) do
local currentclient = 'client_' .. radio
local currentmesh = 'mesh_' .. radio
uci:set(config, currentclient, "disabled", not data["clientbox"..index])
uci:set(config, currentmesh, "disabled", not data["meshbox"..index])
end
uci:save(config)
uci:commit(config)
end
end
return f