NIU:
[project/luci.git] / modules / niu / luasrc / model / cbi / niu / network / wan.lua
index 6c23738..b7351ff 100644 (file)
@@ -1,11 +1,45 @@
 local cursor = require "luci.model.uci".cursor()
+
+if not cursor:get("network", "wan") then
+       cursor:section("network", "interface", "wan", {proto = "none"})
+       cursor:save("network")
+end
+
+local function deviceroute(self)
+       cursor:unload("network")
+       local wd = cursor:get("network", "wan", "_wandev") or ""
+       
+       if wd == "none" then
+               cursor:set("network", "wan", "proto", "none")
+       end
+       
+       if wd:find("ethernet:") == 1 then
+               cursor:set("network", "wan", "defaultroute", "1")
+               cursor:set("network", "wan", "ifname", wd:sub(10))
+               self:set_route("etherwan")
+       else
+               cursor:delete("network", "wan", "ifname")
+       end
+       
+       if wd:find("wlan:") == 1 then
+       
+       else
+               cursor:delete_all("wireless", "wifi-iface", {network = "wan"}) 
+       end
+       
+       cursor:save("wireless")
+       cursor:save("network")
+end
+
+
 local d = Delegator()
 d.allow_finish = true
 d.allow_back = true
 d.allow_cancel = true
 
 d:add("device", load("niu/network/wandevice"))
-d:add("etherwan", load("niu/network/etherwan"))
+d:add("deviceroute", deviceroute)
+d:set("etherwan", load("niu/network/etherwan"))
 
 function d.on_cancel()
        cursor:revert("network")