FFWizard rewrite
[project/luci.git] / applications / luci-ffwizard-leipzig / luasrc / model / cbi / ffwizard.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
17
18 local uci = require "luci.model.uci".cursor()
19 local tools = require "luci.tools.ffwizard"
20
21
22 -------------------- View --------------------
23 f = SimpleForm("ffwizward", "Freifunkassistent",
24  "Dieser Assistent unterstüzt bei der Einrichtung des Routers für das Freifunknetz.")
25
26
27 dev = f:field(ListValue, "device", "WLAN-Gerät")
28 uci:foreach("wireless", "wifi-device",
29         function(section)
30                 dev:value(section[".name"])
31         end)
32
33
34 main = f:field(Flag, "wifi", "Freifunkzugang einrichten")
35
36 net = f:field(Value, "net", "Freifunknetz")
37 net.rmempty = true
38 net:depends("wifi", "1")
39 net:value("104.61", "Leipzig (104.61)")
40 net:value("104.62", "Halle (104.62)")
41 function net.cfgvalue(self, section)
42         return uci:get("freifunk", "wizard", "net")
43 end
44 function net.write(self, section, value)
45         uci:set("freifunk", "wizard", "net", value)
46         uci:save("freifunk")
47 end
48
49
50 subnet = f:field(ListValue, "subnet", "Subnetz (Projekt)")
51 subnet.rmempty = true
52 subnet:depends("wifi", "1")
53 for i=0, 255 do
54         subnet:value(i)
55 end 
56 function subnet.cfgvalue(self, section)
57         return uci:get("freifunk", "wizard", "subnet")
58 end
59 function subnet.write(self, section, value)
60         uci:set("freifunk", "wizard", "subnet", value)
61         uci:save("freifunk")
62 end
63
64 node = f:field(Value, "node", "Knoten")
65 node.rmempty = true
66 node:depends("wifi", "1")
67 for i=1, 51 do
68         node:value(i)
69 end
70 function node.cfgvalue(self, section)
71         return uci:get("freifunk", "wizard", "node")
72 end
73 function node.write(self, section, value)
74         uci:set("freifunk", "wizard", "node", value)
75         uci:save("freifunk")
76 end
77
78 client = f:field(Flag, "client", "WLAN-DHCP anbieten")
79 client:depends("wifi", "1")
80
81
82 olsr = f:field(Flag, "olsr", "OLSR einrichten")
83
84 share = f:field(ListValue, "sharenet", "Eigenen Internetzugang freigeben")
85 share:value("maybe", "-- keine Aktion --")
86 share:value("yes", "einschalten")
87 share:value("no", "ausschalten")
88
89
90
91 -------------------- Control --------------------
92 function f.handle(self, state, data)
93         if state == FORM_VALID then
94                 luci.http.redirect(luci.dispatcher.build_url("admin", "uci", "changes"))
95                 return false
96         elseif state == FORM_INVALID then
97                 self.errmessage = "Ungültige Eingabe: Bitte die Formularfelder auf Fehler prüfen."
98         end
99         return true
100 end
101
102 local function _strip_internals(tbl)
103         tbl = tbl or {}
104         for k, v in pairs(tbl) do
105                 if k:sub(1, 1) == "." then
106                         tbl[k] = nil
107                 end
108         end
109         return tbl
110 end
111
112 -- Configure Freifunk checked
113 function main.write(self, section, value)
114         if value == "0" then
115                 return
116         end
117         
118         local device = dev:formvalue(section)
119
120         -- Collect IP-Address
121         local inet = net:formvalue(section)
122         local isubnet = subnet:formvalue(section)
123         local inode = node:formvalue(section)
124         
125         -- Invalidate fields
126         if not inet then
127                 net.tag_missing[section] = true
128         end
129         if not isubnet then
130                 subnet.tag_missing[section] = true
131         end
132         if not inode then
133                 node.tag_missing[section] = true
134         end
135         
136         if not inet or not isubnet or not inode then
137                 return
138         end
139         
140         local ip = "%s.%s.%s" % {inet, isubnet, inode}
141         
142         
143         -- Cleanup
144         tools.wifi_delete_ifaces(device)
145         tools.network_remove_interface(device)
146         tools.firewall_zone_remove_interface("freifunk", device)
147                 
148         
149         -- Tune wifi device
150         local devconfig = _strip_internals(uci:get_all("freifunk", "wifi_device"))
151         uci:tset("wireless", device, devconfig)
152         
153         -- Create wifi iface
154         local ifconfig = _strip_internals(uci:get_all("freifunk", "wifi_iface"))
155         ifconfig.device = device
156         uci:section("wireless", "wifi-iface", nil, ifconfig)
157         
158         -- Save wifi
159         uci:save("wireless")    
160         
161         -- Create firewall zone and add default rules (first time)
162         local newzone = tools.firewall_create_zone("freifunk", "DROP", "ACCEPT", "DROP", true)
163         if newzone then
164                 uci:foreach("freifunk", "fw_forwarding", function(section)
165                         uci:section("firewall", "forwarding", nil, _strip_internals(section))
166                 end)
167                 
168                 uci:foreach("freifunk", "fw_rule", function(section)
169                         uci:section("firewall", "rule", nil, _strip_internals(section))
170                 end)
171                 
172                 uci:save("firewall")
173         end
174         
175         
176         -- Crate network interface
177         local netconfig = _strip_internals(uci:get_all("freifunk", "interface"))
178         netconfig.ipaddr = ip
179         uci:section("network", "interface", device, netconfig)
180         
181         uci:save("network")
182         
183         tools.firewall_zone_add_interface("freifunk", device)
184 end
185
186
187 function olsr.write(self, section, value)
188         if value == "0" then
189                 return
190         end
191         
192         local device = dev:formvalue(section)
193         
194         -- Delete old interface
195         uci:delete_all("freifunk", "Interface", {Interface=device})
196         
197         -- Write new interface
198         local olsrbase = _strip_internals(uci:get_all("freifunk", "olsr_interface"))
199         olsrbase.Interface = device
200         uci:section("olsr", "Interface", nil, olsrbase)
201         uci:save("olsr")
202 end
203
204
205 function share.write(self, section, value)
206         if value == "maybe" then
207                 return
208         end
209         
210         uci:delete_all("firewall", "forwarding", {src="freifunk", dest="wan"})
211         
212         if value == "yes" then
213                 uci:section("firewall", "forwarding", nil, {src="freifunk", dest="wan"})
214         end
215         uci:save("firewall")
216 end
217
218
219 function client.write(self, section, value)
220         if value == "0" then
221                 return
222         end
223         
224         local device = dev:formvalue(section)
225
226         -- Collect IP-Address
227         local inet = net:formvalue(section)
228         local isubnet = subnet:formvalue(section)
229         local inode = node:formvalue(section)
230         
231         if not inet or not isubnet or not inode then
232                 return
233         end
234         
235         local dhcpbeg = 48 + tonumber(inode) * 4 
236         local dclient = "%s.%s.%s" % {inet:gsub("^[0-9]+", "10"), isubnet, dhcpbeg}
237         local limit = dhcpbeg < 252 and 3 or 2
238         
239         -- Delete old alias
240         uci:delete("network", device .. "dhcp")
241         
242         -- Create alias
243         local aliasbase = _strip_internals(uci:get_all("freifunk", "alias"))
244         aliasbase.interface = device
245         aliasbase.ipaddr = dclient
246         aliasbase.proto = "static"
247         uci:section("network", "alias", device .. "dhcp", aliasbase)
248         uci:save("network")
249         
250         
251         -- Create dhcp
252         local dhcpbase = _strip_internals(uci:get_all("freifunk", "dhcp"))
253         dhcpbase.interface = device .. "dhcp"
254         dhcpbase.start = dhcpbeg
255         dhcpbase.limit = limit
256
257         uci:section("dhcp", "dhcp", device .. "dhcp", dhcpbase)
258         uci:save("dhcp")
259         
260         
261         -- Delete old splash
262         uci:delete_all("luci_splash", "iface", {net=device, zone="freifunk"})
263         
264         -- Register splash
265         uci:section("luci_splash", "iface", nil, {net=device, zone="freifunk"})
266         uci:save("luci_splash")
267 end
268
269 return f