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