Merge pull request #1278 from yousong/shadowsocks-libev
[project/luci.git] / applications / luci-app-travelmate / luasrc / model / cbi / travelmate / wifi_edit.lua
1 -- Copyright 2017 Dirk Brenken (dev@brenken.org)
2 -- This is free software, licensed under the Apache License, Version 2.0
3
4 local fs = require("nixio.fs")
5 local uci = require("luci.model.uci").cursor()
6 local http = require("luci.http")
7
8 m = SimpleForm("edit", translate("Edit Wireless Uplink Configuration"))
9 m.cancel = translate("Back to overview")
10 m.reset = false
11
12 function m.on_cancel()
13         http.redirect(luci.dispatcher.build_url("admin/services/travelmate/stations"))
14 end
15
16 m.hidden = {
17         cfg = http.formvalue("cfg")
18 }
19
20 local s = uci:get_all("wireless", m.hidden.cfg)
21 if s ~= nil then
22         wssid = m:field(Value, "ssid", translate("SSID"))
23         wssid.default = s.ssid
24         if s.encryption and s.key then
25                 wkey = m:field(Value, "key", translatef("Passphrase (%s)", s.encryption))
26                 wkey.password = true
27                 wkey.default = s.key
28                 if s.encryption == "wep" then
29                         wkey.datatype = "wepkey"
30                 else
31                         wkey.datatype = "wpakey"
32                 end
33         end
34 else
35         m.on_cancel()
36 end
37
38 function wssid.write(self, section, value)
39         uci:set("wireless", m.hidden.cfg, "ssid", wssid:formvalue(section))
40         if s.encryption and s.key then
41                 uci:set("wireless", m.hidden.cfg, "key", wkey:formvalue(section))
42         end
43         uci:save("wireless")
44         uci:commit("wireless")
45         m.on_cancel()
46 end
47
48 return m