From a037d9438357a30e443b5b6ee84abe936d5255f1 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Thu, 8 Oct 2009 10:25:52 +0000 Subject: [PATCH 1/1] libs/core: luci.model.network: implement contains_inteface(), fix bugs --- libs/core/luasrc/model/network.lua | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/libs/core/luasrc/model/network.lua b/libs/core/luasrc/model/network.lua index 4e669f307..3a7e38a03 100644 --- a/libs/core/luasrc/model/network.lua +++ b/libs/core/luasrc/model/network.lua @@ -17,7 +17,8 @@ limitations under the License. ]]-- -local type, pairs, ipairs, table = type, pairs, ipairs, table +local type, pairs, ipairs, table, i18n + = type, pairs, ipairs, table, luci.i18n local lmo = require "lmo" local nxo = require "nixio" @@ -206,7 +207,7 @@ end function network.add_interface(self, ifname) if type(ifname) ~= "string" then - ifname = ifname:ifname() + ifname = ifname:name() end if ifs[ifname] then self:ifname(ub:list((self:ifname() or ''), ifname)) @@ -215,7 +216,7 @@ end function network.del_interface(self, ifname) if type(ifname) ~= "string" then - ifname = ifname:ifname() + ifname = ifname:name() end self:ifname(ub:list((self:ifname() or ''), nil, ifname)) end @@ -234,14 +235,14 @@ function network.get_interfaces(self) return ifaces end -function contains_interface(self, iface) +function network.contains_interface(self, iface) local i local ifaces = ub:list( (self:ifname() or '') .. ' ' .. (self:device() or '') ) if type(iface) ~= "string" then - iface = iface:ifname() + iface = iface:name() end for _, i in ipairs(ifaces) do @@ -279,6 +280,19 @@ function interface.type(self) end end +function interface.get_type_i18n(self) + local x = self:type() + if x == "wifi" then + return i18n.translate("a_s_if_wifidev", "Wireless Adapter") + elseif x == "bridge" then + return i18n.translate("a_s_if_bridge", "Bridge") + elseif x == "switch" then + return i18n.translate("a_s_if_ethswitch", "Ethernet Switch") + else + return i18n.translate("a_s_if_ethdev", "Ethernet Adapter") + end +end + function interface.ports(self) if self.br then local iface -- 2.11.0