small-package/luci-app-softethervpn/luasrc/model/cbi/softethervpn.lua

38 lines
1.5 KiB
Lua
Raw Normal View History

2021-09-24 23:37:27 +08:00
m = Map("softethervpn", translate("SoftEther VPN"))
2022-01-02 20:31:25 +08:00
m.description = translate("SoftEther VPN is an open source, cross-platform, multi-protocol virtual private network solution developed by university of tsukuba graduate student Daiyuu Nobori for master's thesis. <br>can easily set up OpenVPN, IPsec, L2TP, ms-sstp, L2TPv3 and EtherIP servers on the router using the console.")
2021-09-24 23:37:27 +08:00
m.template = "softethervpn/index"
2022-01-02 20:31:25 +08:00
2021-09-24 23:37:27 +08:00
s = m:section(TypedSection, "softether")
s.anonymous = true
2022-01-02 20:31:25 +08:00
2021-09-24 23:37:27 +08:00
o = s:option(DummyValue, "softethervpn_status", translate("Current Condition"))
o.template = "softethervpn/status"
o.value = translate("Collecting data...")
2022-01-02 20:31:25 +08:00
o = s:option(Flag, "enabled", translate("Enabled"))
2021-09-24 23:37:27 +08:00
o.rmempty = false
2022-01-02 20:31:25 +08:00
o = s:option(DummyValue, "moreinfo", translate("Console download"))
o.rawhtml = true
o.cfgvalue = function(self, section)
local obj = {
{
title = "Windows-x86_x64-intel.exe",
url = "https://github.com/SoftEtherVPN/SoftEtherVPN_Stable/releases/download/v4.38-9760-rtm/softether-vpnserver_vpnbridge-v4.38-9760-rtm-2021.08.17-windows-x86_x64-intel.exe"
},
{
title = "macos-x86-32bit.pkg",
url = "https://www.softether-download.com/files/softether/v4.21-9613-beta-2016.04.24-tree/Mac_OS_X/Admin_Tools/VPN_Server_Manager_Package/softether-vpnserver_manager-v4.21-9613-beta-2016.04.24-macos-x86-32bit.pkg"
}
}
local html = ""
for i, o in ipairs(obj) do
html = html .. string.format("<a href='%s'>%s &nbsp&nbsp", o.url, o.title)
end
return html
end
2021-09-24 23:37:27 +08:00
return m