common.js 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. const ONE_KB = 1024;
  2. const ONE_MB = ONE_KB * 1024;
  3. const ONE_GB = ONE_MB * 1024;
  4. const ONE_TB = ONE_GB * 1024;
  5. const ONE_PB = ONE_TB * 1024;
  6. function sizeFormat(size) {
  7. if (size <= 0) return "0 B";
  8. if (size < ONE_KB) {
  9. return size.toFixed(0) + " B";
  10. } else if (size < ONE_MB) {
  11. return (size / ONE_KB).toFixed(2) + " KB";
  12. } else if (size < ONE_GB) {
  13. return (size / ONE_MB).toFixed(2) + " MB";
  14. } else if (size < ONE_TB) {
  15. return (size / ONE_GB).toFixed(2) + " GB";
  16. } else if (size < ONE_PB) {
  17. return (size / ONE_TB).toFixed(2) + " TB";
  18. } else {
  19. return (size / ONE_PB).toFixed(2) + " PB";
  20. }
  21. }
  22. function cpuSpeedFormat(speed) {
  23. if (speed > 1000) {
  24. const GHz = speed / 1000;
  25. return GHz.toFixed(2) + " GHz";
  26. } else {
  27. return speed.toFixed(2) + " MHz";
  28. }
  29. }
  30. function cpuCoreFormat(cores) {
  31. if (cores === 1) {
  32. return "1 Core";
  33. } else {
  34. return cores + " Cores";
  35. }
  36. }
  37. function base64(str) {
  38. return Base64.encode(str);
  39. }
  40. function safeBase64(str) {
  41. return base64(str)
  42. .replace(/\+/g, '-')
  43. .replace(/=/g, '')
  44. .replace(/\//g, '_');
  45. }
  46. function formatSecond(second) {
  47. if (second < 60) {
  48. return second.toFixed(0) + 's';
  49. } else if (second < 3600) {
  50. return (second / 60).toFixed(0) + 'm';
  51. } else if (second < 3600 * 24) {
  52. return (second / 3600).toFixed(0) + 'h';
  53. } else {
  54. day = Math.floor(second / 3600 / 24);
  55. remain = ((second / 3600) - (day * 24)).toFixed(0);
  56. return day + 'd' + (remain > 0 ? ' ' + remain + 'h' : '');
  57. }
  58. }
  59. function copyToClipboard(text) {
  60. // !! here old way of copying is used because not everyone can afford https connection
  61. return new Promise((resolve) => {
  62. const textarea = document.createElement("textarea");
  63. textarea.value = text;
  64. document.body.appendChild(textarea);
  65. textarea.select();
  66. document.execCommand("copy");
  67. document.body.removeChild(textarea);
  68. resolve(text)
  69. })
  70. }
  71. function addZero(num) {
  72. if (num < 10) {
  73. return "0" + num;
  74. } else {
  75. return num;
  76. }
  77. }
  78. function toFixed(num, n) {
  79. n = Math.pow(10, n);
  80. return Math.floor(num * n) / n;
  81. }
  82. function debounce(fn, delay) {
  83. var timeoutID = null;
  84. return function () {
  85. clearTimeout(timeoutID);
  86. var args = arguments;
  87. var that = this;
  88. timeoutID = setTimeout(function () {
  89. fn.apply(that, args);
  90. }, delay);
  91. };
  92. }
  93. function getCookie(cname) {
  94. let name = cname + '=';
  95. let ca = document.cookie.split(';');
  96. for (let i = 0; i < ca.length; i++) {
  97. let c = ca[i];
  98. while (c.charAt(0) == ' ') {
  99. c = c.substring(1);
  100. }
  101. if (c.indexOf(name) == 0) {
  102. // decode cookie value only
  103. return decodeURIComponent(c.substring(name.length, c.length));
  104. }
  105. }
  106. return '';
  107. }
  108. function setCookie(cname, cvalue, exdays) {
  109. const d = new Date();
  110. d.setTime(d.getTime() + exdays * 24 * 60 * 60 * 1000);
  111. let expires = 'expires=' + d.toUTCString();
  112. // encode cookie value
  113. document.cookie = cname + '=' + encodeURIComponent(cvalue) + ';' + expires + ';path=/';
  114. }
  115. function usageColor(data, threshold, total) {
  116. switch (true) {
  117. case data === null:
  118. return "purple";
  119. case total < 0:
  120. return "green";
  121. case total == 0:
  122. return "purple";
  123. case data < total - threshold:
  124. return "green";
  125. case data < total:
  126. return "orange";
  127. default:
  128. return "red";
  129. }
  130. }
  131. function clientUsageColor(clientStats, trafficDiff) {
  132. switch (true) {
  133. case !clientStats || clientStats.total == 0:
  134. return "#7a316f"; // purple
  135. case clientStats.up + clientStats.down < clientStats.total - trafficDiff:
  136. return "#008771"; // Green
  137. case clientStats.up + clientStats.down < clientStats.total:
  138. return "#f37b24"; // Orange
  139. default:
  140. return "#cf3c3c"; // Red
  141. }
  142. }
  143. function userExpiryColor(threshold, client, isDark = false) {
  144. if (!client.enable) {
  145. return isDark ? '#2c3950' : '#bcbcbc';
  146. }
  147. now = new Date().getTime(),
  148. expiry = client.expiryTime;
  149. switch (true) {
  150. case expiry === null:
  151. return "#7a316f"; // purple
  152. case expiry < 0:
  153. return "#008771"; // Green
  154. case expiry == 0:
  155. return "#7a316f"; // purple
  156. case now < expiry - threshold:
  157. return "#008771"; // Green
  158. case now < expiry:
  159. return "#f37b24"; // Orange
  160. default:
  161. return "#cf3c3c"; // Red
  162. }
  163. }
  164. function doAllItemsExist(array1, array2) {
  165. for (let i = 0; i < array1.length; i++) {
  166. if (!array2.includes(array1[i])) {
  167. return false;
  168. }
  169. }
  170. return true;
  171. }
  172. function buildURL({ host, port, isTLS, base, path }) {
  173. if (!host || host.length === 0) host = window.location.hostname;
  174. if (!port || port.length === 0) port = window.location.port;
  175. if (isTLS === undefined) isTLS = window.location.protocol === "https:";
  176. const protocol = isTLS ? "https:" : "http:";
  177. port = String(port);
  178. if (port === "" || (isTLS && port === "443") || (!isTLS && port === "80")) {
  179. port = "";
  180. } else {
  181. port = `:${port}`;
  182. }
  183. return `${protocol}//${host}${port}${base}${path}`;
  184. }