applications/luci-ddns: merge mini and full models, read services from /usr/lib/ddns/services, patch by joda (#99)
This commit is contained in:
parent
dce144a2f4
commit
8ffb0e9925
3 changed files with 52 additions and 79 deletions
|
@ -26,7 +26,7 @@ function index()
|
||||||
page.dependent = true
|
page.dependent = true
|
||||||
|
|
||||||
|
|
||||||
local page = entry({"mini", "network", "ddns"}, cbi("ddns/ddnsmini", {autoapply=true}), luci.i18n.translate("Dynamic DNS"), 60)
|
local page = entry({"mini", "network", "ddns"}, cbi("ddns/ddns", {autoapply=true}), luci.i18n.translate("Dynamic DNS"), 60)
|
||||||
page.i18n = "ddns"
|
page.i18n = "ddns"
|
||||||
page.dependent = true
|
page.dependent = true
|
||||||
end
|
end
|
||||||
|
|
|
@ -12,22 +12,38 @@ You may obtain a copy of the License at
|
||||||
|
|
||||||
$Id$
|
$Id$
|
||||||
]]--
|
]]--
|
||||||
require("luci.tools.webadmin")
|
|
||||||
|
local is_mini = (luci.dispatcher.context.path[1] == "mini")
|
||||||
|
|
||||||
|
|
||||||
m = Map("ddns", translate("Dynamic DNS"), translate("Dynamic DNS allows that your router can be reached with a fixed hostname while having a dynamically changing IP-Address."))
|
m = Map("ddns", translate("Dynamic DNS"), translate("Dynamic DNS allows that your router can be reached with a fixed hostname while having a dynamically changing IP-Address."))
|
||||||
|
|
||||||
s = m:section(TypedSection, "service", "")
|
s = m:section(TypedSection, "service", "")
|
||||||
s.addremove = true
|
s.addremove = true
|
||||||
|
s.anonymous = false
|
||||||
|
|
||||||
s:option(Flag, "enabled", translate("enable"))
|
s:option(Flag, "enabled", translate("enable"))
|
||||||
|
|
||||||
svc = s:option(ListValue, "service_name", translate("Service"))
|
svc = s:option(Value, "service_name", translate("Service"))
|
||||||
svc.rmempty = true
|
svc.rmempty = true
|
||||||
svc:value("")
|
|
||||||
svc:value("dyndns.org")
|
local services = { }
|
||||||
svc:value("changeip.com")
|
local fd = io.open("/usr/lib/ddns/services", "r")
|
||||||
svc:value("zoneedit.com")
|
if fd then
|
||||||
svc:value("no-ip.com")
|
local ln
|
||||||
svc:value("freedns.afraid.org")
|
repeat
|
||||||
|
ln = fd:read("*l")
|
||||||
|
local s = ln and ln:match('^%s*"([^"]+)"')
|
||||||
|
if s then services[#services+1] = s end
|
||||||
|
until not ln
|
||||||
|
fd:close()
|
||||||
|
end
|
||||||
|
|
||||||
|
local v
|
||||||
|
for _, v in luci.util.vspairs(services) do
|
||||||
|
svc:value(v)
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
s:option(Value, "domain", translate("Hostname")).rmempty = true
|
s:option(Value, "domain", translate("Hostname")).rmempty = true
|
||||||
s:option(Value, "username", translate("Username")).rmempty = true
|
s:option(Value, "username", translate("Username")).rmempty = true
|
||||||
|
@ -35,28 +51,37 @@ pw = s:option(Value, "password", translate("Password"))
|
||||||
pw.rmempty = true
|
pw.rmempty = true
|
||||||
pw.password = true
|
pw.password = true
|
||||||
|
|
||||||
src = s:option(ListValue, "ip_source", translate("Source of IP-Address"))
|
|
||||||
src:value("network", translate("Network"))
|
|
||||||
src:value("interface", translate("Interface"))
|
|
||||||
src:value("web", "URL")
|
|
||||||
|
|
||||||
iface = s:option(ListValue, "ip_network", translate("Network"))
|
if is_mini then
|
||||||
iface:depends("ip_source", "network")
|
s.defaults.ip_source = "network"
|
||||||
iface.rmempty = true
|
s.defaults.ip_network = "wan"
|
||||||
luci.tools.webadmin.cbi_add_networks(iface)
|
else
|
||||||
|
require("luci.tools.webadmin")
|
||||||
|
|
||||||
iface = s:option(ListValue, "ip_interface", translate("Interface"))
|
src = s:option(ListValue, "ip_source", translate("Source of IP-Address"))
|
||||||
iface:depends("ip_source", "interface")
|
src:value("network", translate("Network"))
|
||||||
iface.rmempty = true
|
src:value("interface", translate("Interface"))
|
||||||
for k, v in pairs(luci.sys.net.devices()) do
|
src:value("web", "URL")
|
||||||
iface:value(v)
|
|
||||||
|
iface = s:option(ListValue, "ip_network", translate("Network"))
|
||||||
|
iface:depends("ip_source", "network")
|
||||||
|
iface.rmempty = true
|
||||||
|
luci.tools.webadmin.cbi_add_networks(iface)
|
||||||
|
|
||||||
|
iface = s:option(ListValue, "ip_interface", translate("Interface"))
|
||||||
|
iface:depends("ip_source", "interface")
|
||||||
|
iface.rmempty = true
|
||||||
|
for k, v in pairs(luci.sys.net.devices()) do
|
||||||
|
iface:value(v)
|
||||||
|
end
|
||||||
|
|
||||||
|
web = s:option(Value, "ip_url", "URL")
|
||||||
|
web:depends("ip_source", "web")
|
||||||
|
web.rmempty = true
|
||||||
|
|
||||||
|
s:option(Value, "update_url", translate("Custom Update-URL")).optional = true
|
||||||
end
|
end
|
||||||
|
|
||||||
web = s:option(Value, "ip_url", "URL")
|
|
||||||
web:depends("ip_source", "web")
|
|
||||||
web.rmempty = true
|
|
||||||
|
|
||||||
s:option(Value, "update_url", translate("Custom Update-URL")).optional = true
|
|
||||||
|
|
||||||
s:option(Value, "check_interval", translate("Check for changed IP every")).default = 10
|
s:option(Value, "check_interval", translate("Check for changed IP every")).default = 10
|
||||||
unit = s:option(ListValue, "check_unit", translate("Check-Time unit"))
|
unit = s:option(ListValue, "check_unit", translate("Check-Time unit"))
|
||||||
|
|
|
@ -1,52 +0,0 @@
|
||||||
--[[
|
|
||||||
LuCI - Lua Configuration Interface
|
|
||||||
|
|
||||||
Copyright 2008 Steven Barth <steven@midlink.org>
|
|
||||||
Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
|
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
you may not use this file except in compliance with the License.
|
|
||||||
You may obtain a copy of the License at
|
|
||||||
|
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
|
|
||||||
$Id$
|
|
||||||
]]--
|
|
||||||
m = Map("ddns", translate("Dynamic DNS"), translate("Dynamic DNS allows that your router can be reached with a fixed hostname while having a dynamically changing IP-Address."))
|
|
||||||
|
|
||||||
s = m:section(TypedSection, "service", "")
|
|
||||||
s.addremove = true
|
|
||||||
|
|
||||||
s:option(Flag, "enabled", translate("enable"))
|
|
||||||
|
|
||||||
svc = s:option(ListValue, "service_name", translate("Service"))
|
|
||||||
svc.rmempty = true
|
|
||||||
svc:value("dyndns.org")
|
|
||||||
svc:value("changeip.com")
|
|
||||||
svc:value("zoneedit.com")
|
|
||||||
svc:value("no-ip.com")
|
|
||||||
svc:value("freedns.afraid.org")
|
|
||||||
|
|
||||||
s:option(Value, "domain", translate("Hostname")).rmempty = true
|
|
||||||
s:option(Value, "username", translate("Username")).rmempty = true
|
|
||||||
pw = s:option(Value, "password", translate("Password"))
|
|
||||||
pw.rmempty = true
|
|
||||||
pw.password = true
|
|
||||||
|
|
||||||
s.defaults.ip_source = "network"
|
|
||||||
s.defaults.ip_network = "wan"
|
|
||||||
|
|
||||||
s:option(Value, "check_interval", translate("Check for changed IP every")).default = 10
|
|
||||||
unit = s:option(ListValue, "check_unit", translate("Check-Time unit"))
|
|
||||||
unit.default = "minutes"
|
|
||||||
unit:value("minutes", "min")
|
|
||||||
unit:value("hours", "h")
|
|
||||||
|
|
||||||
s:option(Value, "force_interval", translate("Force update every")).default = 72
|
|
||||||
unit = s:option(ListValue, "force_unit", translate("Force-Time unit"))
|
|
||||||
unit.default = "hours"
|
|
||||||
unit:value("minutes", "min")
|
|
||||||
unit:value("hours", "h")
|
|
||||||
|
|
||||||
|
|
||||||
return m
|
|
Loading…
Reference in a new issue