1 |
ac24dc24
|
Renato Botelho
|
/*
|
2 |
|
|
* pfSenseHelpers.js
|
3 |
|
|
*
|
4 |
|
|
* part of pfSense (https://www.pfsense.org)
|
5 |
38809d47
|
Renato Botelho do Couto
|
* Copyright (c) 2004-2013 BSD Perimeter
|
6 |
|
|
* Copyright (c) 2013-2016 Electric Sheep Fencing
|
7 |
8f585441
|
Luiz Souza
|
* Copyright (c) 2014-2021 Rubicon Communications, LLC (Netgate)
|
8 |
ac24dc24
|
Renato Botelho
|
* All rights reserved.
|
9 |
|
|
*
|
10 |
b12ea3fb
|
Renato Botelho
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
11 |
|
|
* you may not use this file except in compliance with the License.
|
12 |
|
|
* You may obtain a copy of the License at
|
13 |
ac24dc24
|
Renato Botelho
|
*
|
14 |
b12ea3fb
|
Renato Botelho
|
* http://www.apache.org/licenses/LICENSE-2.0
|
15 |
ac24dc24
|
Renato Botelho
|
*
|
16 |
b12ea3fb
|
Renato Botelho
|
* Unless required by applicable law or agreed to in writing, software
|
17 |
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
18 |
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
19 |
|
|
* See the License for the specific language governing permissions and
|
20 |
|
|
* limitations under the License.
|
21 |
08ec2d99
|
Stephen Beaver
|
*/
|
22 |
|
|
|
23 |
3ece7116
|
Stephen Beaver
|
// These helper functions are used on many/most UI pages to hide/show/disable/enable form elements where required
|
24 |
|
|
|
25 |
c744b0de
|
Steve Beaver
|
// Cause the input to be displayed as a required field by adding the element-required class to the label
|
26 |
|
|
function setRequired(id, req) {
|
27 |
|
|
if (req)
|
28 |
|
|
$('#' + id).parent().parent('div').find('span:first').addClass('element-required');
|
29 |
|
|
else
|
30 |
|
|
$('#' + id).parent().parent('div').find('span:first').removeClass('element-required');
|
31 |
|
|
}
|
32 |
|
|
|
33 |
3ece7116
|
Stephen Beaver
|
// Hides the <div> in which the specified input element lives so that the input, its label and help text are hidden
|
34 |
|
|
function hideInput(id, hide) {
|
35 |
726fdb61
|
Phil Davis
|
if (hide)
|
36 |
96c18fe4
|
Stephen Beaver
|
$('#' + id).parent().parent('div').addClass('hidden');
|
37 |
|
|
else
|
38 |
|
|
$('#' + id).parent().parent('div').removeClass('hidden');
|
39 |
3ece7116
|
Stephen Beaver
|
}
|
40 |
|
|
|
41 |
|
|
// Hides the <div> in which the specified group input element lives so that the input,
|
42 |
|
|
// its label and help text are hidden
|
43 |
|
|
function hideGroupInput(id, hide) {
|
44 |
726fdb61
|
Phil Davis
|
if (hide)
|
45 |
96c18fe4
|
Stephen Beaver
|
$('#' + id).parent('div').addClass('hidden');
|
46 |
|
|
else
|
47 |
|
|
$('#' + id).parent('div').removeClass('hidden');
|
48 |
3ece7116
|
Stephen Beaver
|
}
|
49 |
|
|
|
50 |
5a1ee50e
|
PiBa-NL
|
function invisibleGroupInput(id, hide) {
|
51 |
|
|
if (hide)
|
52 |
|
|
$('#' + id).addClass('invisible');
|
53 |
|
|
else
|
54 |
|
|
$('#' + id).removeClass('invisible');
|
55 |
|
|
}
|
56 |
|
|
|
57 |
3ece7116
|
Stephen Beaver
|
// Hides the <div> in which the specified checkbox lives so that the checkbox, its label and help text are hidden
|
58 |
|
|
function hideCheckbox(id, hide) {
|
59 |
726fdb61
|
Phil Davis
|
if (hide)
|
60 |
96c18fe4
|
Stephen Beaver
|
$('#' + id).parent().parent().parent('div').addClass('hidden');
|
61 |
|
|
else
|
62 |
|
|
$('#' + id).parent().parent().parent('div').removeClass('hidden');
|
63 |
3ece7116
|
Stephen Beaver
|
}
|
64 |
|
|
|
65 |
|
|
// Disables the specified input element
|
66 |
|
|
function disableInput(id, disable) {
|
67 |
96c18fe4
|
Stephen Beaver
|
$('#' + id).prop("disabled", disable);
|
68 |
3ece7116
|
Stephen Beaver
|
}
|
69 |
|
|
|
70 |
|
|
// Hides all elements of the specified class. This will usually be a section
|
71 |
|
|
function hideClass(s_class, hide) {
|
72 |
726fdb61
|
Phil Davis
|
if (hide)
|
73 |
96c18fe4
|
Stephen Beaver
|
$('.' + s_class).hide();
|
74 |
|
|
else
|
75 |
|
|
$('.' + s_class).show();
|
76 |
3ece7116
|
Stephen Beaver
|
}
|
77 |
|
|
|
78 |
96c18fe4
|
Stephen Beaver
|
function hideSelect(id, hide) {
|
79 |
726fdb61
|
Phil Davis
|
if (hide)
|
80 |
96c18fe4
|
Stephen Beaver
|
$('#' + id).parent('div').parent('div').addClass('hidden');
|
81 |
|
|
else
|
82 |
|
|
$('#' + id).parent('div').parent('div').removeClass('hidden');
|
83 |
|
|
}
|
84 |
|
|
|
85 |
|
|
function hideMultiCheckbox(id, hide) {
|
86 |
726fdb61
|
Phil Davis
|
if (hide)
|
87 |
5e7a1d46
|
Stephen Beaver
|
$("[name=" + id + "]").parent().addClass('hidden');
|
88 |
96c18fe4
|
Stephen Beaver
|
else
|
89 |
5e7a1d46
|
Stephen Beaver
|
$("[name=" + id + "]").parent().removeClass('hidden');
|
90 |
96c18fe4
|
Stephen Beaver
|
}
|
91 |
|
|
|
92 |
850c3d8b
|
Steve Beaver
|
// Hides the <div> in which the specified IP address element lives so that the input, any mask selector, its label and help text are hidden
|
93 |
96c18fe4
|
Stephen Beaver
|
function hideIpAddress(id, hide) {
|
94 |
726fdb61
|
Phil Davis
|
if (hide)
|
95 |
96c18fe4
|
Stephen Beaver
|
$('#' + id).parent().parent().parent('div').addClass('hidden');
|
96 |
|
|
else
|
97 |
|
|
$('#' + id).parent().parent().parent('div').removeClass('hidden');
|
98 |
|
|
}
|
99 |
|
|
|
100 |
|
|
// Hides all elements of the specified class belonging to a multiselect.
|
101 |
|
|
function hideMultiClass(s_class, hide) {
|
102 |
726fdb61
|
Phil Davis
|
if (hide)
|
103 |
96c18fe4
|
Stephen Beaver
|
$('.' + s_class).parent().parent().hide();
|
104 |
|
|
else
|
105 |
|
|
$('.' + s_class).parent().parent().show();
|
106 |
|
|
}
|
107 |
|
|
|
108 |
|
|
// Hides div whose label contains the specified text. (Good for StaticText)
|
109 |
|
|
function hideLabel(text, hide) {
|
110 |
|
|
|
111 |
|
|
var element = $('label:contains(' + text + ')');
|
112 |
3ece7116
|
Stephen Beaver
|
|
113 |
726fdb61
|
Phil Davis
|
if (hide)
|
114 |
96c18fe4
|
Stephen Beaver
|
element.parent('div').addClass('hidden');
|
115 |
|
|
else
|
116 |
|
|
element.parent('div').removeClass('hidden');
|
117 |
08ec2d99
|
Stephen Beaver
|
}
|
118 |
|
|
|
119 |
25a96ffb
|
Stephen Beaver
|
// Hides the '/' and the subnet mask of an Ip_Address/subnet_mask group
|
120 |
|
|
function hideMask(name, hide) {
|
121 |
9d3e8723
|
Phil Davis
|
if (hide) {
|
122 |
e1caefc7
|
Stephen Beaver
|
$('[id^=' + name + ']').hide();
|
123 |
|
|
$('[id^=' + name + ']').prev('span').hide();
|
124 |
01142f51
|
Phil Davis
|
$('[id^=' + name + ']').parent('div').removeClass('input-group');
|
125 |
e1caefc7
|
Stephen Beaver
|
} else {
|
126 |
|
|
$('[id^=' + name + ']').show();
|
127 |
|
|
$('[id^=' + name + ']').prev('span').show();
|
128 |
01142f51
|
Phil Davis
|
$('[id^=' + name + ']').parent('div').addClass('input-group');
|
129 |
e1caefc7
|
Stephen Beaver
|
}
|
130 |
25a96ffb
|
Stephen Beaver
|
}
|
131 |
|
|
|
132 |
678c6a56
|
Steve Beaver
|
// Set the help text for a given input
|
133 |
|
|
function setHelpText(id, text) {
|
134 |
|
|
$('#' + id).parent().parent('div').find('span:nth-child(2)').html(text);
|
135 |
|
|
}
|
136 |
|
|
|
137 |
39609bf9
|
Stephen Beaver
|
// Toggle table row checkboxes and background colors on the pages that use sortable tables:
|
138 |
65a0e193
|
Stephen Beaver
|
// /usr/local/www/firewall_nat.php
|
139 |
|
|
// /usr/local/www/firewall_nat_1to1.php
|
140 |
|
|
// /usr/local/www/firewall_nat_out.php
|
141 |
|
|
// /usr/local/www/firewall_rules.php
|
142 |
|
|
// /usr/local/www/vpn_ipsec.php
|
143 |
1b6b7fc4
|
Stephen Beaver
|
// Striping of the tables is handled here, NOT with the Bootstrap table-striped class because it would
|
144 |
65a0e193
|
Stephen Beaver
|
// get confused when rows are sorted or deleted.
|
145 |
|
|
|
146 |
|
|
function fr_toggle(id, prefix) {
|
147 |
|
|
if (!prefix)
|
148 |
|
|
prefix = 'fr';
|
149 |
|
|
|
150 |
|
|
var checkbox = document.getElementById(prefix + 'c' + id);
|
151 |
|
|
checkbox.checked = !checkbox.checked;
|
152 |
|
|
fr_bgcolor(id, prefix);
|
153 |
|
|
}
|
154 |
|
|
|
155 |
b5ef3ee9
|
Jared Dillard
|
// Change background color of selected row based on state of checkbox
|
156 |
65a0e193
|
Stephen Beaver
|
function fr_bgcolor(id, prefix) {
|
157 |
|
|
if (!prefix)
|
158 |
|
|
prefix = 'fr';
|
159 |
|
|
|
160 |
|
|
var row = $('#' + prefix + id);
|
161 |
|
|
|
162 |
|
|
if ($('#' + prefix + 'c' + id).prop('checked') ) {
|
163 |
b5ef3ee9
|
Jared Dillard
|
row.addClass('active');
|
164 |
65a0e193
|
Stephen Beaver
|
} else {
|
165 |
b5ef3ee9
|
Jared Dillard
|
row.removeClass('active');
|
166 |
65a0e193
|
Stephen Beaver
|
}
|
167 |
|
|
}
|
168 |
|
|
|
169 |
44fad9cc
|
Stephen Beaver
|
// The following functions are used by Form_Groups assigned a class of "repeatable" and provide the ability
|
170 |
|
|
// to add/delete rows of sequentially numbered elements, their labels and their help text
|
171 |
08ec2d99
|
Stephen Beaver
|
// See firewall_aliases_edit.php for an example
|
172 |
|
|
|
173 |
726fdb61
|
Phil Davis
|
// NOTE: retainhelp is a global var that when defined prevents any help text from being deleted as lines are inserted.
|
174 |
44fad9cc
|
Stephen Beaver
|
// IOW it causes every row to have help text, not just the last row
|
175 |
|
|
|
176 |
08ec2d99
|
Stephen Beaver
|
function setMasks() {
|
177 |
|
|
// Find all ipaddress masks and make dynamic based on address family of input
|
178 |
|
|
$('span.pfIpMask + select').each(function (idx, select){
|
179 |
|
|
var input = $(select).prevAll('input[type=text]');
|
180 |
|
|
|
181 |
|
|
input.on('change', function(e){
|
182 |
|
|
var isV6 = (input.val().indexOf(':') != -1), min = 0, max = 128;
|
183 |
|
|
if (!isV6)
|
184 |
|
|
max = 32;
|
185 |
|
|
|
186 |
|
|
if (input.val() == "")
|
187 |
|
|
return;
|
188 |
|
|
|
189 |
7ec80e76
|
Steve Beaver
|
// Sometimes the mask includes '0' (e.g. for VPNs), sometimes it does not
|
190 |
|
|
if (select.options[select.options.length - 1].value == 0) {
|
191 |
|
|
var mm = max + 1;
|
192 |
|
|
} else {
|
193 |
|
|
var mm = max;
|
194 |
|
|
}
|
195 |
|
|
|
196 |
|
|
while (select.options.length > mm)
|
197 |
08ec2d99
|
Stephen Beaver
|
select.remove(0);
|
198 |
|
|
|
199 |
726fdb61
|
Phil Davis
|
if (select.options.length < max) {
|
200 |
08ec2d99
|
Stephen Beaver
|
for (var i=select.options.length; i<=max; i++)
|
201 |
|
|
select.options.add(new Option(i, i), 0);
|
202 |
|
|
}
|
203 |
|
|
});
|
204 |
|
|
|
205 |
|
|
// Fire immediately
|
206 |
|
|
input.change();
|
207 |
|
|
});
|
208 |
|
|
}
|
209 |
|
|
|
210 |
|
|
// Complicated function to move all help text associated with this input id to the same id
|
211 |
|
|
// on the row above. That way if you delete the last row, you don't lose the help
|
212 |
|
|
function moveHelpText(id) {
|
213 |
4d4782fc
|
Stephen Beaver
|
|
214 |
|
|
$('#' + id).parent('div').parent('div').find('input, select, checkbox, button').each(function() { // For each <span></span>
|
215 |
08ec2d99
|
Stephen Beaver
|
var fromId = this.id;
|
216 |
|
|
var toId = decrStringInt(fromId);
|
217 |
|
|
var helpSpan;
|
218 |
|
|
|
219 |
4d4782fc
|
Stephen Beaver
|
|
220 |
0ed3b159
|
Stephen Beaver
|
if (!$(this).hasClass('pfIpMask') && !$(this).hasClass('btn')) {
|
221 |
726fdb61
|
Phil Davis
|
if ($('#' + decrStringInt(fromId)).parent('div').hasClass('input-group')) {
|
222 |
39609bf9
|
Stephen Beaver
|
helpSpan = $('#' + fromId).parent('div').parent('div').find('span:last').clone();
|
223 |
|
|
} else {
|
224 |
|
|
helpSpan = $('#' + fromId).parent('div').find('span:last').clone();
|
225 |
|
|
}
|
226 |
4d4782fc
|
Stephen Beaver
|
|
227 |
726fdb61
|
Phil Davis
|
if ($(helpSpan).hasClass('help-block')) {
|
228 |
|
|
if ($('#' + decrStringInt(fromId)).parent('div').hasClass('input-group')) {
|
229 |
08ec2d99
|
Stephen Beaver
|
$('#' + decrStringInt(fromId)).parent('div').after(helpSpan);
|
230 |
726fdb61
|
Phil Davis
|
} else {
|
231 |
08ec2d99
|
Stephen Beaver
|
$('#' + decrStringInt(fromId)).after(helpSpan);
|
232 |
39609bf9
|
Stephen Beaver
|
}
|
233 |
08ec2d99
|
Stephen Beaver
|
}
|
234 |
|
|
}
|
235 |
|
|
});
|
236 |
|
|
}
|
237 |
|
|
|
238 |
22dbacd0
|
PiBa-NL
|
// Increment the number at the end of the string
|
239 |
|
|
function getStringInt( str ) {
|
240 |
|
|
var data = str.match(/(\D*)(\d+)(\D*)/), newStr = "";
|
241 |
|
|
return Number( data[ 2 ] );
|
242 |
|
|
}
|
243 |
|
|
|
244 |
08ec2d99
|
Stephen Beaver
|
// Increment the number at the end of the string
|
245 |
|
|
function bumpStringInt( str ) {
|
246 |
|
|
var data = str.match(/(\D*)(\d+)(\D*)/), newStr = "";
|
247 |
|
|
|
248 |
726fdb61
|
Phil Davis
|
if (data)
|
249 |
08ec2d99
|
Stephen Beaver
|
newStr = data[ 1 ] + ( Number( data[ 2 ] ) + 1 ) + data[ 3 ];
|
250 |
|
|
|
251 |
|
|
return newStr || str;
|
252 |
|
|
}
|
253 |
|
|
|
254 |
|
|
// Decrement the number at the end of the string
|
255 |
|
|
function decrStringInt( str ) {
|
256 |
|
|
var data = str.match(/(\D*)(\d+)(\D*)/), newStr = "";
|
257 |
|
|
|
258 |
726fdb61
|
Phil Davis
|
if (data)
|
259 |
08ec2d99
|
Stephen Beaver
|
newStr = data[ 1 ] + ( Number( data[ 2 ] ) - 1 ) + data[ 3 ];
|
260 |
|
|
|
261 |
|
|
return newStr || str;
|
262 |
|
|
}
|
263 |
|
|
|
264 |
|
|
// Called after a delete so that there are no gaps in the numbering. Most of the time the config system doesn't care about
|
265 |
|
|
// gaps, but I do :)
|
266 |
|
|
function renumber() {
|
267 |
|
|
var idx = 0;
|
268 |
|
|
|
269 |
|
|
$('.repeatable').each(function() {
|
270 |
|
|
|
271 |
|
|
$(this).find('input').each(function() {
|
272 |
|
|
$(this).prop("id", this.id.replace(/\d+$/, "") + idx);
|
273 |
|
|
$(this).prop("name", this.name.replace(/\d+$/, "") + idx);
|
274 |
|
|
});
|
275 |
|
|
|
276 |
|
|
$(this).find('select').each(function() {
|
277 |
|
|
$(this).prop("id", this.id.replace(/\d+$/, "") + idx);
|
278 |
|
|
$(this).prop("name", this.name.replace(/\d+$/, "") + idx);
|
279 |
|
|
});
|
280 |
|
|
|
281 |
4d4782fc
|
Stephen Beaver
|
$(this).find('button').each(function() {
|
282 |
|
|
$(this).prop("id", this.id.replace(/\d+$/, "") + idx);
|
283 |
|
|
$(this).prop("name", this.name.replace(/\d+$/, "") + idx);
|
284 |
|
|
});
|
285 |
|
|
|
286 |
43dc3830
|
Stephen Beaver
|
// $(this).find('label').attr('for', $(this).find('label').attr('for').replace(/\d+$/, "") + idx);
|
287 |
08ec2d99
|
Stephen Beaver
|
|
288 |
|
|
idx++;
|
289 |
|
|
});
|
290 |
|
|
}
|
291 |
|
|
|
292 |
88afaf7d
|
Stephen Beaver
|
function delete_row(rowDelBtn) {
|
293 |
576437f5
|
Stephen Beaver
|
var rowLabel;
|
294 |
88afaf7d
|
Stephen Beaver
|
|
295 |
|
|
// If we are deleting row zero, we need to save/restore the label
|
296 |
3b1c0951
|
Steve Beaver
|
if ( (rowDelBtn == "deleterow0") && ((typeof retainhelp) == "undefined")) {
|
297 |
96f5ce46
|
Steve Beaver
|
rowLabel = $('#' + rowDelBtn).parent('div').parent('div').find('label:first').text();
|
298 |
88afaf7d
|
Stephen Beaver
|
}
|
299 |
|
|
|
300 |
|
|
$('#' + rowDelBtn).parent('div').parent('div').remove();
|
301 |
4d4782fc
|
Stephen Beaver
|
|
302 |
08ec2d99
|
Stephen Beaver
|
renumber();
|
303 |
0bc61baa
|
Stephen Beaver
|
checkLastRow();
|
304 |
88afaf7d
|
Stephen Beaver
|
|
305 |
|
|
if (rowDelBtn == "deleterow0") {
|
306 |
96f5ce46
|
Steve Beaver
|
$('#' + rowDelBtn).parent('div').parent('div').find('label:first').text(rowLabel);
|
307 |
88afaf7d
|
Stephen Beaver
|
}
|
308 |
0bc61baa
|
Stephen Beaver
|
}
|
309 |
|
|
|
310 |
|
|
function checkLastRow() {
|
311 |
1059fc88
|
Steve Beaver
|
if (($('.repeatable').length <= 1) && (! $('#deleterow0').hasClass("nowarn"))) {
|
312 |
0bc61baa
|
Stephen Beaver
|
$('#deleterow0').hide();
|
313 |
|
|
} else {
|
314 |
|
|
$('[id^=deleterow]').show();
|
315 |
|
|
}
|
316 |
08ec2d99
|
Stephen Beaver
|
}
|
317 |
|
|
|
318 |
22dbacd0
|
PiBa-NL
|
function bump_input_id(newGroup) {
|
319 |
08ec2d99
|
Stephen Beaver
|
$(newGroup).find('input').each(function() {
|
320 |
|
|
$(this).prop("id", bumpStringInt(this.id));
|
321 |
|
|
$(this).prop("name", bumpStringInt(this.name));
|
322 |
726fdb61
|
Phil Davis
|
if (!$(this).is('[id^=delete]'))
|
323 |
08ec2d99
|
Stephen Beaver
|
$(this).val('');
|
324 |
|
|
});
|
325 |
|
|
|
326 |
5ed4eb30
|
Stephen Beaver
|
// Increment the suffix number for the deleterow button element in the new group
|
327 |
|
|
$(newGroup).find('[id^=deleterow]').each(function() {
|
328 |
dbe64b71
|
Phil Davis
|
$(this).prop("id", bumpStringInt(this.id));
|
329 |
|
|
$(this).prop("name", bumpStringInt(this.name));
|
330 |
|
|
});
|
331 |
|
|
|
332 |
08ec2d99
|
Stephen Beaver
|
// Do the same for selectors
|
333 |
|
|
$(newGroup).find('select').each(function() {
|
334 |
|
|
$(this).prop("id", bumpStringInt(this.id));
|
335 |
|
|
$(this).prop("name", bumpStringInt(this.name));
|
336 |
|
|
// If this selector lists mask bits, we need it to be reset to all 128 options
|
337 |
|
|
// and no items selected, so that automatic v4/v6 selection still works
|
338 |
726fdb61
|
Phil Davis
|
if ($(this).is('[id^=address_subnet]')) {
|
339 |
08ec2d99
|
Stephen Beaver
|
$(this).empty();
|
340 |
35a52ca3
|
Manojav Sridhar
|
for (idx=128; idx>=0; idx--) {
|
341 |
08ec2d99
|
Stephen Beaver
|
$(this).append($('<option>', {
|
342 |
|
|
value: idx,
|
343 |
|
|
text: idx
|
344 |
|
|
}));
|
345 |
|
|
}
|
346 |
|
|
}
|
347 |
|
|
});
|
348 |
22dbacd0
|
PiBa-NL
|
}
|
349 |
|
|
function add_row() {
|
350 |
|
|
// Find the last repeatable group
|
351 |
|
|
var lastRepeatableGroup = $('.repeatable:last');
|
352 |
|
|
|
353 |
|
|
// If the number of repeats exceeds the maximum, do not add another clone
|
354 |
|
|
if ($('.repeatable').length >= lastRepeatableGroup.attr('max_repeats')) {
|
355 |
|
|
// Alert user if alert message is specified
|
356 |
|
|
if (typeof lastRepeatableGroup.attr('max_repeats_alert') !== 'undefined') {
|
357 |
|
|
alert(lastRepeatableGroup.attr('max_repeats_alert'));
|
358 |
|
|
}
|
359 |
|
|
return;
|
360 |
|
|
}
|
361 |
|
|
|
362 |
|
|
// Clone it
|
363 |
|
|
var newGroup = lastRepeatableGroup.clone();
|
364 |
|
|
|
365 |
|
|
// Increment the suffix number for each input element in the new group
|
366 |
|
|
bump_input_id(newGroup);
|
367 |
08ec2d99
|
Stephen Beaver
|
|
368 |
|
|
// And for "for" tags
|
369 |
43dc3830
|
Stephen Beaver
|
// $(newGroup).find('label').attr('for', bumpStringInt($(newGroup).find('label').attr('for')));
|
370 |
|
|
|
371 |
d38d215d
|
Stephen Beaver
|
$(newGroup).find('label:first').text(""); // Clear the label. We only want it on the very first row
|
372 |
08ec2d99
|
Stephen Beaver
|
|
373 |
|
|
// Insert the updated/cloned row
|
374 |
|
|
$(lastRepeatableGroup).after(newGroup);
|
375 |
|
|
|
376 |
|
|
// Delete any help text from the group we have cloned
|
377 |
|
|
$(lastRepeatableGroup).find('.help-block').each(function() {
|
378 |
726fdb61
|
Phil Davis
|
if ((typeof retainhelp) == "undefined")
|
379 |
08ec2d99
|
Stephen Beaver
|
$(this).remove();
|
380 |
|
|
});
|
381 |
|
|
|
382 |
|
|
setMasks();
|
383 |
|
|
|
384 |
0bc61baa
|
Stephen Beaver
|
checkLastRow();
|
385 |
|
|
|
386 |
c24178cd
|
Stephen Beaver
|
// Autocomplete
|
387 |
b6bd3103
|
Stephen Beaver
|
if ( typeof addressarray !== 'undefined') {
|
388 |
|
|
$('[id^=address]').each(function() {
|
389 |
726fdb61
|
Phil Davis
|
if (this.id.substring(0, 8) != "address_") {
|
390 |
b6bd3103
|
Stephen Beaver
|
$(this).autocomplete({
|
391 |
|
|
source: addressarray
|
392 |
|
|
});
|
393 |
|
|
}
|
394 |
|
|
});
|
395 |
|
|
}
|
396 |
9f6a9f24
|
Stephen Beaver
|
|
397 |
316c5503
|
Stephen Beaver
|
// Now that we are no longer cloning the event handlers, we need to remove and re-add after a new row
|
398 |
9f6a9f24
|
Stephen Beaver
|
// has been added to the table
|
399 |
|
|
$('[id^=delete]').unbind();
|
400 |
|
|
$('[id^=delete]').click(function(event) {
|
401 |
726fdb61
|
Phil Davis
|
if ($('.repeatable').length > 1) {
|
402 |
|
|
if ((typeof retainhelp) == "undefined")
|
403 |
ea02e3cf
|
Steve Beaver
|
moveHelpText($(this).attr("id"));
|
404 |
9f6a9f24
|
Stephen Beaver
|
|
405 |
ea02e3cf
|
Steve Beaver
|
delete_row($(this).attr("id"));
|
406 |
1059fc88
|
Steve Beaver
|
} else if ($(this).hasClass("nowarn")) {
|
407 |
|
|
clearRow0();
|
408 |
726fdb61
|
Phil Davis
|
} else {
|
409 |
af3cc7d6
|
NOYB
|
alert('The last row may not be deleted.');
|
410 |
726fdb61
|
Phil Davis
|
}
|
411 |
9f6a9f24
|
Stephen Beaver
|
});
|
412 |
08ec2d99
|
Stephen Beaver
|
}
|
413 |
|
|
|
414 |
|
|
// These are action buttons, not submit buttons
|
415 |
|
|
$('[id^=addrow]').prop('type','button');
|
416 |
|
|
$('[id^=delete]').prop('type','button');
|
417 |
|
|
|
418 |
|
|
// on click . .
|
419 |
|
|
$('[id^=addrow]').click(function() {
|
420 |
|
|
add_row();
|
421 |
|
|
});
|
422 |
|
|
|
423 |
|
|
$('[id^=delete]').click(function(event) {
|
424 |
726fdb61
|
Phil Davis
|
if ($('.repeatable').length > 1) {
|
425 |
|
|
if ((typeof retainhelp) == "undefined")
|
426 |
fab3c245
|
Steve Beaver
|
moveHelpText($(this).attr("id"));
|
427 |
08ec2d99
|
Stephen Beaver
|
|
428 |
fab3c245
|
Steve Beaver
|
delete_row($(this).attr("id"));
|
429 |
1059fc88
|
Steve Beaver
|
} else if ($(this).hasClass("nowarn")) {
|
430 |
|
|
clearRow0();
|
431 |
|
|
} else {
|
432 |
|
|
alert('The last row may not be deleted.');
|
433 |
|
|
}
|
434 |
df4957e4
|
Stephen Beaver
|
});
|
435 |
|
|
|
436 |
1059fc88
|
Steve Beaver
|
function clearRow0() {
|
437 |
|
|
$('#deleterow0').parent('div').parent().find('input[type=text]').val('');
|
438 |
|
|
$('#deleterow0').parent('div').parent().find('input[type=checkbox]:checked').removeAttr('checked');
|
439 |
|
|
}
|
440 |
|
|
|
441 |
85d29bf5
|
Stephen Beaver
|
// "More information" handlers --------------------------------------------------------------------
|
442 |
0149ef4d
|
Stephen Beaver
|
|
443 |
|
|
// If there is an infoblock, automatically add an info icon that toggles its display
|
444 |
c9679d8c
|
Stephen Beaver
|
|
445 |
c95dabdd
|
Stephen Beaver
|
var sfx = 0;
|
446 |
85d29bf5
|
Stephen Beaver
|
|
447 |
c95dabdd
|
Stephen Beaver
|
$('.infoblock').each(function() {
|
448 |
cca28e34
|
Phil Davis
|
// If the block has the class "blockopen" it is initially open
|
449 |
c95dabdd
|
Stephen Beaver
|
if (! $(this).hasClass("blockopen")) {
|
450 |
85d29bf5
|
Stephen Beaver
|
$(this).hide();
|
451 |
c95dabdd
|
Stephen Beaver
|
} else {
|
452 |
|
|
$(this).removeClass("blockopen");
|
453 |
85d29bf5
|
Stephen Beaver
|
}
|
454 |
|
|
|
455 |
cca28e34
|
Phil Davis
|
// Add the "i" icon before the infoblock, incrementing the icon id for each block (in case there are multiple infoblocks on a page)
|
456 |
c95dabdd
|
Stephen Beaver
|
$(this).before('<i class="fa fa-info-circle icon-pointer" style="color: #337AB7; font-size:20px; margin-left: 10px; margin-bottom: 10px;" id="showinfo' + sfx.toString() + '" title="More information"></i>');
|
457 |
|
|
$(this).removeClass("infoblock");
|
458 |
|
|
$(this).addClass("infoblock" + sfx.toString());
|
459 |
|
|
sfx++;
|
460 |
85d29bf5
|
Stephen Beaver
|
});
|
461 |
0149ef4d
|
Stephen Beaver
|
|
462 |
5a957b9a
|
Phil Davis
|
// Show the help on clicking the info icon
|
463 |
85d29bf5
|
Stephen Beaver
|
$('[id^="showinfo"]').click(function() {
|
464 |
|
|
var id = $(this).attr("id");
|
465 |
c95dabdd
|
Stephen Beaver
|
$('.' + "infoblock" + id.substr(8)).toggle();
|
466 |
f8619b46
|
Stephen Beaver
|
document.getSelection().removeAllRanges(); // Ensure the text is un-selected (Chrome browser quirk)
|
467 |
82afb104
|
Stephen Beaver
|
});
|
468 |
85d29bf5
|
Stephen Beaver
|
// ------------------------------------------------------------------------------------------------
|
469 |
82afb104
|
Stephen Beaver
|
|
470 |
1c72e99f
|
Stephen Beaver
|
// Put a dummy row into any empty table to keep IE happy
|
471 |
666be0be
|
jim-p
|
// Commented out due to https://redmine.pfsense.org/issues/7504
|
472 |
|
|
//$('tbody').each(function(){
|
473 |
|
|
// $(this).html($.trim($(this).html()))
|
474 |
|
|
//});
|
475 |
82afb104
|
Stephen Beaver
|
|
476 |
e82778da
|
Stephen Beaver
|
$('tbody:empty').html("<tr><td></td></tr>");
|
477 |
d5d5836c
|
Stephen Beaver
|
|
478 |
4a457d8d
|
Stephen Beaver
|
// Hide configuration button for panels without configuration
|
479 |
|
|
$('.container .panel-heading a.config').each(function (idx, el){
|
480 |
|
|
var config = $(el).parents('.panel').children('.panel-footer');
|
481 |
|
|
if (config.length == 1)
|
482 |
|
|
$(el).removeClass('hidden');
|
483 |
|
|
});
|
484 |
d5d5836c
|
Stephen Beaver
|
|
485 |
4a457d8d
|
Stephen Beaver
|
// Initial state & toggle icons of collapsed panel
|
486 |
|
|
$('.container .panel-heading a[data-toggle="collapse"]').each(function (idx, el){
|
487 |
|
|
var body = $(el).parents('.panel').children('.panel-body')
|
488 |
|
|
var isOpen = body.hasClass('in');
|
489 |
d5d5836c
|
Stephen Beaver
|
|
490 |
4a457d8d
|
Stephen Beaver
|
$(el).children('i').toggleClass('fa-plus-circle', !isOpen);
|
491 |
|
|
$(el).children('i').toggleClass('fa-minus-circle', isOpen);
|
492 |
d5d5836c
|
Stephen Beaver
|
|
493 |
4a457d8d
|
Stephen Beaver
|
body.on('shown.bs.collapse', function(){
|
494 |
|
|
$(el).children('i').toggleClass('fa-minus-circle', true);
|
495 |
|
|
$(el).children('i').toggleClass('fa-plus-circle', false);
|
496 |
|
|
});
|
497 |
d5d5836c
|
Stephen Beaver
|
|
498 |
4a457d8d
|
Stephen Beaver
|
body.on('hidden.bs.collapse', function(){
|
499 |
|
|
$(el).children('i').toggleClass('fa-minus-circle', false);
|
500 |
|
|
$(el).children('i').toggleClass('fa-plus-circle', true);
|
501 |
|
|
});
|
502 |
cca28e34
|
Phil Davis
|
});
|
503 |
7d8552fc
|
Stephen Beaver
|
|
504 |
29fda3d3
|
Stephen Beaver
|
// Separator bar stuff ------------------------------------------------------------------------
|
505 |
7d8552fc
|
Stephen Beaver
|
|
506 |
29fda3d3
|
Stephen Beaver
|
// Globals
|
507 |
|
|
gColor = 'bg-info';
|
508 |
c049c15e
|
Phil Davis
|
newSeparator = false;
|
509 |
29fda3d3
|
Stephen Beaver
|
saving = false;
|
510 |
|
|
dirty = false;
|
511 |
|
|
|
512 |
|
|
$("#addsep").prop('type' ,'button');
|
513 |
|
|
|
514 |
|
|
$("#addsep").click(function() {
|
515 |
c049c15e
|
Phil Davis
|
if (newSeparator) {
|
516 |
29fda3d3
|
Stephen Beaver
|
return(false);
|
517 |
|
|
}
|
518 |
7d8552fc
|
Stephen Beaver
|
|
519 |
29fda3d3
|
Stephen Beaver
|
gColor = 'bg-info';
|
520 |
726fdb61
|
Phil Davis
|
// Insert a temporary bar in which the user can enter some optional text
|
521 |
29fda3d3
|
Stephen Beaver
|
sepcols = $( "#ruletable tr th" ).length - 2;
|
522 |
|
|
|
523 |
|
|
$('#ruletable > tbody:last').append('<tr>' +
|
524 |
|
|
'<td class="' + gColor + '" colspan="' + sepcols + '"><input id="newsep" placeholder="' + svbtnplaceholder + '" class="col-md-12" type="text" /></td>' +
|
525 |
|
|
'<td class="' + gColor + '" colspan="2"><button class="btn btn-primary btn-sm" id="btnnewsep"><i class="fa fa-save icon-embed-btn"></i>' + svtxt + '</button>' +
|
526 |
|
|
'<button class="btn btn-info btn-sm" id="btncncsep"><i class="fa fa-undo icon-embed-btn"></i>' + cncltxt + '</button>' +
|
527 |
|
|
' ' +
|
528 |
|
|
' <a id="sepclrblue" value="bg-info"><i class="fa fa-circle text-info icon-pointer"></i></a>' +
|
529 |
|
|
' <a id="sepclrred" value="bg-danger"><i class="fa fa-circle text-danger icon-pointer"></i></a>' +
|
530 |
|
|
' <a id="sepclrgreen" value="bg-success"><i class="fa fa-circle text-success icon-pointer"></i></a>' +
|
531 |
|
|
' <a id="sepclrorange" value="bg-warning"><i class="fa fa-circle text-warning icon-pointer"></i></button>' +
|
532 |
|
|
'</td></tr>');
|
533 |
|
|
|
534 |
|
|
$('#newsep').focus();
|
535 |
c049c15e
|
Phil Davis
|
newSeparator = true;
|
536 |
29fda3d3
|
Stephen Beaver
|
|
537 |
|
|
$("#btnnewsep").prop('type' ,'button');
|
538 |
|
|
|
539 |
|
|
// Watch escape and enter keys
|
540 |
|
|
$('#newsep').keyup(function(e) {
|
541 |
726fdb61
|
Phil Davis
|
if (e.which == 27) {
|
542 |
29fda3d3
|
Stephen Beaver
|
$('#btncncsep').trigger('click');
|
543 |
|
|
}
|
544 |
|
|
});
|
545 |
7d8552fc
|
Stephen Beaver
|
|
546 |
29fda3d3
|
Stephen Beaver
|
$('#newsep').keypress(function(e) {
|
547 |
726fdb61
|
Phil Davis
|
if (e.which == 13) {
|
548 |
29fda3d3
|
Stephen Beaver
|
$('#btnnewsep').trigger('click');
|
549 |
7d8552fc
|
Stephen Beaver
|
}
|
550 |
29fda3d3
|
Stephen Beaver
|
});
|
551 |
|
|
|
552 |
|
|
handle_colors();
|
553 |
7d8552fc
|
Stephen Beaver
|
|
554 |
29fda3d3
|
Stephen Beaver
|
// Replace the temporary separator bar with the final version containing the
|
555 |
|
|
// user's text and a delete icon
|
556 |
|
|
$("#btnnewsep").click(function() {
|
557 |
|
|
var septext = escapeHtml($('#newsep').val());
|
558 |
|
|
sepcols = $( "#ruletable tr th" ).length - 1;
|
559 |
|
|
|
560 |
|
|
$(this).parents('tr').replaceWith('<tr class="ui-sortable-handle separator">' +
|
561 |
|
|
'<td class="' + gColor + '" colspan="' + sepcols + '">' + '<span class="' + gColor + '">' + septext + '</span></td>' +
|
562 |
|
|
'<td class="' + gColor + '"><a href="#"><i class="fa fa-trash sepdel"></i></a>' +
|
563 |
7d8552fc
|
Stephen Beaver
|
'</td></tr>');
|
564 |
|
|
|
565 |
29fda3d3
|
Stephen Beaver
|
$('#order-store').removeAttr('disabled');
|
566 |
c049c15e
|
Phil Davis
|
newSeparator = false;
|
567 |
29fda3d3
|
Stephen Beaver
|
dirty = true;
|
568 |
|
|
});
|
569 |
7d8552fc
|
Stephen Beaver
|
|
570 |
29fda3d3
|
Stephen Beaver
|
// Cancel button
|
571 |
|
|
$('#btncncsep').click(function(e) {
|
572 |
|
|
e.preventDefault();
|
573 |
|
|
$(this).parents('tr').remove();
|
574 |
c049c15e
|
Phil Davis
|
newSeparator = false;
|
575 |
29fda3d3
|
Stephen Beaver
|
});
|
576 |
|
|
});
|
577 |
7d8552fc
|
Stephen Beaver
|
|
578 |
29fda3d3
|
Stephen Beaver
|
// Delete a separator row
|
579 |
|
|
$(function(){
|
580 |
|
|
$('table').on('click','tr a .sepdel',function(e){
|
581 |
|
|
e.preventDefault();
|
582 |
|
|
$(this).parents('tr').remove();
|
583 |
|
|
$('#order-store').removeAttr('disabled');
|
584 |
|
|
dirty = true;
|
585 |
|
|
});
|
586 |
|
|
});
|
587 |
7d8552fc
|
Stephen Beaver
|
|
588 |
726fdb61
|
Phil Davis
|
// Compose an input array containing the row #, color and text for each separator
|
589 |
29fda3d3
|
Stephen Beaver
|
function save_separators() {
|
590 |
|
|
var row = 0;
|
591 |
|
|
var sepinput;
|
592 |
|
|
var sepnum = 0;
|
593 |
|
|
|
594 |
|
|
$('#ruletable > tbody > tr').each(function() {
|
595 |
|
|
if ($(this).hasClass('separator')) {
|
596 |
|
|
seprow = $(this).next('tr').attr("id");
|
597 |
|
|
if (seprow == undefined) {
|
598 |
|
|
seprow = "fr" + row;
|
599 |
7d8552fc
|
Stephen Beaver
|
}
|
600 |
|
|
|
601 |
29fda3d3
|
Stephen Beaver
|
sepinput = '<input type="hidden" name="separator[' + sepnum + '][row]" value="' + seprow + '"></input>';
|
602 |
|
|
$('form').append(sepinput);
|
603 |
|
|
sepinput = '<input type="hidden" name="separator[' + sepnum + '][text]" value="' + escapeHtml($(this).find('td').text()) + '"></input>';
|
604 |
|
|
$('form').append(sepinput);
|
605 |
|
|
sepinput = '<input type="hidden" name="separator[' + sepnum + '][color]" value="' + $(this).find('td').prop('class') + '"></input>';
|
606 |
|
|
$('form').append(sepinput);
|
607 |
|
|
sepinput = '<input type="hidden" name="separator[' + sepnum + '][if]" value="' + iface + '"></input>';
|
608 |
|
|
$('form').append(sepinput);
|
609 |
|
|
sepnum++;
|
610 |
|
|
} else {
|
611 |
|
|
if ($(this).parent('tbody').hasClass('user-entries')) {
|
612 |
|
|
row++;
|
613 |
|
|
}
|
614 |
|
|
}
|
615 |
|
|
});
|
616 |
|
|
}
|
617 |
7d8552fc
|
Stephen Beaver
|
|
618 |
29fda3d3
|
Stephen Beaver
|
function reindex_rules(section) {
|
619 |
|
|
var row = 0;
|
620 |
7d8552fc
|
Stephen Beaver
|
|
621 |
29fda3d3
|
Stephen Beaver
|
section.find('tr').each(function() {
|
622 |
726fdb61
|
Phil Davis
|
if (this.id) {
|
623 |
29fda3d3
|
Stephen Beaver
|
$(this).attr("id", "fr" + row);
|
624 |
|
|
$(this).attr("onclick", "fr_toggle(" + row + ")")
|
625 |
|
|
$(this).find('input:checkbox:first').each(function() {
|
626 |
|
|
$(this).attr("id", "frc" + row);
|
627 |
|
|
$(this).attr("onclick", "fr_toggle(" + row + ")");
|
628 |
|
|
});
|
629 |
7d8552fc
|
Stephen Beaver
|
|
630 |
29fda3d3
|
Stephen Beaver
|
row++;
|
631 |
|
|
}
|
632 |
7d8552fc
|
Stephen Beaver
|
});
|
633 |
29fda3d3
|
Stephen Beaver
|
}
|
634 |
7d8552fc
|
Stephen Beaver
|
|
635 |
29fda3d3
|
Stephen Beaver
|
function handle_colors() {
|
636 |
|
|
$('[id^=sepclr]').prop("type", "button");
|
637 |
|
|
|
638 |
|
|
$('[id^=sepclr]').click(function () {
|
639 |
|
|
var color = $(this).attr('value');
|
640 |
|
|
// Clear all the color classes
|
641 |
|
|
$(this).parent('td').prop('class', '');
|
642 |
|
|
$(this).parent('td').prev('td').prop('class', '');
|
643 |
|
|
// Install our new color class
|
644 |
|
|
$(this).parent('td').addClass(color);
|
645 |
|
|
$(this).parent('td').prev('td').addClass(color);
|
646 |
|
|
// Set the global color
|
647 |
|
|
gColor = color;
|
648 |
7d8552fc
|
Stephen Beaver
|
});
|
649 |
29fda3d3
|
Stephen Beaver
|
}
|
650 |
7d8552fc
|
Stephen Beaver
|
|
651 |
29fda3d3
|
Stephen Beaver
|
//JS equivalent to PHP htmlspecialchars()
|
652 |
|
|
function escapeHtml(text) {
|
653 |
|
|
var map = {
|
654 |
|
|
'&': '&',
|
655 |
|
|
'<': '<',
|
656 |
|
|
'>': '>',
|
657 |
|
|
'"': '"',
|
658 |
|
|
"'": '''
|
659 |
|
|
};
|
660 |
|
|
|
661 |
|
|
return text.replace(/[&<>"']/g, function(m) { return map[m]; });
|
662 |
|
|
}
|
663 |
|
|
// --------------------------------------------------------------------------------------------
|
664 |
7d8552fc
|
Stephen Beaver
|
|
665 |
29fda3d3
|
Stephen Beaver
|
// Select every option in the specified multiselect
|
666 |
|
|
function AllServers(id, selectAll) {
|
667 |
|
|
for (i = 0; i < id.length; i++) {
|
668 |
|
|
id.eq(i).prop('selected', selectAll);
|
669 |
|
|
}
|
670 |
|
|
}
|
671 |
3f597adb
|
Stephen Beaver
|
|
672 |
29fda3d3
|
Stephen Beaver
|
// Move all selected options from one multiselect to another
|
673 |
|
|
function moveOptions(From, To) {
|
674 |
|
|
var len = From.length;
|
675 |
|
|
var option;
|
676 |
|
|
|
677 |
|
|
if (len > 0) {
|
678 |
|
|
for (i=0; i<len; i++) {
|
679 |
|
|
if (From.eq(i).is(':selected')) {
|
680 |
|
|
option = From.eq(i).val();
|
681 |
|
|
value = From.eq(i).text();
|
682 |
|
|
To.append(new Option(value, option));
|
683 |
|
|
From.eq(i).remove();
|
684 |
7d8552fc
|
Stephen Beaver
|
}
|
685 |
29fda3d3
|
Stephen Beaver
|
}
|
686 |
7d8552fc
|
Stephen Beaver
|
}
|
687 |
29fda3d3
|
Stephen Beaver
|
}
|
688 |
7d8552fc
|
Stephen Beaver
|
|
689 |
29fda3d3
|
Stephen Beaver
|
// ------------- Service start/stop/restart functions.
|
690 |
7f30df9a
|
Stephen Beaver
|
// If a start/stop/restart button is clicked, parse the button name and make a POST via AJAX
|
691 |
29fda3d3
|
Stephen Beaver
|
$('[id*=restartservice-], [id*=stopservice-], [id*=startservice-]').click(function(event) {
|
692 |
|
|
var args = this.id.split('-');
|
693 |
|
|
var action, name, mode_zone, id;
|
694 |
|
|
|
695 |
|
|
if (args[0] == "openvpn") {
|
696 |
|
|
action = args[1];
|
697 |
|
|
name = args[0];
|
698 |
|
|
mode_zone = args[2];
|
699 |
|
|
id = args[3];
|
700 |
dbd0501b
|
doktornotor
|
} else if (args[0] == "captiveportal") {
|
701 |
29fda3d3
|
Stephen Beaver
|
action = args[1];
|
702 |
|
|
name = args[0];
|
703 |
|
|
mode_zone = args[2];
|
704 |
|
|
id = args[3];
|
705 |
|
|
} else {
|
706 |
|
|
action = args[0];
|
707 |
21a8edd7
|
Steve Beaver
|
args.shift();
|
708 |
|
|
name = args.join('-');
|
709 |
2ccf2ede
|
Stephen Beaver
|
}
|
710 |
|
|
|
711 |
29fda3d3
|
Stephen Beaver
|
$(this).children('i').removeClass().addClass('fa fa-cog fa-spin text-success');
|
712 |
4c08c292
|
Stephen Beaver
|
this.blur();
|
713 |
29fda3d3
|
Stephen Beaver
|
|
714 |
|
|
ajaxRequest = $.ajax(
|
715 |
|
|
{
|
716 |
|
|
url: "/status_services.php",
|
717 |
|
|
type: "post",
|
718 |
|
|
data: {
|
719 |
|
|
ajax: "ajax",
|
720 |
|
|
mode: action,
|
721 |
|
|
service: name,
|
722 |
|
|
vpnmode: mode_zone,
|
723 |
|
|
zone: mode_zone,
|
724 |
|
|
id: id
|
725 |
2ccf2ede
|
Stephen Beaver
|
}
|
726 |
|
|
}
|
727 |
29fda3d3
|
Stephen Beaver
|
);
|
728 |
|
|
|
729 |
|
|
// Once the AJAX call has returned, refresh the page to show the new service
|
730 |
|
|
ajaxRequest.done(function (response, textStatus, jqXHR) {
|
731 |
|
|
location.reload(true);
|
732 |
|
|
});
|
733 |
|
|
});
|
734 |
f0136b17
|
Steve Beaver
|
|
735 |
|
|
// The scripts that follow are an EXPERIMENT in using jQuery/Javascript to automatically convert
|
736 |
|
|
// GET calls to POST calls
|
737 |
e04daed0
|
Steve Beaver
|
// Any anchor with the attribute "usepost" usses these functions.
|
738 |
f0136b17
|
Steve Beaver
|
|
739 |
|
|
// Any time an anchor is clicked and the "usepost" attibute is present, convert the href attribute
|
740 |
|
|
// to POST format, make a POST form and submit it
|
741 |
|
|
|
742 |
64d53c69
|
Steve Beaver
|
interceptGET();
|
743 |
e04daed0
|
Steve Beaver
|
|
744 |
64d53c69
|
Steve Beaver
|
function interceptGET() {
|
745 |
|
|
$('a').click(function(e) {
|
746 |
|
|
// Does the clicked anchor have the "usepost" attribute?
|
747 |
|
|
var attr = $(this).attr('usepost');
|
748 |
e04daed0
|
Steve Beaver
|
|
749 |
64d53c69
|
Steve Beaver
|
if (typeof attr !== typeof undefined && attr !== false) {
|
750 |
|
|
// Automatically apply a confirmation dialog to "Delete" icons
|
751 |
|
|
if (!($(this).hasClass('no-confirm')) && !($(this).hasClass('icon-embed-btn')) &&
|
752 |
|
|
($(this).hasClass('fa-trash'))) {
|
753 |
|
|
var msg = $.trim(this.textContent).toLowerCase();
|
754 |
e04daed0
|
Steve Beaver
|
|
755 |
64d53c69
|
Steve Beaver
|
if (!msg)
|
756 |
|
|
var msg = $.trim(this.value).toLowerCase();
|
757 |
e04daed0
|
Steve Beaver
|
|
758 |
64d53c69
|
Steve Beaver
|
var q = 'Are you sure you wish to '+ msg +'?';
|
759 |
|
|
|
760 |
|
|
if ($(this).attr('title') != undefined)
|
761 |
|
|
q = 'Are you sure you wish to '+ $(this).attr('title').toLowerCase() + '?';
|
762 |
|
|
|
763 |
|
|
if (!confirm(q)) {
|
764 |
|
|
return false;
|
765 |
|
|
}
|
766 |
e04daed0
|
Steve Beaver
|
}
|
767 |
|
|
|
768 |
64d53c69
|
Steve Beaver
|
var target = $(this).attr("href").split("?");
|
769 |
f0136b17
|
Steve Beaver
|
|
770 |
64d53c69
|
Steve Beaver
|
postSubmit(get2post(target[1]),target[0]);
|
771 |
|
|
return false;
|
772 |
|
|
}
|
773 |
|
|
});
|
774 |
|
|
}
|
775 |
f0136b17
|
Steve Beaver
|
|
776 |
19be2fc2
|
Nazar Mokrynskyi
|
// Convert a GET argument list such as ?name=fred&action=delete into an object of POST
|
777 |
|
|
// parameters such as {name : fred, action : delete}
|
778 |
f0136b17
|
Steve Beaver
|
function get2post(getargs) {
|
779 |
19be2fc2
|
Nazar Mokrynskyi
|
var argdict = {};
|
780 |
f0136b17
|
Steve Beaver
|
var argarray = getargs.split('&');
|
781 |
|
|
|
782 |
19be2fc2
|
Nazar Mokrynskyi
|
argarray.forEach(function(arg) {
|
783 |
|
|
arg = arg.split('=');
|
784 |
|
|
argdict[arg[0]] = arg[1];
|
785 |
|
|
});
|
786 |
f0136b17
|
Steve Beaver
|
|
787 |
19be2fc2
|
Nazar Mokrynskyi
|
return argdict;
|
788 |
f0136b17
|
Steve Beaver
|
}
|
789 |
|
|
|
790 |
|
|
// Create a form, add, the POST data and submit it
|
791 |
06f6b161
|
Steve Beaver
|
function postSubmit(data, target) {
|
792 |
19be2fc2
|
Nazar Mokrynskyi
|
var $form = $('<form>');
|
793 |
|
|
|
794 |
|
|
for (var name in data) {
|
795 |
|
|
$form.append(
|
796 |
|
|
$("<input>")
|
797 |
|
|
.attr("type", "hidden")
|
798 |
|
|
.attr("name", name)
|
799 |
|
|
.val(data[name])
|
800 |
|
|
);
|
801 |
f0136b17
|
Steve Beaver
|
}
|
802 |
|
|
|
803 |
19be2fc2
|
Nazar Mokrynskyi
|
$form
|
804 |
|
|
.attr("method", "POST")
|
805 |
|
|
.attr("action", target)
|
806 |
|
|
// The CSRF magic is required because we will be viewing the results of the POST
|
807 |
|
|
.append(
|
808 |
|
|
$("<input>")
|
809 |
|
|
.attr("type", "hidden")
|
810 |
|
|
.attr("name", "__csrf_magic")
|
811 |
|
|
.val(csrfMagicToken)
|
812 |
|
|
)
|
813 |
|
|
.appendTo('body')
|
814 |
|
|
.submit();
|
815 |
f0136b17
|
Steve Beaver
|
}
|