2018-01-03 08:19:46 +00:00
|
|
|
-- Copyright 2017-2018 Dirk Brenken (dev@brenken.org)
|
2017-07-19 20:36:47 +00:00
|
|
|
-- This is free software, licensed under the Apache License, Version 2.0
|
|
|
|
|
2017-12-06 16:05:40 +00:00
|
|
|
local fs = require("nixio.fs")
|
|
|
|
local uci = require("luci.model.uci").cursor()
|
|
|
|
local http = require("luci.http")
|
2017-07-19 20:36:47 +00:00
|
|
|
local trmiface = uci.get("travelmate", "global", "trm_iface") or "trm_wwan"
|
2017-12-15 18:17:07 +00:00
|
|
|
local encr_psk = {"psk", "psk2", "psk-mixed"}
|
|
|
|
local encr_wpa = {"wpa", "wpa2", "wpa-mixed"}
|
2017-07-19 20:36:47 +00:00
|
|
|
|
|
|
|
m = SimpleForm("add", translate("Add Wireless Uplink Configuration"))
|
2017-08-05 16:57:20 +00:00
|
|
|
m.submit = translate("Save")
|
2017-07-19 20:36:47 +00:00
|
|
|
m.cancel = translate("Back to overview")
|
|
|
|
m.reset = false
|
|
|
|
|
|
|
|
function m.on_cancel()
|
|
|
|
http.redirect(luci.dispatcher.build_url("admin/services/travelmate/stations"))
|
|
|
|
end
|
|
|
|
|
|
|
|
m.hidden = {
|
|
|
|
device = http.formvalue("device"),
|
|
|
|
ssid = http.formvalue("ssid"),
|
2017-12-06 16:05:40 +00:00
|
|
|
bssid = http.formvalue("bssid"),
|
2017-07-19 20:36:47 +00:00
|
|
|
wep = http.formvalue("wep"),
|
2017-08-03 15:04:58 +00:00
|
|
|
wpa_suites = http.formvalue("wpa_suites"),
|
2017-07-19 20:36:47 +00:00
|
|
|
wpa_version = http.formvalue("wpa_version")
|
|
|
|
}
|
|
|
|
|
2017-07-24 13:30:01 +00:00
|
|
|
if m.hidden.ssid ~= "" then
|
|
|
|
wssid = m:field(Value, "ssid", translate("SSID"))
|
2017-12-06 16:05:40 +00:00
|
|
|
wssid.datatype = "rangelength(1,32)"
|
|
|
|
wssid.default = m.hidden.ssid or ""
|
2017-07-24 13:30:01 +00:00
|
|
|
else
|
|
|
|
wssid = m:field(Value, "ssid", translate("SSID (hidden)"))
|
|
|
|
end
|
2017-07-19 20:36:47 +00:00
|
|
|
|
2018-01-03 08:19:46 +00:00
|
|
|
nobssid = m:field(Flag, "no_bssid", translate("Ignore BSSID"))
|
|
|
|
nobssid.default = nobssid.enabled
|
|
|
|
|
2017-12-06 16:05:40 +00:00
|
|
|
bssid = m:field(Value, "bssid", translate("BSSID"))
|
2018-01-03 08:19:46 +00:00
|
|
|
bssid:depends("no_bssid", 0)
|
2017-12-06 16:05:40 +00:00
|
|
|
bssid.datatype = "macaddr"
|
|
|
|
bssid.default = m.hidden.bssid or ""
|
|
|
|
|
2017-07-19 20:36:47 +00:00
|
|
|
if (tonumber(m.hidden.wep) or 0) == 1 then
|
2017-12-13 19:21:57 +00:00
|
|
|
encr = m:field(ListValue, "encryption", translate("Encryption"))
|
|
|
|
encr:value("wep", "WEP")
|
|
|
|
encr:value("wep+open", "WEP Open System")
|
|
|
|
encr:value("wep+mixed", "WEP mixed")
|
|
|
|
encr:value("wep+shared", "WEP Shared Key")
|
|
|
|
encr.default = "wep+open"
|
|
|
|
|
|
|
|
wkey = m:field(Value, "key", translate("WEP-Passphrase"))
|
2017-07-19 20:36:47 +00:00
|
|
|
wkey.password = true
|
|
|
|
wkey.datatype = "wepkey"
|
2017-12-06 16:05:40 +00:00
|
|
|
elseif (tonumber(m.hidden.wpa_version) or 0) > 0 then
|
|
|
|
if m.hidden.wpa_suites == "PSK" or m.hidden.wpa_suites == "PSK2" then
|
2017-12-13 19:21:57 +00:00
|
|
|
encr = m:field(ListValue, "encryption", translate("Encryption"))
|
|
|
|
encr:value("psk", "WPA PSK")
|
|
|
|
encr:value("psk-mixed", "WPA/WPA2 mixed")
|
|
|
|
encr:value("psk2", "WPA2 PSK")
|
2017-12-15 18:17:07 +00:00
|
|
|
encr.default = encr_psk[tonumber(m.hidden.wpa_version)] or "psk2"
|
2017-12-13 19:21:57 +00:00
|
|
|
|
|
|
|
ciph = m:field(ListValue, "cipher", translate("Cipher"))
|
|
|
|
ciph:value("auto", translate("Automatic"))
|
|
|
|
ciph:value("ccmp", translate("Force CCMP (AES)"))
|
|
|
|
ciph:value("tkip", translate("Force TKIP"))
|
|
|
|
ciph:value("tkip+ccmp", translate("Force TKIP and CCMP (AES)"))
|
|
|
|
ciph.default = "auto"
|
|
|
|
|
|
|
|
wkey = m:field(Value, "key", translate("WPA-Passphrase"))
|
2017-12-06 16:05:40 +00:00
|
|
|
wkey.password = true
|
|
|
|
wkey.datatype = "wpakey"
|
|
|
|
elseif m.hidden.wpa_suites == "802.1X" then
|
2017-12-13 19:21:57 +00:00
|
|
|
encr = m:field(ListValue, "encryption", translate("Encryption"))
|
|
|
|
encr:value("wpa", "WPA Enterprise")
|
|
|
|
encr:value("wpa-mixed", "WPA/WPA2 Enterprise mixed")
|
|
|
|
encr:value("wpa2", "WPA2 Enterprise")
|
2017-12-15 18:17:07 +00:00
|
|
|
encr.default = encr_wpa[tonumber(m.hidden.wpa_version)] or "wpa2"
|
2017-12-13 19:21:57 +00:00
|
|
|
|
|
|
|
ciph = m:field(ListValue, "cipher", translate("Cipher"))
|
|
|
|
ciph:value("auto", translate("Automatic"))
|
|
|
|
ciph:value("ccmp", translate("Force CCMP (AES)"))
|
|
|
|
ciph:value("tkip", translate("Force TKIP"))
|
|
|
|
ciph:value("tkip+ccmp", translate("Force TKIP and CCMP (AES)"))
|
|
|
|
ciph.default = "auto"
|
|
|
|
|
2017-12-06 16:05:40 +00:00
|
|
|
eaptype = m:field(ListValue, "eap_type", translate("EAP-Method"))
|
2017-12-13 19:21:57 +00:00
|
|
|
eaptype:value("tls", "TLS")
|
|
|
|
eaptype:value("ttls", "TTLS")
|
|
|
|
eaptype:value("peap", "PEAP")
|
|
|
|
eaptype:value("fast", "FAST")
|
|
|
|
eaptype.default = "peap"
|
2017-12-06 16:05:40 +00:00
|
|
|
|
|
|
|
authentication = m:field(ListValue, "auth", translate("Authentication"))
|
|
|
|
authentication:value("PAP")
|
|
|
|
authentication:value("CHAP")
|
|
|
|
authentication:value("MSCHAP")
|
|
|
|
authentication:value("MSCHAPV2")
|
2017-12-13 19:21:57 +00:00
|
|
|
authentication:value("EAP-GTC")
|
|
|
|
authentication:value("EAP-MD5")
|
|
|
|
authentication:value("EAP-MSCHAPV2")
|
|
|
|
authentication:value("EAP-TLS")
|
|
|
|
authentication.default = "EAP-MSCHAPV2"
|
2017-12-06 16:05:40 +00:00
|
|
|
|
|
|
|
ident = m:field(Value, "identity", translate("Identity"))
|
|
|
|
|
2017-12-13 19:21:57 +00:00
|
|
|
wkey = m:field(Value, "password", translate("Password"))
|
|
|
|
wkey.password = true
|
|
|
|
wkey.datatype = "wpakey"
|
|
|
|
|
|
|
|
cacert = m:field(Value, "ca_cert", translate("Path to CA-Certificate"))
|
|
|
|
cacert.rmempty = true
|
|
|
|
|
|
|
|
clientcert = m:field(Value, "client_cert", translate("Path to Client-Certificate"))
|
|
|
|
clientcert:depends("eap_type","tls")
|
|
|
|
clientcert.rmempty = true
|
|
|
|
|
|
|
|
privkey = m:field(Value, "priv_key", translate("Path to Private Key"))
|
|
|
|
privkey:depends("eap_type","tls")
|
|
|
|
privkey.rmempty = true
|
|
|
|
|
|
|
|
privkeypwd = m:field(Value, "priv_key_pwd", translate("Password of Private Key"))
|
|
|
|
privkeypwd:depends("eap_type","tls")
|
|
|
|
privkeypwd.datatype = "wpakey"
|
|
|
|
privkeypwd.password = true
|
|
|
|
privkeypwd.rmempty = true
|
2017-12-06 16:05:40 +00:00
|
|
|
end
|
2017-07-19 20:36:47 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function wssid.write(self, section, value)
|
|
|
|
newsection = uci:section("wireless", "wifi-iface", nil, {
|
2017-08-03 15:04:58 +00:00
|
|
|
mode = "sta",
|
|
|
|
network = trmiface,
|
|
|
|
device = m.hidden.device,
|
|
|
|
ssid = wssid:formvalue(section),
|
2017-12-06 16:05:40 +00:00
|
|
|
bssid = bssid:formvalue(section),
|
2017-08-03 15:04:58 +00:00
|
|
|
disabled = "1"
|
2017-07-19 20:36:47 +00:00
|
|
|
})
|
2017-12-15 18:17:07 +00:00
|
|
|
|
2017-07-19 20:36:47 +00:00
|
|
|
if (tonumber(m.hidden.wep) or 0) == 1 then
|
2017-12-13 19:21:57 +00:00
|
|
|
uci:set("wireless", newsection, "encryption", encr:formvalue(section))
|
|
|
|
uci:set("wireless", newsection, "key", wkey:formvalue(section) or "")
|
2017-07-19 20:36:47 +00:00
|
|
|
elseif (tonumber(m.hidden.wpa_version) or 0) > 0 then
|
2017-12-06 16:05:40 +00:00
|
|
|
if m.hidden.wpa_suites == "PSK" or m.hidden.wpa_suites == "PSK2" then
|
2017-12-13 19:21:57 +00:00
|
|
|
if ciph:formvalue(section) ~= "auto" then
|
|
|
|
uci:set("wireless", newsection, "encryption", encr:formvalue(section) .. "+" .. ciph:formvalue(section))
|
|
|
|
else
|
|
|
|
uci:set("wireless", newsection, "encryption", encr:formvalue(section))
|
|
|
|
end
|
|
|
|
uci:set("wireless", newsection, "key", wkey:formvalue(section) or "")
|
2017-12-06 16:05:40 +00:00
|
|
|
elseif m.hidden.wpa_suites == "802.1X" then
|
2017-12-13 19:21:57 +00:00
|
|
|
if ciph:formvalue(section) ~= "auto" then
|
|
|
|
uci:set("wireless", newsection, "encryption", encr:formvalue(section) .. "+" .. ciph:formvalue(section))
|
|
|
|
else
|
|
|
|
uci:set("wireless", newsection, "encryption", encr:formvalue(section))
|
|
|
|
end
|
2017-12-06 16:05:40 +00:00
|
|
|
uci:set("wireless", newsection, "eap_type", eaptype:formvalue(section))
|
|
|
|
uci:set("wireless", newsection, "auth", authentication:formvalue(section))
|
2017-12-13 19:21:57 +00:00
|
|
|
uci:set("wireless", newsection, "identity", ident:formvalue(section) or "")
|
|
|
|
uci:set("wireless", newsection, "password", wkey:formvalue(section) or "")
|
|
|
|
uci:set("wireless", newsection, "ca_cert", cacert:formvalue(section) or "")
|
|
|
|
uci:set("wireless", newsection, "client_cert", clientcert:formvalue(section) or "")
|
|
|
|
uci:set("wireless", newsection, "priv_key", privkey:formvalue(section) or "")
|
|
|
|
uci:set("wireless", newsection, "priv_key_pwd", privkeypwd:formvalue(section) or "")
|
2017-12-06 16:05:40 +00:00
|
|
|
end
|
2017-07-19 20:36:47 +00:00
|
|
|
else
|
|
|
|
uci:set("wireless", newsection, "encryption", "none")
|
|
|
|
end
|
|
|
|
uci:save("wireless")
|
|
|
|
uci:commit("wireless")
|
|
|
|
http.redirect(luci.dispatcher.build_url("admin/services/travelmate/stations"))
|
|
|
|
end
|
|
|
|
|
|
|
|
return m
|