From: Jo-Philipp Wich Date: Fri, 5 Apr 2019 07:25:00 +0000 (+0200) Subject: luci-base: implement lease status ubus call X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=bfae09e5740a09ca910d971893cbdc368a7fe01e;p=oweals%2Fluci.git luci-base: implement lease status ubus call Signed-off-by: Jo-Philipp Wich --- diff --git a/modules/luci-base/root/usr/libexec/rpcd/luci b/modules/luci-base/root/usr/libexec/rpcd/luci index d668e789f..c4566210f 100755 --- a/modules/luci-base/root/usr/libexec/rpcd/luci +++ b/modules/luci-base/root/usr/libexec/rpcd/luci @@ -178,6 +178,24 @@ local methods = { end return result end + }, + + leases = { + args = { family = 0 }, + call = function(args) + local s = require "luci.tools.status" + + if args.family == 4 then + return { dhcp_leases = s.dhcp_leases() } + elseif args.family == 6 then + return { dhcp6_leases = s.dhcp6_leases() } + else + return { + dhcp_leases = s.dhcp_leases(), + dhcp6_leases = s.dhcp6_leases() + } + end + end } }