summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm
blob: b06fac3de424f60bae3a7c2a41003a5d6eb2b143 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<%
	local fw = require "luci.model.firewall".init()
	local wz = fw:get_zone("wan")
	local lz = fw:get_zone("lan")
	local zones = fw:get_zones()
%>

<div class="cbi-section-create cbi-tblsection-create">
	<% if wz then %>
		<br />
		<table class="cbi-section-table" style="margin-left:5px">
			<tr class="cbi-section-table-titles">
				<th class="cbi-section-table-cell left" colspan="4"><%:Open ports on router%>:</th>
			</tr>
			<tr class="cbi-section-table-descr">
				<th class="cbi-section-table-cell"><%:Name%></th>
				<th class="cbi-section-table-cell"><%:Protocol%></th>
				<th class="cbi-section-table-cell"><%:External port%></th>
				<th class="cbi-section-table-cell"></th>
			</tr>
			<tr class="cbi-section-table-row">
				<td class="cbi-section-table-cell" style="width:130px">
					<input type="text" class="cbi-input-text" id="_newopen.name" name="_newopen.name" placeholder="<%:New input rule%>" />
				</td>
				<td class="cbi-section-table-cell" style="width:110px">
					<select class="cbi-input-select" id="_newopen.proto" name="_newopen.proto">
						<option value="tcp udp">TCP+UDP</option>
						<option value="tcp">TCP</option>
						<option value="udp">UDP</option>
						<option value="other"><%:Other...%></option>
					</select>
				</td>
				<td class="cbi-section-table-cell" style="width:110px">
					<input type="text" class="cbi-input-text" id="_newopen.extport" name="_newopen.extport" />
				</td>
				<td class="cbi-section-table-cell left">
					<input type="submit" class="cbi-button cbi-button-add" name="_newopen.submit" value="<%:Add%>" />
				</td>
			</tr>
		</table>
	<% end %>
	<% if #zones > 1 then %>
		<table class="cbi-section-table" style="margin-left:5px">
			<tr class="cbi-section-table-titles">
				<th class="cbi-section-table-cell left" colspan="6"><br /><%:New forward rule%>:</th>
			</tr>
			<tr class="cbi-section-table-descr">
				<th class="cbi-section-table-cell"><%:Name%></th>
				<th class="cbi-section-table-cell"><%:Source zone%></th>
				<th class="cbi-section-table-cell"><%:Destination zone%></th>
				<th class="cbi-section-table-cell"></th>
			</tr>
			<tr class="cbi-section-table-row">
				<td class="cbi-section-table-cell" style="width:130px">
					<input type="text" class="cbi-input-text" id="_newfwd.name" name="_newfwd.name" placeholder="<%:New forward rule%>" />
				</td>
				<td class="cbi-section-table-cell" style="width:110px">
					<select class="cbi-input-text" id="_newfwd.src" name="_newfwd.src">
						<% local k, v; for k, v in ipairs(fw:get_zones()) do -%>
							<option<%=ifattr(v:name() == "wan", "selected", "selected")%> value="<%=v:name()%>"><%=v:name()%></option>
						<%- end %>
					</select>
				</td>
				<td class="cbi-section-table-cell" style="width:110px">
					<select class="cbi-input-text" id="_newfwd.dest" name="_newfwd.dest">
						<% local k, v; for k, v in ipairs(fw:get_zones()) do -%>
							<option<%=ifattr(v:name() == "lan", "selected", "selected")%> value="<%=v:name()%>"><%=v:name()%></option>
						<%- end %>
					</select>
				</td>
				<td class="cbi-section-table-cell left">
					<input type="submit" class="cbi-button cbi-button-link" name="_newfwd.submit" value="<%:Add and edit...%>" />
				</td>
			</tr>
		</table>
	<% else %>
		<input type="submit" class="cbi-button cbi-button-add" name="cbi.cts.<%=self.config%>.<%=self.sectiontype%>.<%=section%>" value="<%:Add%>" />
	<% end %>

	<% if wz then %>
		<script type="text/javascript">//<![CDATA[
			cbi_validate_field('_newopen.extport', true, 'list(neg(portrange))');
			cbi_bind(document.getElementById('_newopen.extport'), 'blur',
				function() {
					var n = document.getElementById('_newopen.name');
					var p = document.getElementById('_newopen.proto');
					var hints = {
					/*  port    name     0=both, 1=tcp, 2=udp, 3=other */
						22:   [ 'SSH',   1 ],
						53:   [ 'DNS',   0 ],
						80:   [ 'HTTP',  1 ],
						443:  [ 'HTTPS', 1 ],
					};

					if (!this.className.match(/invalid/))
					{
						var hint = hints[this.value || 0];
						if (hint)
						{
							p.selectedIndex = hint[1];

							if (!n.value)
								n.value = hint[0];
						}
						else if (!n.value && this.value)
						{
							n.value = 'Open' + this.value;
						}
					}
				});


			cbi_validate_field('cbi.cts.<%=self.config%>.<%=self.sectiontype%>.<%=section%>', true, 'uciname');
		//]]></script>
	<% end %>
</div>