custom.js 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. /* Wifi Hotspot app for YunoHost
  2. * Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
  3. * Contribute at https://github.com/labriqueinternet/hotspot_ynh
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU Affero General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU Affero General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Affero General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. function wifiSecureBtn() {
  19. if($(this).parent().hasClass('off')) {
  20. $(this).closest('.form-group').next().hide('slow');
  21. } else {
  22. $(this).closest('.form-group').next().show('slow');
  23. }
  24. }
  25. function tabsClick() {
  26. var ssid = $(this).closest('.ssid');
  27. var tab = $(this).parent().attr('data-tab');
  28. ssid.find('li.active').removeClass('active');
  29. $(this).parent().addClass('active');
  30. ssid.find('.tabs').hide();
  31. ssid.find('.tab' + tab).show();
  32. return false;
  33. }
  34. function deviceDropDownClick() {
  35. var menu = $(this).parent();
  36. var items = menu.children();
  37. var button = menu.prev();
  38. var input = button.prev();
  39. items.removeClass('active');
  40. $(this).addClass('active');
  41. button.text($(this).text());
  42. button.append(' <span class="caret"></span>');
  43. input.val($(this).text());
  44. updateNbSsidRemaining();
  45. }
  46. function updateNbSsidRemaining() {
  47. multissid = $('#devlist .active').data('multissid');
  48. current = $('.ssid').length;
  49. remaining = multissid - current;
  50. remaining = isNaN(remaining) ? 0 : remaining;
  51. $('.ssid').each(function(i) {
  52. if(i >= multissid) {
  53. $(this).removeClass('panel-default');
  54. $(this).addClass('panel-danger');
  55. } else {
  56. $(this).removeClass('panel-danger');
  57. $(this).addClass('panel-default');
  58. }
  59. });
  60. $('.ssid').find('.deletessid').hide();
  61. $('.ssid').last().find('.deletessid').show();
  62. $('.ssid').first().find('.deletessid').hide();
  63. if(remaining <= 0) {
  64. $('#newssid').attr('disabled', true);
  65. $('#newssid').removeClass('btn-success');
  66. $('#newssid').addClass('btn-danger');
  67. } else {
  68. $('#newssid').attr('disabled', false);
  69. $('#newssid').removeClass('btn-danger');
  70. $('#newssid').addClass('btn-success');
  71. }
  72. $('#newssid span').text(remaining);
  73. }
  74. function nice() {
  75. if($(this).val() == 'YoloCowboy') {
  76. $('#nice')[0].play();
  77. }
  78. }
  79. function deleteClick() {
  80. $(this).closest('.ssid').remove();
  81. updateNbSsidRemaining();
  82. }
  83. $(document).ready(function() {
  84. $('.btn-group').button();
  85. $('[data-toggle="tooltip"]').tooltip();
  86. $('.dropdown-menu li').click(deviceDropDownClick);
  87. $('.switch').bootstrapToggle();
  88. $('#save').click(function() {
  89. $(this).prop('disabled', true);
  90. $('#save-loading').show();
  91. $('#form').submit();
  92. });
  93. $('#saveconfirm').click(function() {
  94. $(this).hide();
  95. $('#saveconfirmation').show();
  96. });
  97. $('#status .close').click(function() {
  98. $(this).parent().hide();
  99. });
  100. $('#statusbtn').click(function() {
  101. if($('#status-loading').is(':hidden')) {
  102. $('#status').hide();
  103. $('#status-loading').show();
  104. $.ajax({
  105. url: '?/status',
  106. }).done(function(data) {
  107. $('#status-loading').hide();
  108. $('#status-text').html('<ul>' + data + '</ul>');
  109. $('#status').show('slow');
  110. });
  111. }
  112. });
  113. $('.wifiparty').click(function() {
  114. var screen = $('#wifiparty_screen');
  115. var passphrase = $(this).closest('.ssid').find('.wifiparty_passphrase').clone();
  116. screen.find('#wifiparty_ssid span').last().text($(this).closest('.ssid').find('input[type=text]').first().val());
  117. screen.find('.wifiparty_passphrase').remove();
  118. screen.append(passphrase);
  119. screen.find('.wifiparty_passphrase').show();
  120. screen.show('slow');
  121. });
  122. $('#wifiparty_zoomin_ssid').mousedown(function() {
  123. $('#wifiparty_ssid').css('fontSize', (parseInt($('#wifiparty_ssid').css('fontSize')) + 5) + "px");
  124. });
  125. $('#wifiparty_zoomout_ssid').mousedown(function() {
  126. $('#wifiparty_ssid').css('fontSize', (parseInt($('#wifiparty_ssid').css('fontSize')) - 5) + "px");
  127. });
  128. $('#wifiparty_zoomin_passphrase').mousedown(function() {
  129. $('#wifiparty_screen .wifiparty_passphrase').css('fontSize', (parseInt($('#wifiparty_screen .wifiparty_passphrase').css('fontSize')) + 7) + "px");
  130. });
  131. $('#wifiparty_zoomout_passphrase').mousedown(function() {
  132. $('#wifiparty_screen .wifiparty_passphrase').css('fontSize', (parseInt($('#wifiparty_screen .wifiparty_passphrase').css('fontSize')) - 7) + "px");
  133. });
  134. $('#wifiparty_close').click(function() {
  135. $('#wifiparty_screen').hide();
  136. });
  137. $('.wifi_secure').change(wifiSecureBtn);
  138. $('#service_enabled').change(function() {
  139. if($('#service_enabled').parent().hasClass('off')) {
  140. $('.enabled').hide('slow');
  141. } else {
  142. $('.enabled').show('slow');
  143. }
  144. });
  145. $('.nav-tabs a').click(tabsClick);
  146. $('.ssidin').blur(nice);
  147. $('#newssid').click(function() {
  148. var clone = $('#ssids').children().first().clone();
  149. var id = parseInt($('.ssid').length);
  150. clone.find('[name]').each(function() {
  151. $(this).attr('name', $(this).attr('name').replace('[0]', '[' + id + ']'));
  152. });
  153. clone.find('[data-toggle="tooltip"]').tooltip();
  154. clone.find('.deletessid').click(deleteClick);
  155. clone.find('.ssidin').blur(nice);
  156. clone.find('.wifiparty_passphrase').remove();
  157. clone.find('.wifiparty').attr('disabled', true);
  158. clone.find('input[type=text]').each(function() {
  159. if($(this).attr('name').match('dns')) {
  160. $(this).val($(this).attr('placeholder'));
  161. } else if($(this).attr('name').match('ip4_nat_prefix')) {
  162. var o1 = parseInt(Math.random() * (255 - 1) + 1);
  163. var o2 = parseInt(Math.random() * (255 - 1) + 1);
  164. $(this).val('10.' + o1 + '.' + o2);
  165. } else if($(this).attr('name').match('wifi_ssid')) {
  166. $(this).val('myNeutralNetwork' + (id + 1));
  167. } else {
  168. $(this).val('');
  169. }
  170. });
  171. clone.find('input[type=checkbox]').each(function() {
  172. $(this).parent().after($(this));
  173. $(this).prev().remove();
  174. $(this).attr('checked', false);
  175. });
  176. clone.find('.switch').bootstrapToggle();
  177. clone.find('.wifi_secure').change(wifiSecureBtn);
  178. clone.find('.nav-tabs a').click(tabsClick);
  179. clone.find('.wifi_passphrase').hide();
  180. clone.find('h3').each(function() {
  181. $(this).text($(this).data('label') + ' ' + (id + 1));
  182. });
  183. $('#ssids').append(clone);
  184. updateNbSsidRemaining();
  185. });
  186. $('.deletessid').click(deleteClick);
  187. updateNbSsidRemaining();
  188. });
  189. $(document).keydown(function(e) {
  190. if(e.keyCode == 27) {
  191. $('#wifiparty_close').click();
  192. }
  193. });