summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-ddns/luasrc/model/cbi/ddns/ddns.lua
blob: aa6bb0401612dfea05539b14870af3c372c46576 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
--[[
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$
]]--

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.rmempty = true

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").." --")

url = s:option(Value, "update_url", translate("Custom update-URL"))
url:depends("service_name", "")
url.rmempty = true

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


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", translate("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", translate("URL"))
	web:depends("ip_source", "web")
	web.rmempty = true
end


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", translate("min"))
unit:value("hours", translate("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", translate("min"))
unit:value("hours", translate("h"))


return m