utils.html 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. <h3><i class="paperclip icon"></i> Utilities</h3>
  2. <p>You might find these tools helpful when setting up your gateway server</p>
  3. <div class="ui divider"></div>
  4. <div class="selfauthOnly">
  5. <h3><i class="ui user icon"></i> Account Management</h3>
  6. <p>Functions to help management the current account</p>
  7. <div class="ui basic segment">
  8. <h5><i class="chevron down icon"></i> Change Password</h5>
  9. <div class="ui form">
  10. <div class="field">
  11. <label>Current Password</label>
  12. <input type="password" name="oldPassword" placeholder="Current Password">
  13. </div>
  14. <div class="field">
  15. <label>New Password</label>
  16. <input type="password" name="newPassword" placeholder="New Password">
  17. </div>
  18. <div class="field">
  19. <label>Confirm New Password</label>
  20. <input type="password" name="confirmNewPassword" placeholder="Confirm New Password">
  21. </div>
  22. <button class="ui teal button" onclick="changePassword()"><i class="ui key icon"></i> Change Password</button>
  23. </div>
  24. <div id="passwordChangeSuccMsg" class="ui green message" style="display:none;">
  25. <i class="ui circle checkmark green icon "></i> Password Updated
  26. </div>
  27. </div>
  28. <div class="ui divider"></div>
  29. </div>
  30. <h3><i class="ui code icon"></i> IP Address Converter</h3>
  31. <div class="ui basic segment">
  32. <h5><i class="chevron down icon"></i> IP Range to CIDR Conversion</h5>
  33. <div class="ui message">
  34. <i class="info circle icon"></i> Note that the CIDR generated here covers additional IP address before or after the given range. If you need more details settings, please use CIDR with a smaller range and add additional IPs for detail range adjustment.
  35. </div>
  36. <div class="ui input">
  37. <input type="text" placeholder="Start IP" id="startIpInput">
  38. </div>
  39. <div class="ui input">
  40. <input type="text" placeholder="End IP" id="endIpInput">
  41. </div>
  42. <br>
  43. <button style="margin-top: 0.6em;" class="ui button" onclick="convertToCIDR()">Convert</button>
  44. <p>Results: <div id="cidrOutput">N/A</div></p>
  45. </div>
  46. <div class="ui basic segment">
  47. <h5><i class="chevron down icon"></i> CIDR to IP Range Conversion</h5>
  48. <div class="ui action input">
  49. <input type="text" placeholder="CIDR" id="cidrInput">
  50. <button class="ui button" onclick="convertToIPRange()">Convert</button>
  51. </div>
  52. <p>Results: <div id="ipRangeOutput">N/A</div></p>
  53. </div>
  54. <script>
  55. /*
  56. Account Password utilities
  57. */
  58. $.get("/api/auth/userCount", function(data){
  59. if (data == 0){
  60. //Using external auth manager. Hide options
  61. $(".selfauthOnly").hide();
  62. }
  63. })
  64. function changePassword() {
  65. const oldPassword = document.getElementsByName('oldPassword')[0].value;
  66. const newPassword = document.getElementsByName('newPassword')[0].value;
  67. const confirmNewPassword = document.getElementsByName('confirmNewPassword')[0].value;
  68. $.ajax({
  69. type: "POST",
  70. url: "/api/auth/changePassword",
  71. data: {
  72. oldPassword: oldPassword,
  73. newPassword: newPassword,
  74. confirmPassword: confirmNewPassword,
  75. },
  76. success: function (data) {
  77. if (data.error != undefined){
  78. alert(data.error);
  79. }else{
  80. $("#passwordChangeSuccMsg").stop().finish().slideDown("fast").delay(3000).slideUp("fast");
  81. $('[name="oldPassword"]').val('');
  82. $('[name="newPassword"]').val('');
  83. $('[name="confirmNewPassword"]').val('');
  84. }
  85. },
  86. error: function (xhr, status, error) {
  87. alert("Error changing password: " + error);
  88. },
  89. });
  90. }
  91. /*
  92. IP Address Utilities
  93. */
  94. //events handler
  95. function convertToCIDR() {
  96. const startIp = document.getElementById('startIpInput').value.trim();
  97. const endIp = document.getElementById('endIpInput').value.trim();
  98. const cidrOutput = document.getElementById('cidrOutput');
  99. const cidr = ipRangeToCIDR(startIp, endIp);
  100. const ipRange = cidrToRange(cidr);
  101. cidrOutput.innerHTML = `CIDR: ${cidr} <br> (Cover range: ${ipRange[0]} to ${ipRange[1]})`;
  102. }
  103. // CIDR to IP Range Conversion
  104. function convertToIPRange() {
  105. const cidr = document.getElementById('cidrInput').value.trim();
  106. const ipRangeOutput = document.getElementById('ipRangeOutput');
  107. const ipRange = cidrToRange(cidr);
  108. ipRangeOutput.innerHTML = `Start IP: ${ipRange[0]}<br>End IP: ${ipRange[1]}`;
  109. }
  110. //Ip conversion function
  111. function cidrToRange(cidr) {
  112. var range = [2];
  113. cidr = cidr.split('/');
  114. var cidr_1 = parseInt(cidr[1])
  115. range[0] = long2ip((ip2long(cidr[0])) & ((-1 << (32 - cidr_1))));
  116. start = ip2long(range[0])
  117. range[1] = long2ip( start + Math.pow(2, (32 - cidr_1)) - 1);
  118. return range;
  119. }
  120. function ipRangeToCIDR(ipStart, ipEnd) {
  121. var start = ip2long(ipStart);
  122. var end = ip2long(ipEnd);
  123. var cidr = 32;
  124. while (start != end) {
  125. start >>= 1;
  126. end >>= 1;
  127. cidr--;
  128. }
  129. return ipStart + '/' + cidr;
  130. }
  131. function ip2long (argIP) {
  132. // discuss at: https://locutus.io/php/ip2long/
  133. // original by: Waldo Malqui Silva (https://waldo.malqui.info)
  134. // improved by: Victor
  135. // revised by: fearphage (https://my.opera.com/fearphage/)
  136. // revised by: Theriault (https://github.com/Theriault)
  137. // estarget: es2015
  138. // example 1: ip2long('192.0.34.166')
  139. // returns 1: 3221234342
  140. // example 2: ip2long('0.0xABCDEF')
  141. // returns 2: 11259375
  142. // example 3: ip2long('255.255.255.256')
  143. // returns 3: false
  144. let i = 0
  145. // PHP allows decimal, octal, and hexadecimal IP components.
  146. // PHP allows between 1 (e.g. 127) to 4 (e.g 127.0.0.1) components.
  147. const pattern = new RegExp([
  148. '^([1-9]\\d*|0[0-7]*|0x[\\da-f]+)',
  149. '(?:\\.([1-9]\\d*|0[0-7]*|0x[\\da-f]+))?',
  150. '(?:\\.([1-9]\\d*|0[0-7]*|0x[\\da-f]+))?',
  151. '(?:\\.([1-9]\\d*|0[0-7]*|0x[\\da-f]+))?$'
  152. ].join(''), 'i')
  153. argIP = argIP.match(pattern) // Verify argIP format.
  154. if (!argIP) {
  155. // Invalid format.
  156. return false
  157. }
  158. // Reuse argIP variable for component counter.
  159. argIP[0] = 0
  160. for (i = 1; i < 5; i += 1) {
  161. argIP[0] += !!((argIP[i] || '').length)
  162. argIP[i] = parseInt(argIP[i]) || 0
  163. }
  164. // Continue to use argIP for overflow values.
  165. // PHP does not allow any component to overflow.
  166. argIP.push(256, 256, 256, 256)
  167. // Recalculate overflow of last component supplied to make up for missing components.
  168. argIP[4 + argIP[0]] *= Math.pow(256, 4 - argIP[0])
  169. if (argIP[1] >= argIP[5] ||
  170. argIP[2] >= argIP[6] ||
  171. argIP[3] >= argIP[7] ||
  172. argIP[4] >= argIP[8]) {
  173. return false
  174. }
  175. return argIP[1] * (argIP[0] === 1 || 16777216) +
  176. argIP[2] * (argIP[0] <= 2 || 65536) +
  177. argIP[3] * (argIP[0] <= 3 || 256) +
  178. argIP[4] * 1
  179. }
  180. function long2ip (ip) {
  181. // discuss at: https://locutus.io/php/long2ip/
  182. // original by: Waldo Malqui Silva (https://fayr.us/waldo/)
  183. // example 1: long2ip( 3221234342 )
  184. // returns 1: '192.0.34.166'
  185. if (!isFinite(ip)) {
  186. return false
  187. }
  188. return [ip >>> 24 & 0xFF, ip >>> 16 & 0xFF, ip >>> 8 & 0xFF, ip & 0xFF].join('.')
  189. }
  190. </script>