b7a90aa93ad0269c810a16d2a1aed4758a7eb97c
[project/luci.git] / applications / luci-app-mwan3 / luasrc / model / cbi / mwan / policy.lua
1 -- Copyright 2014 Aedan Renner <chipdankly@gmail.com>
2 -- Copyright 2018 Florian Eckert <fe@dev.tdt.de>
3 -- Licensed to the public under the GNU General Public License v2.
4
5 dsp = require "luci.dispatcher"
6 uci = require "uci"
7
8
9 function policyCheck()
10         local policy_error = {}
11
12         uci.cursor():foreach("mwan3", "policy",
13                 function (section)
14                         policy_error[section[".name"]] = false
15                         if string.len(section[".name"]) > 15 then
16                                 policy_error[section[".name"]] = true
17                         end
18                 end
19         )
20
21         return policy_error
22 end
23
24 function policyError(policy_error)
25         local warnings = ""
26         for i, k in pairs(policy_error) do
27                 if policy_error[i] == true then
28                         warnings = warnings .. string.format("<strong>%s</strong><br />",
29                                 translatef("WARNING: Policie %s has exceeding the maximum name of 15 characters", i)
30                                 )
31                 end
32         end
33
34         return warnings
35 end
36
37 m5 = Map("mwan3", translate("MWAN - Policies"),
38         policyError(policyCheck()))
39
40 mwan_policy = m5:section(TypedSection, "policy", nil,
41         translate("Policies are profiles grouping one or more members controlling how MWAN distributes traffic<br />" ..
42         "Member interfaces with lower metrics are used first. Interfaces with the same metric load-balance<br />" ..
43         "Load-balanced member interfaces distribute more traffic out those with higher weights<br />" ..
44         "Names may contain characters A-Z, a-z, 0-9, _ and no spaces. Names must be 15 characters or less<br />" ..
45         "Policies may not share the same name as configured interfaces, members or rules"))
46 mwan_policy.addremove = true
47 mwan_policy.dynamic = false
48 mwan_policy.sectionhead = translate("Policy")
49 mwan_policy.sortable = true
50 mwan_policy.template = "cbi/tblsection"
51 mwan_policy.extedit = dsp.build_url("admin", "network", "mwan", "policy", "%s")
52 function mwan_policy.create(self, section)
53         TypedSection.create(self, section)
54         m5.uci:save("mwan3")
55         luci.http.redirect(dsp.build_url("admin", "network", "mwan", "policy", section))
56 end
57
58 use_member = mwan_policy:option(DummyValue, "use_member", translate("Members assigned"))
59 use_member.rawhtml = true
60 function use_member.cfgvalue(self, s)
61         local memberConfig, memberList = self.map:get(s, "use_member"), ""
62         if memberConfig then
63                 for k,v in pairs(memberConfig) do
64                         memberList = memberList .. v .. "<br />"
65                 end
66                 return memberList
67         else
68                 return "&#8212;"
69         end
70 end
71
72 last_resort = mwan_policy:option(DummyValue, "last_resort", translate("Last resort"))
73 last_resort.rawhtml = true
74 function last_resort.cfgvalue(self, s)
75         local action = self.map:get(s, "last_resort")
76         if action == "blackhole" then
77                 return translate("blackhole (drop)")
78         elseif action == "default" then
79                 return translate("default (use main routing table)")
80         else
81                 return translate("unreachable (reject)")
82         end
83 end
84
85 return m5