Renamed reworked UCI API to uci2 to allow a peaceful coexistence with the old one
[project/luci.git] / modules / admin-full / luasrc / model / cbi / admin_network / network.lua
index c0f66e9..fce84fe 100644 (file)
@@ -15,16 +15,15 @@ $Id$
 require("luci.sys")
 require("luci.tools.webadmin")
 
-
+local netstate = luci.model.uci.cursor_state():get_all("network")
 m = Map("network", translate("interfaces"))
-m.stateful = true
 
 local created
 local netstat = luci.sys.net.deviceinfo()
 
 s = m:section(TypedSection, "interface", "")
 s.addremove = true
-s.extedit   = luci.http.getenv("REQUEST_URI") .. "/%s"
+s.extedit   = luci.dispatcher.build_url("admin", "network", "network") .. "/%s"
 s.template  = "cbi/tblsection"
 
 function s.filter(self, section)
@@ -40,20 +39,36 @@ end
 function s.parse(self, ...)
        TypedSection.parse(self, ...)
        if created then
-               luci.http.redirect(luci.http.getenv("REQUEST_URI") .. "/" .. created)
+               m.uci:save("network")
+               luci.http.redirect(luci.dispatcher.build_url("admin", "network", "network")
+                .. "/" .. created)
        end
 end
 
 up = s:option(Flag, "up")
+function up.cfgvalue(self, section)
+       return netstate[section] and netstate[section].up or "0"
+end
+
 function up.write(self, section, value)
-       local call = value == "1" and "ifup" or "ifdown"
-       os.execute(call .. " " .. section)
+       local call
+       if value == "1" then
+               call = "ifup"
+       elseif value == "0" then
+               call = "ifdown"
+       end
+       os.execute(call .. " " .. section .. " >/dev/null 2>&1")
 end
 
 ifname = s:option(DummyValue, "ifname", translate("device"))
+function ifname.cfgvalue(self, section)
+       return netstate[section] and netstate[section].ifname
+end
+
 ifname.titleref = luci.dispatcher.build_url("admin", "network", "vlan")
 
-if luci.model.uci.load("firewall") then
+
+if luci.model.uci.cursor():load("firewall") then
        zone = s:option(DummyValue, "_zone", translate("zone"))
        zone.titleref = luci.dispatcher.build_url("admin", "network", "firewall", "zones")
 
@@ -74,7 +89,6 @@ end
 
 
 ipaddr = s:option(DummyValue, "ipaddr", translate("addresses"))
-
 function ipaddr.cfgvalue(self, section)
        local addr = luci.tools.webadmin.network_get_addresses(section)
        return table.concat(addr, ", ")