Wifi devices should not be deletable (UVL override)
[project/luci.git] / modules / admin-mini / luasrc / model / cbi / mini / wifi.lua
1 --[[
2 LuCI - Lua Configuration Interface
3
4 Copyright 2008 Steven Barth <steven@midlink.org>
5 Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
6
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10
11         http://www.apache.org/licenses/LICENSE-2.0
12
13 $Id$
14 ]]--
15
16 -- Data init --
17
18 local wlcursor = luci.model.uci.cursor_state()
19 local wireless = wlcursor:get_all("wireless")
20 local wifidata = luci.sys.wifi.getiwconfig()
21 local wifidevs = {}
22 local ifaces = {}
23
24 for k, v in pairs(wireless) do
25         if v[".type"] == "wifi-iface" then
26                 table.insert(ifaces, v)
27         end
28 end
29
30 wlcursor:foreach("wireless", "wifi-device",
31         function(section)
32                 table.insert(wifidevs, section[".name"])
33         end)
34
35
36 -- Main Map --
37
38 m = Map("wireless", translate("wifi"), translate("a_w_devices1"))
39 m:chain("network")
40
41
42 -- Status Table --
43 s = m:section(Table, ifaces, translate("networks"))
44
45 link = s:option(DummyValue, "_link", translate("link"))
46 function link.cfgvalue(self, section)
47         local ifname = self.map:get(section, "ifname")
48         return wifidata[ifname] and wifidata[ifname]["Link Quality"] or "-"
49 end
50
51 essid = s:option(DummyValue, "ssid", "ESSID")
52
53 bssid = s:option(DummyValue, "_bsiid", "BSSID")
54 function bssid.cfgvalue(self, section)
55         local ifname = self.map:get(section, "ifname")
56         return (wifidata[ifname] and (wifidata[ifname].Cell 
57          or wifidata[ifname]["Access Point"])) or "-"
58 end
59
60 channel = s:option(DummyValue, "channel", translate("channel"))
61 function channel.cfgvalue(self, section)
62         return wireless[self.map:get(section, "device")].channel
63 end
64
65 protocol = s:option(DummyValue, "_mode", translate("protocol"))
66 function protocol.cfgvalue(self, section)
67         local mode = wireless[self.map:get(section, "device")].mode
68         return mode and "802." .. mode
69 end
70
71 mode = s:option(DummyValue, "mode", translate("mode"))
72 encryption = s:option(DummyValue, "encryption", translate("iwscan_encr"))
73
74 power = s:option(DummyValue, "_power", translate("power"))
75 function power.cfgvalue(self, section)
76         local ifname = self.map:get(section, "ifname")
77         return wifidata[ifname] and wifidata[ifname]["Tx-Power"] or "-"
78 end
79
80 scan = s:option(Button, "_scan", translate("scan"))
81 scan.inputstyle = "find"
82
83 function scan.cfgvalue(self, section)
84         return self.map:get(section, "ifname") or false
85 end
86
87 -- WLAN-Scan-Table --
88
89 t2 = m:section(Table, {}, translate("iwscan"), translate("iwscan1"))
90
91 function scan.write(self, section)
92         t2.render = t2._render
93         local ifname = self.map:get(section, "ifname")
94         luci.util.update(t2.data, luci.sys.wifi.iwscan(ifname))
95 end
96
97 t2._render = t2.render
98 t2.render = function() end
99
100 t2:option(DummyValue, "Quality", translate("iwscan_link"))
101 essid = t2:option(DummyValue, "ESSID", "ESSID")
102 function essid.cfgvalue(self, section)
103         return self.map:get(section, "ESSID")
104 end
105
106 t2:option(DummyValue, "Address", "BSSID")
107 t2:option(DummyValue, "Mode", translate("mode"))
108 chan = t2:option(DummyValue, "channel", translate("channel"))
109 function chan.cfgvalue(self, section)
110         return self.map:get(section, "Channel")
111             or self.map:get(section, "Frequency")
112             or "-"
113 end 
114
115 t2:option(DummyValue, "Encryption key", translate("iwscan_encr"))
116
117 t2:option(DummyValue, "Signal level", translate("iwscan_signal"))
118
119 t2:option(DummyValue, "Noise level", translate("iwscan_noise"))
120
121
122
123 if #wifidevs < 1 then
124         return m
125 end
126
127 -- Config Section --
128
129 s = m:section(NamedSection, wifidevs[1], "wifi-device", translate("devices"))
130 s.addremove = false
131
132 en = s:option(Flag, "disabled", translate("enable"))
133 en.enabled = "0"
134 en.disabled = "1"
135
136 function en.cfgvalue(self, section)
137         return Flag.cfgvalue(self, section) or "0"
138 end
139
140
141 local hwtype = m:get(wifidevs[1], "type")
142
143 if hwtype == "atheros" then
144         mode = s:option(ListValue, "mode", translate("mode"))
145         mode.override_values = true
146         mode:value("", "auto")
147         mode:value("11b", "802.11b")
148         mode:value("11g", "802.11g")
149         mode:value("11a", "802.11a")
150         mode:value("11bg", "802.11b+g")
151         mode.rmempty = true
152 end
153
154
155 ch = s:option(Value, "channel", translate("a_w_channel"))
156 for i=1, 14 do
157         ch:value(i, i .. " (2.4 GHz)")
158 end
159
160
161 s = m:section(TypedSection, "wifi-iface", translate("m_n_local"))
162 s.anonymous = true
163 s.addremove = false
164
165 s:option(Value, "ssid", translate("a_w_netid"))
166
167 bssid = s:option(Value, "bssid", translate("wifi_bssid"))
168
169 local devs = {}
170 luci.model.uci.cursor():foreach("wireless", "wifi-device",
171         function (section)
172                 table.insert(devs, section[".name"])
173         end)
174         
175 if #devs > 1 then
176         device = s:option(DummyValue, "device", translate("device"))
177 else
178         s.defaults.device = devs[1]
179 end
180
181 mode = s:option(ListValue, "mode", translate("mode"))
182 mode.override_values = true
183 mode:value("ap", translate("m_w_ap"))
184 mode:value("adhoc", translate("m_w_adhoc"))
185 mode:value("sta", translate("m_w_client"))
186
187 function mode.write(self, section, value)
188         if value == "sta" then
189                 -- ToDo: Move this away
190                 if not m.uci:get("network", "wan") then
191                         m.uci:set("network", "wan", "proto", "none")
192                         m.uci:set("network", "wan", "ifname", " ")
193                 end
194
195                 local oldif = m.uci:get("network", "wan", "ifname")
196                 if oldif and oldif ~= " " then
197                         m.uci:set("network", "wan", "_ifname", oldif)
198                 end
199                 m.uci:set("network", "wan", "ifname", " ")
200
201                 self.map:set(section, "network", "wan")
202         else
203                 if m.uci:get("network", "wan", "_ifname") then
204                         m.uci:set("network", "wan", "ifname", m.uci:get("network", "wan", "_ifname"))
205                 end
206                 self.map:set(section, "network", "lan")
207         end
208
209         return ListValue.write(self, section, value)
210 end
211
212 encr = s:option(ListValue, "encryption", translate("encryption"))
213 encr.override_values = true
214 encr:value("none", "No Encryption")
215 encr:value("wep", "WEP")
216
217 if hwtype == "atheros" or hwtype == "mac80211" then
218         local supplicant = luci.fs.mtime("/usr/sbin/wpa_supplicant")
219         local hostapd = luci.fs.mtime("/usr/sbin/hostapd")
220
221         if hostapd and supplicant then
222                 encr:value("psk", "WPA-PSK")
223                 encr:value("psk2", "WPA2-PSK")
224                 encr:value("wpa", "WPA-Radius", {mode="ap"})
225                 encr:value("wpa2i", "WPA2-Radius", {mode="ap"})
226         elseif hostapd and not supplicant then
227                 encr:value("psk", "WPA-PSK", {mode="ap"}, {mode="adhoc"})
228                 encr:value("psk2", "WPA2-PSK", {mode="ap"}, {mode="adhoc"})
229                 encr:value("wpa", "WPA-Radius", {mode="ap"})
230                 encr:value("wpa2i", "WPA2-Radius", {mode="ap"})
231                 encr.description = translate("wifi_wpareq")
232         elseif not hostapd and supplicant then
233                 encr:value("psk", "WPA-PSK", {mode="sta"})
234                 encr:value("psk2", "WPA2-PSK", {mode="sta"})
235                 encr.description = translate("wifi_wpareq")
236         else
237                 encr.description = translate("wifi_wpareq")
238         end
239 elseif hwtype == "broadcom" then
240         encr:value("psk", "WPA-PSK")
241         encr:value("psk2", "WPA2-PSK")
242 end
243
244 key = s:option(Value, "key", translate("key"))
245 key:depends("encryption", "wep")
246 key:depends("encryption", "psk")
247 key:depends("encryption", "wpa")
248 key:depends("encryption", "psk2")
249 key:depends("encryption", "wpa2i")
250 key.rmempty = true
251
252 server = s:option(Value, "server", translate("a_w_radiussrv"))
253 server:depends("encryption", "wpa")
254 server:depends("encryption", "wpa2i")
255 server.rmempty = true
256
257 port = s:option(Value, "port", translate("a_w_radiusport"))
258 port:depends("encryption", "wpa")
259 port:depends("encryption", "wpa2i")
260 port.rmempty = true
261
262
263 if hwtype == "atheros" or hwtype == "broadcom" then
264         iso = s:option(Flag, "isolate", translate("a_w_apisolation"), translate("a_w_apisolation1"))
265         iso.rmempty = true
266         iso:depends("mode", "ap")
267         
268         hide = s:option(Flag, "hidden", translate("a_w_hideessid"))
269         hide.rmempty = true
270         hide:depends("mode", "ap")
271 end
272
273 if hwtype == "mac80211" or hwtype == "atheros" then
274         bssid:depends({mode="adhoc"})
275 end
276
277 if hwtype == "broadcom" then
278         bssid:depends({mode="wds"})
279 end
280
281
282 return m