common.js 5.2 KB

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