d7cf400945161b93d53206a386f823d80b4f59c0
[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 local util = require "luci.util"
21
22
23 -------------------- View --------------------
24 f = SimpleForm("ffwizward", "Freifunkassistent",
25  "Dieser Assistent unterstüzt bei der Einrichtung des Routers für das Freifunknetz.")
26
27
28 dev = f:field(ListValue, "device", "WLAN-Gerät")
29 uci:foreach("wireless", "wifi-device",
30         function(section)
31                 dev:value(section[".name"])
32         end)
33
34
35 main = f:field(Flag, "wifi", "Freifunkzugang einrichten")
36
37 net = f:field(Value, "net", "Freifunknetz", "1. Teil der IP-Adresse")
38 net.rmempty = true
39 net:depends("wifi", "1")
40 uci:foreach("freifunk", "community", function(s)
41         net:value(s[".name"], "%s (%s)" % {s.name, s.prefix})
42 end)
43
44 function net.cfgvalue(self, section)
45         return uci:get("freifunk", "wizard", "net")
46 end
47 function net.write(self, section, value)
48         uci:set("freifunk", "wizard", "net", value)
49         uci:save("freifunk")
50 end
51
52
53 subnet = f:field(Value, "subnet", "Subnetz (Projekt)", "2. Teil der IP-Adresse")
54 subnet.rmempty = true
55 subnet:depends("wifi", "1")
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", "3. Teil der IP-Adresse")
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 client.rmempty = true
81
82
83 olsr = f:field(Flag, "olsr", "OLSR einrichten")
84 olsr.rmempty = true
85
86 share = f:field(Flag, "sharenet", "Eigenen Internetzugang freigeben")
87 share.rmempty = true
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         local community, external
120
121         -- Collect IP-Address
122         local inet = net:formvalue(section)
123         local isubnet = subnet:formvalue(section)
124         local inode = node:formvalue(section)
125
126         -- Invalidate fields
127         if not inet then
128                 net.tag_missing[section] = true
129         else
130                 community = inet
131                 external  = uci:get("freifunk", community, "external") or ""
132                 inet = uci:get("freifunk", community, "prefix") or inet
133         end
134         if not isubnet then
135                 subnet.tag_missing[section] = true
136         end
137         if not inode then
138                 node.tag_missing[section] = true
139         end
140
141         if not inet or not isubnet or not inode then
142                 return
143         end
144
145         local ip = "%s.%s.%s" % {inet, isubnet, inode}
146
147
148         -- Cleanup
149         tools.wifi_delete_ifaces(device)
150         tools.network_remove_interface(device)
151         tools.firewall_zone_remove_interface("freifunk", device)
152
153         -- Tune community settings
154         if community and uci:get("freifunk", community) then
155                 uci:tset("freifunk", "community", uci:get_all("freifunk", community))
156         end
157
158         -- Tune wifi device
159         local devconfig = uci:get_all("freifunk", "wifi_device")
160         util.update(devconfig, uci:get_all(external, "wifi_device") or {})
161         uci:tset("wireless", device, devconfig)
162
163         -- Create wifi iface
164         local ifconfig = uci:get_all("freifunk", "wifi_iface")
165         util.update(ifconfig, uci:get_all(external, "wifi_iface") or {})
166         ifconfig.device = device
167         ifconfig.network = device
168         ifconfig.ssid = uci:get("freifunk", community, "ssid")
169         uci:section("wireless", "wifi-iface", nil, ifconfig)
170
171         -- Save wifi
172         uci:save("wireless")
173
174         -- Create firewall zone and add default rules (first time)
175         local newzone = tools.firewall_create_zone("freifunk", "DROP", "ACCEPT", "DROP", true)
176         if newzone then
177                 uci:foreach("freifunk", "fw_forwarding", function(section)
178                         uci:section("firewall", "forwarding", nil, section)
179                 end)
180                 uci:foreach(external, "fw_forwarding", function(section)
181                         uci:section("firewall", "forwarding", nil, section)
182                 end)
183
184                 uci:foreach("freifunk", "fw_rule", function(section)
185                         uci:section("firewall", "rule", nil, section)
186                 end)
187                 uci:foreach(external, "fw_rule", function(section)
188                         uci:section("firewall", "rule", nil, section)
189                 end)
190
191                 uci:save("firewall")
192         end
193
194
195         -- Crate network interface
196         local netconfig = uci:get_all("freifunk", "interface")
197         util.update(netconfig, uci:get_all(external, "interface") or {})
198         netconfig.proto = "static"
199         netconfig.ipaddr = ip
200         uci:section("network", "interface", device, netconfig)
201
202         uci:save("network")
203
204         tools.firewall_zone_add_interface("freifunk", device)
205 end
206
207
208 function olsr.write(self, section, value)
209         if value == "0" then
210                 return
211         end
212
213
214         local device = dev:formvalue(section)
215
216         local community = net:formvalue(section)
217         local external  = community and uci:get("freifunk", community, "external") or ""
218
219         -- Delete old interface
220         uci:delete_all("olsrd", "Interface", {interface=device})
221
222         -- Write new interface
223         local olsrbase = uci:get_all("freifunk", "olsr_interface")
224         util.update(olsrbase, uci:get_all(external, "olsr_interface") or {})
225         olsrbase.interface = device
226         olsrbase.ignore    = "0"
227         uci:section("olsrd", "Interface", nil, olsrbase)
228         uci:save("olsrd")
229 end
230
231
232 function share.write(self, section, value)
233         uci:delete_all("firewall", "forwarding", {src="freifunk", dest="wan"})
234
235         if value == "1" then
236                 uci:section("firewall", "forwarding", nil, {src="freifunk", dest="wan"})
237         end
238         uci:save("firewall")
239 end
240
241
242 function client.write(self, section, value)
243         if value == "0" then
244                 return
245         end
246
247         local device = dev:formvalue(section)
248
249         -- Collect IP-Address
250         local inet = net:formvalue(section)
251         local isubnet = subnet:formvalue(section)
252         local inode = node:formvalue(section)
253
254         if not inet or not isubnet or not inode then
255                 return
256         end
257         local community = inet
258         local external  = community and uci:get("freifunk", community, "external") or ""
259         inet = uci:get("freifunk", community, "prefix") or inet
260
261         local dhcpbeg = 48 + tonumber(inode) * 4
262         local dclient = "%s.%s.%s" % {inet:gsub("^[0-9]+", "10"), isubnet, dhcpbeg}
263         local limit = dhcpbeg < 252 and 3 or 2
264
265         -- Delete old alias
266         uci:delete("network", device .. "dhcp")
267
268         -- Create alias
269         local aliasbase = uci:get_all("freifunk", "alias")
270         util.update(aliasbase, uci:get_all(external, "alias") or {})
271         aliasbase.interface = device
272         aliasbase.ipaddr = dclient
273         aliasbase.proto = "static"
274         uci:section("network", "alias", device .. "dhcp", aliasbase)
275         uci:save("network")
276
277
278         -- Create dhcp
279         local dhcpbase = uci:get_all("freifunk", "dhcp")
280         util.update(dhcpbase, uci:get_all(external, "dhcp") or {})
281         dhcpbase.interface = device .. "dhcp"
282         dhcpbase.start = dhcpbeg
283         dhcpbase.limit = limit
284
285         uci:section("dhcp", "dhcp", device .. "dhcp", dhcpbase)
286         uci:save("dhcp")
287
288         uci:delete_all("firewall", "rule", {
289                 src="freifunk",
290                 proto="udp",
291                 src_port="68",
292                 dest_port="67"
293         })
294         uci:section("firewall", "rule", nil, {
295                 src="freifunk",
296                 proto="udp",
297                 src_port="68",
298                 dest_port="67",
299                 target="ACCEPT"
300         })
301
302
303
304         -- Delete old splash
305         uci:delete_all("luci_splash", "iface", {net=device, zone="freifunk"})
306
307         -- Register splash
308         uci:section("luci_splash", "iface", nil, {net=device, zone="freifunk"})
309         uci:save("luci_splash")
310 end
311
312 return f