X-Git-Url: https://git.archive.openwrt.org/?a=blobdiff_plain;f=applications%2Fluci-ddns%2Fluasrc%2Fmodel%2Fcbi%2Fddns%2Fddns.lua;h=2870683e6d013c5c462ec329e063a0d93c1c7925;hb=4344b64f3427582de2d036b4c61fcaaa420adc03;hp=45a8a3965c3747d1662c0297c4dc89c2ff5786bf;hpb=222fe69ac6e3e82252296228b0e7877c886dae6c;p=project%2Fluci.git diff --git a/applications/luci-ddns/luasrc/model/cbi/ddns/ddns.lua b/applications/luci-ddns/luasrc/model/cbi/ddns/ddns.lua index 45a8a3965..2870683e6 100644 --- a/applications/luci-ddns/luasrc/model/cbi/ddns/ddns.lua +++ b/applications/luci-ddns/luasrc/model/cbi/ddns/ddns.lua @@ -12,60 +12,88 @@ You may obtain a copy of the License at $Id$ ]]-- -require("luci.tools.webadmin") -m = Map("ddns", translate("ddns"), translate("ddns_desc")) + +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.")) s = m:section(TypedSection, "service", "") s.addremove = true +s.anonymous = false s:option(Flag, "enabled", translate("enable")) -svc = s:option(ListValue, "service_name", translate("service")) +svc = s:option(ListValue, "service_name", translate("Service")) svc.rmempty = true -svc:value("") -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")) + +local services = { } +local fd = io.open("/usr/lib/ddns/services", "r") +if fd then + local ln + 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 + +svc:value("", translate("-- custom --")) + + +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 -src = s:option(ListValue, "ip_source") -src:value("network", translate("network")) -src:value("interface", translate("interface")) -src:value("web", "URL") - -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 +if is_mini then + s.defaults.ip_source = "network" + s.defaults.ip_network = "wan" +else + require("luci.tools.webadmin") + + 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")) + 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 +end -s:option(Value, "update_url").optional = true +url = s:option(Value, "update_url", translate("Custom Update-URL")) +url:depends("service_name", "") +url.rmempty = true -s:option(Value, "check_interval").default = 10 -unit = s:option(ListValue, "check_unit") +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").default = 72 -unit = s:option(ListValue, "force_unit") +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")