luci-app-vpnbypass: bugfix: call to action has no parent node 3246/head
authorStan Grishin <stangri@melmac.net>
Mon, 28 Oct 2019 23:35:10 +0000 (16:35 -0700)
committerStan Grishin <stangri@melmac.net>
Mon, 28 Oct 2019 23:35:10 +0000 (16:35 -0700)
Signed-off-by: Stan Grishin <stangri@melmac.net>
applications/luci-app-vpnbypass/Makefile
applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua
applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua
applications/luci-app-vpnbypass/luasrc/view/vpnbypass/js.htm

index 133c4bc33df75cf1262a3b920dceb650d53442d5..1bf076f0a297b5bf166267ca8d6f4589c8d276ee 100644 (file)
@@ -3,14 +3,14 @@
 
 include $(TOPDIR)/rules.mk
 
-PKG_LICENSE:=GPL-3.0+
+PKG_LICENSE:=GPL-3.0-or-later
 PKG_MAINTAINER:=Stan Grishin <stangri@melmac.net>
 
 LUCI_TITLE:=VPN Bypass Web UI
 LUCI_DESCRIPTION:=Provides Web UI for VPNBypass service.
 LUCI_DEPENDS:=+luci-mod-admin-full +vpnbypass
 LUCI_PKGARCH:=all
-PKG_RELEASE:=12
+PKG_RELEASE:=13
 
 include ../../luci.mk
 
index d034fce324be3fdb334a64b5c0f356670d1cc8d7..dac02d84d629f440f6e50e791a4297002353ffcd 100644 (file)
@@ -1,12 +1,10 @@
 module("luci.controller.vpnbypass", package.seeall)
 function index()
        if nixio.fs.access("/etc/config/vpnbypass") then
-               if luci.dispatcher.lookup("admin/vpn") then
-                       entry({"admin", "vpn", "vpnbypass"}, cbi("vpnbypass"), _("VPN Bypass"))
-               else
-                       entry({"admin", "services", "vpnbypass"}, cbi("vpnbypass"), _("VPN Bypass"))
-               end
-       entry({"admin", "services", "vpnbypass", "action"}, call("vpnbypass_action"), nil).leaf = true
+               local node = "services"
+               if luci.dispatcher.lookup("admin/vpn") then node = "vpn" end
+               entry({"admin", node, "vpnbypass"}, cbi("vpnbypass"), _("VPN Bypass"))
+               entry({"admin", node, "vpnbypass", "action"}, call("vpnbypass_action"), nil).leaf = true
        end
 end
 
index 8d3ef2b8eeb843c19eeb1a08363cad62d42b6d69..08054dc484243b4a5d91137cd5bbb9ab7a96b5d4 100644 (file)
@@ -4,8 +4,6 @@ local sys = require "luci.sys"
 local util = require "luci.util"
 local packageName = "vpnbypass"
 
-m = Map("vpnbypass", translate("VPN Bypass Settings"))
-
 local tmpfsVersion = tostring(util.trim(sys.exec("opkg list-installed " .. packageName .. " | awk '{print $3}'")))
 if not tmpfsVersion or tmpfsVersion == "" then
   tmpfsStatusCode = -1
@@ -19,6 +17,8 @@ if sys.call("iptables -t mangle -L | grep -q VPNBYPASS") == 0 then
        tmpfsStatus = "Running"
 end
 
+m = Map("vpnbypass", translate("VPN Bypass Settings"))
+
 h = m:section(NamedSection, "config", packageName, translate("Service Status") .. tmpfsVersion)
 ss = h:option(DummyValue, "_dummy", translate("Service Status"))
 ss.template = packageName .. "/status"
index 76809e9387b3297e0c875b219fca9e03c377ca65..8e47a97590ee3431f9c29496f2a06f73bf731b94 100644 (file)
@@ -1,3 +1,4 @@
+<%- if luci.dispatcher.lookup("admin/vpn") then node = "vpn" else node = "services" end -%>
 
 <script type="text/javascript">
 //<![CDATA[
@@ -32,7 +33,7 @@
        btn_enable.disabled = true;
        btn_disable.disabled = true;
   spinner(btn_spinner, 1);
-       xhr.get('<%=luci.dispatcher.build_url("admin", "services", "vpnbypass", "action")%>/' + action.name, null,
+       xhr.get('<%=luci.dispatcher.build_url("admin", node, "vpnbypass", "action")%>/' + action.name, null,
                function (x) {
                        if (!x) {
                                return;