Permalink
Cannot retrieve contributors at this time
| /* | |
| * pfSenseHelpers.js | |
| * | |
| * part of pfSense (https://www.pfsense.org) | |
| * Copyright (c) 2004-2013 BSD Perimeter | |
| * Copyright (c) 2013-2016 Electric Sheep Fencing | |
| * Copyright (c) 2014-2021 Rubicon Communications, LLC (Netgate) | |
| * All rights reserved. | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software | |
| * distributed under the License is distributed on an "AS IS" BASIS, | |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| * See the License for the specific language governing permissions and | |
| * limitations under the License. | |
| */ | |
| // These helper functions are used on many/most UI pages to hide/show/disable/enable form elements where required | |
| // Cause the input to be displayed as a required field by adding the element-required class to the label | |
| function setRequired(id, req) { | |
| if (req) | |
| $('#' + id).parent().parent('div').find('span:first').addClass('element-required'); | |
| else | |
| $('#' + id).parent().parent('div').find('span:first').removeClass('element-required'); | |
| } | |
| // Hides the <div> in which the specified input element lives so that the input, its label and help text are hidden | |
| function hideInput(id, hide) { | |
| if (hide) | |
| $('#' + id).parent().parent('div').addClass('hidden'); | |
| else | |
| $('#' + id).parent().parent('div').removeClass('hidden'); | |
| } | |
| // Hides the <div> in which the specified group input element lives so that the input, | |
| // its label and help text are hidden | |
| function hideGroupInput(id, hide) { | |
| if (hide) | |
| $('#' + id).parent('div').addClass('hidden'); | |
| else | |
| $('#' + id).parent('div').removeClass('hidden'); | |
| } | |
| function invisibleGroupInput(id, hide) { | |
| if (hide) | |
| $('#' + id).addClass('invisible'); | |
| else | |
| $('#' + id).removeClass('invisible'); | |
| } | |
| // Hides the <div> in which the specified checkbox lives so that the checkbox, its label and help text are hidden | |
| function hideCheckbox(id, hide) { | |
| if (hide) | |
| $('#' + id).parent().parent().parent('div').addClass('hidden'); | |
| else | |
| $('#' + id).parent().parent().parent('div').removeClass('hidden'); | |
| } | |
| // Disables the specified input element | |
| function disableInput(id, disable) { | |
| $('#' + id).prop("disabled", disable); | |
| } | |
| // Hides all elements of the specified class. This will usually be a section | |
| function hideClass(s_class, hide) { | |
| if (hide) | |
| $('.' + s_class).hide(); | |
| else | |
| $('.' + s_class).show(); | |
| } | |
| function hideSelect(id, hide) { | |
| if (hide) | |
| $('#' + id).parent('div').parent('div').addClass('hidden'); | |
| else | |
| $('#' + id).parent('div').parent('div').removeClass('hidden'); | |
| } | |
| function hideMultiCheckbox(id, hide) { | |
| if (hide) | |
| $("[name=" + id + "]").parent().addClass('hidden'); | |
| else | |
| $("[name=" + id + "]").parent().removeClass('hidden'); | |
| } | |
| // 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 | |
| function hideIpAddress(id, hide) { | |
| if (hide) | |
| $('#' + id).parent().parent().parent('div').addClass('hidden'); | |
| else | |
| $('#' + id).parent().parent().parent('div').removeClass('hidden'); | |
| } | |
| // Hides all elements of the specified class belonging to a multiselect. | |
| function hideMultiClass(s_class, hide) { | |
| if (hide) | |
| $('.' + s_class).parent().parent().hide(); | |
| else | |
| $('.' + s_class).parent().parent().show(); | |
| } | |
| // Hides div whose label contains the specified text. (Good for StaticText) | |
| function hideLabel(text, hide) { | |
| var element = $('label:contains(' + text + ')'); | |
| if (hide) | |
| element.parent('div').addClass('hidden'); | |
| else | |
| element.parent('div').removeClass('hidden'); | |
| } | |
| // Hides the '/' and the subnet mask of an Ip_Address/subnet_mask group | |
| function hideMask(name, hide) { | |
| if (hide) { | |
| $('[id^=' + name + ']').hide(); | |
| $('[id^=' + name + ']').prev('span').hide(); | |
| $('[id^=' + name + ']').parent('div').removeClass('input-group'); | |
| } else { | |
| $('[id^=' + name + ']').show(); | |
| $('[id^=' + name + ']').prev('span').show(); | |
| $('[id^=' + name + ']').parent('div').addClass('input-group'); | |
| } | |
| } | |
| // Set the help text for a given input | |
| function setHelpText(id, text) { | |
| $('#' + id).parent().parent('div').find('span:nth-child(2)').html(text); | |
| } | |
| // Toggle table row checkboxes and background colors on the pages that use sortable tables: | |
| // /usr/local/www/firewall_nat.php | |
| // /usr/local/www/firewall_nat_1to1.php | |
| // /usr/local/www/firewall_nat_out.php | |
| // /usr/local/www/firewall_rules.php | |
| // /usr/local/www/vpn_ipsec.php | |
| // Striping of the tables is handled here, NOT with the Bootstrap table-striped class because it would | |
| // get confused when rows are sorted or deleted. | |
| function fr_toggle(id, prefix) { | |
| if (!prefix) | |
| prefix = 'fr'; | |
| var checkbox = document.getElementById(prefix + 'c' + id); | |
| checkbox.checked = !checkbox.checked; | |
| fr_bgcolor(id, prefix); | |
| } | |
| // Change background color of selected row based on state of checkbox | |
| function fr_bgcolor(id, prefix) { | |
| if (!prefix) | |
| prefix = 'fr'; | |
| var row = $('#' + prefix + id); | |
| if ($('#' + prefix + 'c' + id).prop('checked') ) { | |
| row.addClass('active'); | |
| } else { | |
| row.removeClass('active'); | |
| } | |
| } | |
| // The following functions are used by Form_Groups assigned a class of "repeatable" and provide the ability | |
| // to add/delete rows of sequentially numbered elements, their labels and their help text | |
| // See firewall_aliases_edit.php for an example | |
| // NOTE: retainhelp is a global var that when defined prevents any help text from being deleted as lines are inserted. | |
| // IOW it causes every row to have help text, not just the last row | |
| function setMasks() { | |
| // Find all ipaddress masks and make dynamic based on address family of input | |
| $('span.pfIpMask + select').each(function (idx, select){ | |
| var input = $(select).prevAll('input[type=text]'); | |
| input.on('change', function(e){ | |
| var isV6 = (input.val().indexOf(':') != -1), min = 0, max = 128; | |
| if (!isV6) | |
| max = 32; | |
| if (input.val() == "") | |
| return; | |
| // Sometimes the mask includes '0' (e.g. for VPNs), sometimes it does not | |
| if (select.options[select.options.length - 1].value == 0) { | |
| var mm = max + 1; | |
| } else { | |
| var mm = max; | |
| } | |
| while (select.options.length > mm) | |
| select.remove(0); | |
| if (select.options.length < max) { | |
| for (var i=select.options.length; i<=max; i++) | |
| select.options.add(new Option(i, i), 0); | |
| } | |
| }); | |
| // Fire immediately | |
| input.change(); | |
| }); | |
| } | |
| // Complicated function to move all help text associated with this input id to the same id | |
| // on the row above. That way if you delete the last row, you don't lose the help | |
| function moveHelpText(id) { | |
| $('#' + id).parent('div').parent('div').find('input, select, checkbox, button').each(function() { // For each <span></span> | |
| var fromId = this.id; | |
| var toId = decrStringInt(fromId); | |
| var helpSpan; | |
| if (!$(this).hasClass('pfIpMask') && !$(this).hasClass('btn')) { | |
| if ($('#' + decrStringInt(fromId)).parent('div').hasClass('input-group')) { | |
| helpSpan = $('#' + fromId).parent('div').parent('div').find('span:last').clone(); | |
| } else { | |
| helpSpan = $('#' + fromId).parent('div').find('span:last').clone(); | |
| } | |
| if ($(helpSpan).hasClass('help-block')) { | |
| if ($('#' + decrStringInt(fromId)).parent('div').hasClass('input-group')) { | |
| $('#' + decrStringInt(fromId)).parent('div').after(helpSpan); | |
| } else { | |
| $('#' + decrStringInt(fromId)).after(helpSpan); | |
| } | |
| } | |
| } | |
| }); | |
| } | |
| // Increment the number at the end of the string | |
| function getStringInt( str ) { | |
| var data = str.match(/(\D*)(\d+)(\D*)/), newStr = ""; | |
| return Number( data[ 2 ] ); | |
| } | |
| // Increment the number at the end of the string | |
| function bumpStringInt( str ) { | |
| var data = str.match(/(\D*)(\d+)(\D*)/), newStr = ""; | |
| if (data) | |
| newStr = data[ 1 ] + ( Number( data[ 2 ] ) + 1 ) + data[ 3 ]; | |
| return newStr || str; | |
| } | |
| // Decrement the number at the end of the string | |
| function decrStringInt( str ) { | |
| var data = str.match(/(\D*)(\d+)(\D*)/), newStr = ""; | |
| if (data) | |
| newStr = data[ 1 ] + ( Number( data[ 2 ] ) - 1 ) + data[ 3 ]; | |
| return newStr || str; | |
| } | |
| // Called after a delete so that there are no gaps in the numbering. Most of the time the config system doesn't care about | |
| // gaps, but I do :) | |
| function renumber() { | |
| var idx = 0; | |
| $('.repeatable').each(function() { | |
| $(this).find('input').each(function() { | |
| $(this).prop("id", this.id.replace(/\d+$/, "") + idx); | |
| $(this).prop("name", this.name.replace(/\d+$/, "") + idx); | |
| }); | |
| $(this).find('select').each(function() { | |
| $(this).prop("id", this.id.replace(/\d+$/, "") + idx); | |
| $(this).prop("name", this.name.replace(/\d+$/, "") + idx); | |
| }); | |
| $(this).find('button').each(function() { | |
| $(this).prop("id", this.id.replace(/\d+$/, "") + idx); | |
| $(this).prop("name", this.name.replace(/\d+$/, "") + idx); | |
| }); | |
| // $(this).find('label').attr('for', $(this).find('label').attr('for').replace(/\d+$/, "") + idx); | |
| idx++; | |
| }); | |
| } | |
| function delete_row(rowDelBtn) { | |
| var rowLabel; | |
| // If we are deleting row zero, we need to save/restore the label | |
| if ( (rowDelBtn == "deleterow0") && ((typeof retainhelp) == "undefined")) { | |
| rowLabel = $('#' + rowDelBtn).parent('div').parent('div').find('label:first').text(); | |
| } | |
| $('#' + rowDelBtn).parent('div').parent('div').remove(); | |
| renumber(); | |
| checkLastRow(); | |
| if (rowDelBtn == "deleterow0") { | |
| $('#' + rowDelBtn).parent('div').parent('div').find('label:first').text(rowLabel); | |
| } | |
| } | |
| function checkLastRow() { | |
| if (($('.repeatable').length <= 1) && (! $('#deleterow0').hasClass("nowarn"))) { | |
| $('#deleterow0').hide(); | |
| } else { | |
| $('[id^=deleterow]').show(); | |
| } | |
| } | |
| function bump_input_id(newGroup) { | |
| $(newGroup).find('input').each(function() { | |
| $(this).prop("id", bumpStringInt(this.id)); | |
| $(this).prop("name", bumpStringInt(this.name)); | |
| if (!$(this).is('[id^=delete]')) | |
| $(this).val(''); | |
| }); | |
| // Increment the suffix number for the deleterow button element in the new group | |
| $(newGroup).find('[id^=deleterow]').each(function() { | |
| $(this).prop("id", bumpStringInt(this.id)); | |
| $(this).prop("name", bumpStringInt(this.name)); | |
| }); | |
| // Do the same for selectors | |
| $(newGroup).find('select').each(function() { | |
| $(this).prop("id", bumpStringInt(this.id)); | |
| $(this).prop("name", bumpStringInt(this.name)); | |
| // If this selector lists mask bits, we need it to be reset to all 128 options | |
| // and no items selected, so that automatic v4/v6 selection still works | |
| if ($(this).is('[id^=address_subnet]')) { | |
| $(this).empty(); | |
| for (idx=128; idx>0; idx--) { | |
| $(this).append($('<option>', { | |
| value: idx, | |
| text: idx | |
| })); | |
| } | |
| } | |
| }); | |
| } | |
| function add_row() { | |
| // Find the last repeatable group | |
| var lastRepeatableGroup = $('.repeatable:last'); | |
| // If the number of repeats exceeds the maximum, do not add another clone | |
| if ($('.repeatable').length >= lastRepeatableGroup.attr('max_repeats')) { | |
| // Alert user if alert message is specified | |
| if (typeof lastRepeatableGroup.attr('max_repeats_alert') !== 'undefined') { | |
| alert(lastRepeatableGroup.attr('max_repeats_alert')); | |
| } | |
| return; | |
| } | |
| // Clone it | |
| var newGroup = lastRepeatableGroup.clone(); | |
| // Increment the suffix number for each input element in the new group | |
| bump_input_id(newGroup); | |
| // And for "for" tags | |
| // $(newGroup).find('label').attr('for', bumpStringInt($(newGroup).find('label').attr('for'))); | |
| $(newGroup).find('label:first').text(""); // Clear the label. We only want it on the very first row | |
| // Insert the updated/cloned row | |
| $(lastRepeatableGroup).after(newGroup); | |
| // Delete any help text from the group we have cloned | |
| $(lastRepeatableGroup).find('.help-block').each(function() { | |
| if ((typeof retainhelp) == "undefined") | |
| $(this).remove(); | |
| }); | |
| setMasks(); | |
| checkLastRow(); | |
| // Autocomplete | |
| if ( typeof addressarray !== 'undefined') { | |
| $('[id^=address]').each(function() { | |
| if (this.id.substring(0, 8) != "address_") { | |
| $(this).autocomplete({ | |
| source: addressarray | |
| }); | |
| } | |
| }); | |
| } | |
| // Now that we are no longer cloning the event handlers, we need to remove and re-add after a new row | |
| // has been added to the table | |
| $('[id^=delete]').unbind(); | |
| $('[id^=delete]').click(function(event) { | |
| if ($('.repeatable').length > 1) { | |
| if ((typeof retainhelp) == "undefined") | |
| moveHelpText($(this).attr("id")); | |
| delete_row($(this).attr("id")); | |
| } else if ($(this).hasClass("nowarn")) { | |
| clearRow0(); | |
| } else { | |
| alert('The last row may not be deleted.'); | |
| } | |
| }); | |
| } | |
| // These are action buttons, not submit buttons | |
| $('[id^=addrow]').prop('type','button'); | |
| $('[id^=delete]').prop('type','button'); | |
| // on click . . | |
| $('[id^=addrow]').click(function() { | |
| add_row(); | |
| }); | |
| $('[id^=delete]').click(function(event) { | |
| if ($('.repeatable').length > 1) { | |
| if ((typeof retainhelp) == "undefined") | |
| moveHelpText($(this).attr("id")); | |
| delete_row($(this).attr("id")); | |
| } else if ($(this).hasClass("nowarn")) { | |
| clearRow0(); | |
| } else { | |
| alert('The last row may not be deleted.'); | |
| } | |
| }); | |
| function clearRow0() { | |
| $('#deleterow0').parent('div').parent().find('input[type=text]').val(''); | |
| $('#deleterow0').parent('div').parent().find('input[type=checkbox]:checked').removeAttr('checked'); | |
| } | |
| // "More information" handlers -------------------------------------------------------------------- | |
| // If there is an infoblock, automatically add an info icon that toggles its display | |
| var sfx = 0; | |
| $('.infoblock').each(function() { | |
| // If the block has the class "blockopen" it is initially open | |
| if (! $(this).hasClass("blockopen")) { | |
| $(this).hide(); | |
| } else { | |
| $(this).removeClass("blockopen"); | |
| } | |
| // Add the "i" icon before the infoblock, incrementing the icon id for each block (in case there are multiple infoblocks on a page) | |
| $(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>'); | |
| $(this).removeClass("infoblock"); | |
| $(this).addClass("infoblock" + sfx.toString()); | |
| sfx++; | |
| }); | |
| // Show the help on clicking the info icon | |
| $('[id^="showinfo"]').click(function() { | |
| var id = $(this).attr("id"); | |
| $('.' + "infoblock" + id.substr(8)).toggle(); | |
| document.getSelection().removeAllRanges(); // Ensure the text is un-selected (Chrome browser quirk) | |
| }); | |
| // ------------------------------------------------------------------------------------------------ | |
| // Put a dummy row into any empty table to keep IE happy | |
| // Commented out due to https://redmine.pfsense.org/issues/7504 | |
| //$('tbody').each(function(){ | |
| // $(this).html($.trim($(this).html())) | |
| //}); | |
| $('tbody:empty').html("<tr><td></td></tr>"); | |
| // Hide configuration button for panels without configuration | |
| $('.container .panel-heading a.config').each(function (idx, el){ | |
| var config = $(el).parents('.panel').children('.panel-footer'); | |
| if (config.length == 1) | |
| $(el).removeClass('hidden'); | |
| }); | |
| // Initial state & toggle icons of collapsed panel | |
| $('.container .panel-heading a[data-toggle="collapse"]').each(function (idx, el){ | |
| var body = $(el).parents('.panel').children('.panel-body') | |
| var isOpen = body.hasClass('in'); | |
| $(el).children('i').toggleClass('fa-plus-circle', !isOpen); | |
| $(el).children('i').toggleClass('fa-minus-circle', isOpen); | |
| body.on('shown.bs.collapse', function(){ | |
| $(el).children('i').toggleClass('fa-minus-circle', true); | |
| $(el).children('i').toggleClass('fa-plus-circle', false); | |
| }); | |
| body.on('hidden.bs.collapse', function(){ | |
| $(el).children('i').toggleClass('fa-minus-circle', false); | |
| $(el).children('i').toggleClass('fa-plus-circle', true); | |
| }); | |
| }); | |
| // Separator bar stuff ------------------------------------------------------------------------ | |
| // Globals | |
| gColor = 'bg-info'; | |
| newSeparator = false; | |
| saving = false; | |
| dirty = false; | |
| $("#addsep").prop('type' ,'button'); | |
| $("#addsep").click(function() { | |
| if (newSeparator) { | |
| return(false); | |
| } | |
| gColor = 'bg-info'; | |
| // Insert a temporary bar in which the user can enter some optional text | |
| sepcols = $( "#ruletable tr th" ).length - 2; | |
| $('#ruletable > tbody:last').append('<tr>' + | |
| '<td class="' + gColor + '" colspan="' + sepcols + '"><input id="newsep" placeholder="' + svbtnplaceholder + '" class="col-md-12" type="text" /></td>' + | |
| '<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>' + | |
| '<button class="btn btn-info btn-sm" id="btncncsep"><i class="fa fa-undo icon-embed-btn"></i>' + cncltxt + '</button>' + | |
| ' ' + | |
| ' <a id="sepclrblue" value="bg-info"><i class="fa fa-circle text-info icon-pointer"></i></a>' + | |
| ' <a id="sepclrred" value="bg-danger"><i class="fa fa-circle text-danger icon-pointer"></i></a>' + | |
| ' <a id="sepclrgreen" value="bg-success"><i class="fa fa-circle text-success icon-pointer"></i></a>' + | |
| ' <a id="sepclrorange" value="bg-warning"><i class="fa fa-circle text-warning icon-pointer"></i></button>' + | |
| '</td></tr>'); | |
| $('#newsep').focus(); | |
| newSeparator = true; | |
| $("#btnnewsep").prop('type' ,'button'); | |
| // Watch escape and enter keys | |
| $('#newsep').keyup(function(e) { | |
| if (e.which == 27) { | |
| $('#btncncsep').trigger('click'); | |
| } | |
| }); | |
| $('#newsep').keypress(function(e) { | |
| if (e.which == 13) { | |
| $('#btnnewsep').trigger('click'); | |
| } | |
| }); | |
| handle_colors(); | |
| // Replace the temporary separator bar with the final version containing the | |
| // user's text and a delete icon | |
| $("#btnnewsep").click(function() { | |
| var septext = escapeHtml($('#newsep').val()); | |
| sepcols = $( "#ruletable tr th" ).length - 1; | |
| $(this).parents('tr').replaceWith('<tr class="ui-sortable-handle separator">' + | |
| '<td class="' + gColor + '" colspan="' + sepcols + '">' + '<span class="' + gColor + '">' + septext + '</span></td>' + | |
| '<td class="' + gColor + '"><a href="#"><i class="fa fa-trash sepdel"></i></a>' + | |
| '</td></tr>'); | |
| $('#order-store').removeAttr('disabled'); | |
| newSeparator = false; | |
| dirty = true; | |
| }); | |
| // Cancel button | |
| $('#btncncsep').click(function(e) { | |
| e.preventDefault(); | |
| $(this).parents('tr').remove(); | |
| newSeparator = false; | |
| }); | |
| }); | |
| // Delete a separator row | |
| $(function(){ | |
| $('table').on('click','tr a .sepdel',function(e){ | |
| e.preventDefault(); | |
| $(this).parents('tr').remove(); | |
| $('#order-store').removeAttr('disabled'); | |
| dirty = true; | |
| }); | |
| }); | |
| // Compose an input array containing the row #, color and text for each separator | |
| function save_separators() { | |
| var row = 0; | |
| var sepinput; | |
| var sepnum = 0; | |
| $('#ruletable > tbody > tr').each(function() { | |
| if ($(this).hasClass('separator')) { | |
| seprow = $(this).next('tr').attr("id"); | |
| if (seprow == undefined) { | |
| seprow = "fr" + row; | |
| } | |
| sepinput = '<input type="hidden" name="separator[' + sepnum + '][row]" value="' + seprow + '"></input>'; | |
| $('form').append(sepinput); | |
| sepinput = '<input type="hidden" name="separator[' + sepnum + '][text]" value="' + escapeHtml($(this).find('td').text()) + '"></input>'; | |
| $('form').append(sepinput); | |
| sepinput = '<input type="hidden" name="separator[' + sepnum + '][color]" value="' + $(this).find('td').prop('class') + '"></input>'; | |
| $('form').append(sepinput); | |
| sepinput = '<input type="hidden" name="separator[' + sepnum + '][if]" value="' + iface + '"></input>'; | |
| $('form').append(sepinput); | |
| sepnum++; | |
| } else { | |
| if ($(this).parent('tbody').hasClass('user-entries')) { | |
| row++; | |
| } | |
| } | |
| }); | |
| } | |
| function reindex_rules(section) { | |
| var row = 0; | |
| section.find('tr').each(function() { | |
| if (this.id) { | |
| $(this).attr("id", "fr" + row); | |
| $(this).attr("onclick", "fr_toggle(" + row + ")") | |
| $(this).find('input:checkbox:first').each(function() { | |
| $(this).attr("id", "frc" + row); | |
| $(this).attr("onclick", "fr_toggle(" + row + ")"); | |
| }); | |
| row++; | |
| } | |
| }); | |
| } | |
| function handle_colors() { | |
| $('[id^=sepclr]').prop("type", "button"); | |
| $('[id^=sepclr]').click(function () { | |
| var color = $(this).attr('value'); | |
| // Clear all the color classes | |
| $(this).parent('td').prop('class', ''); | |
| $(this).parent('td').prev('td').prop('class', ''); | |
| // Install our new color class | |
| $(this).parent('td').addClass(color); | |
| $(this).parent('td').prev('td').addClass(color); | |
| // Set the global color | |
| gColor = color; | |
| }); | |
| } | |
| //JS equivalent to PHP htmlspecialchars() | |
| function escapeHtml(text) { | |
| var map = { | |
| '&': '&', | |
| '<': '<', | |
| '>': '>', | |
| '"': '"', | |
| "'": ''' | |
| }; | |
| return text.replace(/[&<>"']/g, function(m) { return map[m]; }); | |
| } | |
| // -------------------------------------------------------------------------------------------- | |
| // Select every option in the specified multiselect | |
| function AllServers(id, selectAll) { | |
| for (i = 0; i < id.length; i++) { | |
| id.eq(i).prop('selected', selectAll); | |
| } | |
| } | |
| // Move all selected options from one multiselect to another | |
| function moveOptions(From, To) { | |
| var len = From.length; | |
| var option; | |
| if (len > 0) { | |
| for (i=0; i<len; i++) { | |
| if (From.eq(i).is(':selected')) { | |
| option = From.eq(i).val(); | |
| value = From.eq(i).text(); | |
| To.append(new Option(value, option)); | |
| From.eq(i).remove(); | |
| } | |
| } | |
| } | |
| } | |
| // ------------- Service start/stop/restart functions. | |
| // If a start/stop/restart button is clicked, parse the button name and make a POST via AJAX | |
| $('[id*=restartservice-], [id*=stopservice-], [id*=startservice-]').click(function(event) { | |
| var args = this.id.split('-'); | |
| var action, name, mode_zone, id; | |
| if (args[0] == "openvpn") { | |
| action = args[1]; | |
| name = args[0]; | |
| mode_zone = args[2]; | |
| id = args[3]; | |
| } else if (args[0] == "captiveportal") { | |
| action = args[1]; | |
| name = args[0]; | |
| mode_zone = args[2]; | |
| id = args[3]; | |
| } else { | |
| action = args[0]; | |
| args.shift(); | |
| name = args.join('-'); | |
| } | |
| $(this).children('i').removeClass().addClass('fa fa-cog fa-spin text-success'); | |
| this.blur(); | |
| ajaxRequest = $.ajax( | |
| { | |
| url: "/status_services.php", | |
| type: "post", | |
| data: { | |
| ajax: "ajax", | |
| mode: action, | |
| service: name, | |
| vpnmode: mode_zone, | |
| zone: mode_zone, | |
| id: id | |
| } | |
| } | |
| ); | |
| // Once the AJAX call has returned, refresh the page to show the new service | |
| ajaxRequest.done(function (response, textStatus, jqXHR) { | |
| location.reload(true); | |
| }); | |
| }); | |
| // The scripts that follow are an EXPERIMENT in using jQuery/Javascript to automatically convert | |
| // GET calls to POST calls | |
| // Any anchor with the attribute "usepost" usses these functions. | |
| // Any time an anchor is clicked and the "usepost" attibute is present, convert the href attribute | |
| // to POST format, make a POST form and submit it | |
| interceptGET(); | |
| function interceptGET() { | |
| $('a').click(function(e) { | |
| // Does the clicked anchor have the "usepost" attribute? | |
| var attr = $(this).attr('usepost'); | |
| if (typeof attr !== typeof undefined && attr !== false) { | |
| // Automatically apply a confirmation dialog to "Delete" icons | |
| if (!($(this).hasClass('no-confirm')) && !($(this).hasClass('icon-embed-btn')) && | |
| ($(this).hasClass('fa-trash'))) { | |
| var msg = $.trim(this.textContent).toLowerCase(); | |
| if (!msg) | |
| var msg = $.trim(this.value).toLowerCase(); | |
| var q = 'Are you sure you wish to '+ msg +'?'; | |
| if ($(this).attr('title') != undefined) | |
| q = 'Are you sure you wish to '+ $(this).attr('title').toLowerCase() + '?'; | |
| if (!confirm(q)) { | |
| return false; | |
| } | |
| } | |
| var target = $(this).attr("href").split("?"); | |
| postSubmit(get2post(target[1]),target[0]); | |
| return false; | |
| } | |
| }); | |
| } | |
| // Convert a GET argument list such as ?name=fred&action=delete into an object of POST | |
| // parameters such as {name : fred, action : delete} | |
| function get2post(getargs) { | |
| var argdict = {}; | |
| var argarray = getargs.split('&'); | |
| argarray.forEach(function(arg) { | |
| arg = arg.split('='); | |
| argdict[arg[0]] = arg[1]; | |
| }); | |
| return argdict; | |
| } | |
| // Create a form, add, the POST data and submit it | |
| function postSubmit(data, target) { | |
| var $form = $('<form>'); | |
| for (var name in data) { | |
| $form.append( | |
| $("<input>") | |
| .attr("type", "hidden") | |
| .attr("name", name) | |
| .val(data[name]) | |
| ); | |
| } | |
| $form | |
| .attr("method", "POST") | |
| .attr("action", target) | |
| // The CSRF magic is required because we will be viewing the results of the POST | |
| .append( | |
| $("<input>") | |
| .attr("type", "hidden") | |
| .attr("name", "__csrf_magic") | |
| .val(csrfMagicToken) | |
| ) | |
| .appendTo('body') | |
| .submit(); | |
| } |