summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-ddns/luasrc/model/cbi/ddns/overview.lua
diff options
context:
space:
mode:
Diffstat (limited to 'applications/luci-ddns/luasrc/model/cbi/ddns/overview.lua')
-rw-r--r--applications/luci-ddns/luasrc/model/cbi/ddns/overview.lua150
1 files changed, 91 insertions, 59 deletions
diff --git a/applications/luci-ddns/luasrc/model/cbi/ddns/overview.lua b/applications/luci-ddns/luasrc/model/cbi/ddns/overview.lua
index a1ce9c3aef..5d24ee5a04 100644
--- a/applications/luci-ddns/luasrc/model/cbi/ddns/overview.lua
+++ b/applications/luci-ddns/luasrc/model/cbi/ddns/overview.lua
@@ -12,17 +12,20 @@ You may obtain a copy of the License at
$Id$
]]--
-require "nixio.fs"
-require "luci.sys"
-require "luci.dispatcher"
-require "luci.tools.ddns"
+local NXFS = require "nixio.fs"
+local CTRL = require "luci.controller.ddns" -- this application's controller
+local DISP = require "luci.dispatcher"
+local HTTP = require "luci.http"
+local SYS = require "luci.sys"
+local DDNS = require "luci.tools.ddns" -- ddns multiused functions
-- show hints ?
-show_hints = not (luci.tools.ddns.check_ipv6() -- IPv6 support
- and luci.tools.ddns.check_ssl() -- HTTPS support
- and luci.tools.ddns.check_proxy() -- Proxy support
- and luci.tools.ddns.check_bind_host() -- DNS TCP support
+show_hints = not (DDNS.check_ipv6() -- IPv6 support
+ and DDNS.check_ssl() -- HTTPS support
+ and DDNS.check_proxy() -- Proxy support
+ and DDNS.check_bind_host() -- DNS TCP support
)
+need_update = CTRL.update_needed() -- correct ddns-scripts version
-- html constants
font_red = [[<font color="red">]]
@@ -30,70 +33,96 @@ font_off = [[</font>]]
bold_on = [[<strong>]]
bold_off = [[</strong>]]
--- cbi-map definition
-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."))
+-- cbi-map definition -- #######################################################
+m = Map("ddns")
--- read application settings
-date_format = m.uci:get(m.config, "global", "date_format") or "%F %R"
-run_dir = m.uci:get(m.config, "global", "run_dir") or "/var/run/ddns"
+-- first need to close <a> from cbi map template our <a> closed by template
+--m.title = [[</a><a href="javascript:alert(']] .. CTRL.show_versions() ..[[')">]] ..
+-- translate("Dynamic DNS")
+m.title = [[</a><a href="#" onclick="onclick_maptitle();">]] ..
+ translate("Dynamic DNS")
--- SimpleSection definition
+m.description = translate("Dynamic DNS allows that your router can be reached with " ..
+ "a fixed hostname while having a dynamically changing " ..
+ "IP address.")
+
+m.on_after_commit = function(self)
+ if self.changed then -- changes ?
+ if SYS.init.enabled("ddns") then -- ddns service enabled, restart all
+ os.execute("/etc/init.d/ddns restart")
+ else -- ddns service disabled, send SIGHUP to running
+ os.execute("killall -1 dynamic_dns_updater.sh")
+ end
+ end
+end
+
+-- SimpleSection definiton -- ##################################################
+-- with all the JavaScripts we need for "a good Show"
+a = m:section( SimpleSection )
+a.template = "ddns/overview_status"
+
+-- SimpleSection definition -- #################################################
-- show Hints to optimize installation and script usage
-- only show if service not enabled
-- or no IPv6 support
-- or not GNU Wget and not cURL (for https support)
-- or not GNU Wget but cURL without proxy support
-- or not BIND's host
-if show_hints or not luci.sys.init.enabled("ddns") then
+-- or ddns-scripts package need update
+if show_hints or need_update or not SYS.init.enabled("ddns") then
s = m:section( SimpleSection, translate("Hints") )
+
+ -- ddns_scripts needs to be updated for full functionality
+ if need_update then
+ local dv = s:option(DummyValue, "_update_needed")
+ dv.titleref = DISP.build_url("admin", "system", "packages")
+ dv.rawhtml = true
+ dv.title = font_red .. bold_on ..
+ translate("Software update required") .. bold_off .. font_off
+ dv.value = translate("The currently installed 'ddns-scripts' package did not support all available settings.") ..
+ "<br />" ..
+ translate("Please update to the current version!")
+ end
+
-- DDNS Service disabled
- if not luci.sys.init.enabled("ddns") then
+ if not SYS.init.enabled("ddns") then
local dv = s:option(DummyValue, "_not_enabled")
- dv.titleref = luci.dispatcher.build_url("admin", "system", "startup")
+ dv.titleref = DISP.build_url("admin", "system", "startup")
dv.rawhtml = true
- dv.title = bold_on ..
+ dv.title = bold_on ..
translate("DDNS Autostart disabled") .. bold_off
- dv.value = translate("Currently DDNS updates are not started at boot or on interface events." .. "<br />" ..
+ dv.value = translate("Currently DDNS updates are not started at boot or on interface events." .. "<br />" ..
"You can start/stop each configuration here. It will run until next reboot.")
end
-- Show more hints on a separate page
if show_hints then
local dv = s:option(DummyValue, "_separate")
- dv.titleref = luci.dispatcher.build_url("admin", "services", "ddns", "hints")
+ dv.titleref = DISP.build_url("admin", "services", "ddns", "hints")
dv.rawhtml = true
- dv.title = bold_on ..
+ dv.title = bold_on ..
translate("Show more") .. bold_off
dv.value = translate("Follow this link" .. "<br />" ..
"You will find more hints to optimize your system to run DDNS scripts with all options")
end
end
--- SimpleSection definiton
--- with all the JavaScripts we need for "a good Show"
-a = m:section( SimpleSection )
-a.template = "ddns/overview_status"
-
--- TableSection definition
-ts = m:section( TypedSection, "service",
- translate("Overview"),
+-- TableSection definition -- ##################################################
+ts = m:section( TypedSection, "service",
+ translate("Overview"),
translate("Below is a list of configured DDNS configurations and their current state." .. "<br />" ..
"If you want to send updates for IPv4 and IPv6 you need to define two separate Configurations " ..
"i.e. 'myddns_ipv4' and 'myddns_ipv6'") )
ts.sectionhead = translate("Configuration")
ts.template = "cbi/tblsection"
ts.addremove = true
-ts.extedit = luci.dispatcher.build_url("admin", "services", "ddns", "detail", "%s")
+ts.extedit = DISP.build_url("admin", "services", "ddns", "detail", "%s")
function ts.create(self, name)
AbstractSection.create(self, name)
- luci.http.redirect( self.extedit:format(name) )
+ HTTP.redirect( self.extedit:format(name) )
end
--- Domain and registered IP
+-- Domain and registered IP -- #################################################
dom = ts:option(DummyValue, "_domainIP",
translate("Hostname/Domain") .. "<br />" .. translate("Registered IP") )
dom.template = "ddns/overview_doubleline"
@@ -113,32 +142,35 @@ function dom.set_two(self, section)
local force_ipversion = tonumber(self.map:get(section, "force_ipversion") or 0)
local force_dnstcp = tonumber(self.map:get(section, "force_dnstcp") or 0)
local command = [[/usr/lib/ddns/dynamic_dns_lucihelper.sh]]
- if not nixio.fs.access(command, "rwx", "rx", "rx") then
- nixio.fs.chmod(command, 755)
+ if not NXFS.access(command, "rwx", "rx", "rx") then
+ NXFS.chmod(command, 755)
end
- command = command .. [[ get_registered_ip ]] .. domain .. [[ ]] .. use_ipv6 ..
+ command = command .. [[ get_registered_ip ]] .. domain .. [[ ]] .. use_ipv6 ..
[[ ]] .. force_ipversion .. [[ ]] .. force_dnstcp .. [[ ]] .. dnsserver
- local ip = luci.sys.exec(command)
+ local ip = SYS.exec(command)
if ip == "" then ip = translate("no data") end
return ip
end
--- enabled
-ena = ts:option( Flag, "enabled",
+-- enabled
+ena = ts:option( Flag, "enabled",
translate("Enabled"))
ena.template = "ddns/overview_enabled"
ena.rmempty = false
+function ena.parse(self, section)
+ DDNS.flag_parse(self, section)
+end
-- show PID and next update
-upd = ts:option( DummyValue, "_update",
+upd = ts:option( DummyValue, "_update",
translate("Last Update") .. "<br />" .. translate("Next Update"))
upd.template = "ddns/overview_doubleline"
function upd.set_one(self, section) -- fill Last Update
-- get/validate last update
- local uptime = luci.sys.uptime()
- local lasttime = tonumber(nixio.fs.readfile("%s/%s.update" % { run_dir, section } ) or 0 )
+ local uptime = SYS.uptime()
+ local lasttime = DDNS.get_lastupd(section)
if lasttime > uptime then -- /var might not be linked to /tmp and cleared on reboot
- lasttime = 0
+ lasttime = 0
end
-- no last update happen
@@ -151,7 +183,7 @@ function upd.set_one(self, section) -- fill Last Update
-- os.epoch - sys.uptime + lastupdate(uptime)
local epoch = os.time() - uptime + lasttime
-- use linux date to convert epoch
- return luci.sys.exec([[/bin/date -d @]] .. epoch .. [[ +']] .. date_format .. [[']])
+ return DDNS.epoch2date(epoch)
end
end
function upd.set_two(self, section) -- fill Next Update
@@ -162,28 +194,28 @@ function upd.set_two(self, section) -- fill Next Update
-- get force seconds
local force_interval = tonumber(self.map:get(section, "force_interval") or 72)
local force_unit = self.map:get(section, "force_unit") or "hours"
- local force_seconds = luci.tools.ddns.calc_seconds(force_interval, force_unit)
+ local force_seconds = DDNS.calc_seconds(force_interval, force_unit)
-- get last update and get/validate PID
- local uptime = luci.sys.uptime()
- local lasttime = tonumber(nixio.fs.readfile("%s/%s.update" % { run_dir, section } ) or 0 )
+ local uptime = SYS.uptime()
+ local lasttime = DDNS.get_lastupd(section)
if lasttime > uptime then -- /var might not be linked to /tmp and cleared on reboot
- lasttime = 0
+ lasttime = 0
end
- local pid = luci.tools.ddns.get_pid(section, run_dir)
+ local pid = DDNS.get_pid(section)
-- calc next update
if lasttime > 0 then
local epoch = os.time() - uptime + lasttime + force_seconds
-- use linux date to convert epoch
- datelast = luci.sys.exec([[/bin/date -d @]] .. epoch .. [[ +']] .. date_format .. [[']])
- end
+ datelast = DDNS.epoch2date(epoch)
+ end
- -- process running but update needs to happen
+ -- process running but update needs to happen
if pid > 0 and ( lasttime + force_seconds - uptime ) < 0 then
datenext = translate("Verify")
- -- run once
+ -- run once
elseif force_seconds == 0 then
datenext = translate("Run once")
@@ -191,7 +223,7 @@ function upd.set_two(self, section) -- fill Next Update
elseif pid == 0 and enabled == 0 then
datenext = translate("Disabled")
- -- no process running and NOT
+ -- no process running and NOT
elseif pid == 0 and enabled ~= 0 then
datenext = translate("Stopped")
end
@@ -200,11 +232,11 @@ function upd.set_two(self, section) -- fill Next Update
end
-- start/stop button
-btn = ts:option( Button, "_startstop",
+btn = ts:option( Button, "_startstop",
translate("Process ID") .. "<br />" .. translate("Start / Stop") )
btn.template = "ddns/overview_startstop"
function btn.cfgvalue(self, section)
- local pid = luci.tools.ddns.get_pid(section, run_dir)
+ local pid = DDNS.get_pid(section)
if pid > 0 then
btn.inputtitle = "PID: " .. pid
btn.inputstyle = "reset"