index.js 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774
  1. class Msg {
  2. constructor(success = false, msg = "", obj = null) {
  3. this.success = success;
  4. this.msg = msg;
  5. this.obj = obj;
  6. }
  7. }
  8. class HttpUtil {
  9. static _handleMsg(msg) {
  10. if (!(msg instanceof Msg) || msg.msg === "") {
  11. return;
  12. }
  13. const messageType = msg.success ? 'success' : 'error';
  14. Vue.prototype.$message[messageType](msg.msg);
  15. }
  16. static _respToMsg(resp) {
  17. if (!resp || !resp.data) {
  18. return new Msg(false, 'No response data');
  19. }
  20. const { data } = resp;
  21. if (data == null) {
  22. return new Msg(true);
  23. }
  24. if (typeof data === 'object' && 'success' in data) {
  25. return new Msg(data.success, data.msg, data.obj);
  26. }
  27. return typeof data === 'object' ? data : new Msg(false, 'unknown data:', data);
  28. }
  29. static async get(url, params, options = {}) {
  30. try {
  31. const resp = await axios.get(url, { params, ...options });
  32. const msg = this._respToMsg(resp);
  33. this._handleMsg(msg);
  34. return msg;
  35. } catch (error) {
  36. console.error('GET request failed:', error);
  37. const errorMsg = new Msg(false, error.response?.data?.message || error.message || 'Request failed');
  38. this._handleMsg(errorMsg);
  39. return errorMsg;
  40. }
  41. }
  42. static async post(url, data, options = {}) {
  43. try {
  44. const resp = await axios.post(url, data, options);
  45. const msg = this._respToMsg(resp);
  46. this._handleMsg(msg);
  47. return msg;
  48. } catch (error) {
  49. console.error('POST request failed:', error);
  50. const errorMsg = new Msg(false, error.response?.data?.message || error.message || 'Request failed');
  51. this._handleMsg(errorMsg);
  52. return errorMsg;
  53. }
  54. }
  55. static async postWithModal(url, data, modal) {
  56. if (modal) {
  57. modal.loading(true);
  58. }
  59. const msg = await this.post(url, data);
  60. if (modal) {
  61. modal.loading(false);
  62. if (msg instanceof Msg && msg.success) {
  63. modal.close();
  64. }
  65. }
  66. return msg;
  67. }
  68. }
  69. class PromiseUtil {
  70. static async sleep(timeout) {
  71. await new Promise(resolve => {
  72. setTimeout(resolve, timeout)
  73. });
  74. }
  75. }
  76. const seq = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'.split('');
  77. class RandomUtil {
  78. static randomIntRange(min, max) {
  79. return Math.floor(Math.random() * (max - min) + min);
  80. }
  81. static randomInt(n) {
  82. return this.randomIntRange(0, n);
  83. }
  84. static randomSeq(count) {
  85. let str = '';
  86. for (let i = 0; i < count; ++i) {
  87. str += seq[this.randomInt(62)];
  88. }
  89. return str;
  90. }
  91. static randomShortIds() {
  92. const lengths = [2, 4, 6, 8, 10, 12, 14, 16];
  93. for (let i = lengths.length - 1; i > 0; i--) {
  94. const j = Math.floor(Math.random() * (i + 1));
  95. [lengths[i], lengths[j]] = [lengths[j], lengths[i]];
  96. }
  97. let shortIds = [];
  98. for (let length of lengths) {
  99. let shortId = '';
  100. for (let i = 0; i < length; i++) {
  101. shortId += seq[this.randomInt(16)];
  102. }
  103. shortIds.push(shortId);
  104. }
  105. return shortIds.join(',');
  106. }
  107. static randomLowerAndNum(len) {
  108. let str = '';
  109. for (let i = 0; i < len; ++i) {
  110. str += seq[this.randomInt(36)];
  111. }
  112. return str;
  113. }
  114. static randomUUID() {
  115. return window.crypto.randomUUID()
  116. }
  117. static randomShadowsocksPassword() {
  118. let array = new Uint8Array(32);
  119. window.crypto.getRandomValues(array);
  120. return Base64.encode(String.fromCharCode.apply(null, array));
  121. }
  122. }
  123. class ObjectUtil {
  124. static getPropIgnoreCase(obj, prop) {
  125. for (const name in obj) {
  126. if (!obj.hasOwnProperty(name)) {
  127. continue;
  128. }
  129. if (name.toLowerCase() === prop.toLowerCase()) {
  130. return obj[name];
  131. }
  132. }
  133. return undefined;
  134. }
  135. static deepSearch(obj, key) {
  136. if (obj instanceof Array) {
  137. for (let i = 0; i < obj.length; ++i) {
  138. if (this.deepSearch(obj[i], key)) {
  139. return true;
  140. }
  141. }
  142. } else if (obj instanceof Object) {
  143. for (let name in obj) {
  144. if (!obj.hasOwnProperty(name)) {
  145. continue;
  146. }
  147. if (this.deepSearch(obj[name], key)) {
  148. return true;
  149. }
  150. }
  151. } else {
  152. return this.isEmpty(obj) ? false : obj.toString().toLowerCase().indexOf(key.toLowerCase()) >= 0;
  153. }
  154. return false;
  155. }
  156. static isEmpty(obj) {
  157. return obj === null || obj === undefined || obj === '';
  158. }
  159. static isArrEmpty(arr) {
  160. return !this.isEmpty(arr) && arr.length === 0;
  161. }
  162. static copyArr(dest, src) {
  163. dest.splice(0);
  164. for (const item of src) {
  165. dest.push(item);
  166. }
  167. }
  168. static clone(obj) {
  169. let newObj;
  170. if (obj instanceof Array) {
  171. newObj = [];
  172. this.copyArr(newObj, obj);
  173. } else if (obj instanceof Object) {
  174. newObj = {};
  175. for (const key of Object.keys(obj)) {
  176. newObj[key] = obj[key];
  177. }
  178. } else {
  179. newObj = obj;
  180. }
  181. return newObj;
  182. }
  183. static deepClone(obj) {
  184. let newObj;
  185. if (obj instanceof Array) {
  186. newObj = [];
  187. for (const item of obj) {
  188. newObj.push(this.deepClone(item));
  189. }
  190. } else if (obj instanceof Object) {
  191. newObj = {};
  192. for (const key of Object.keys(obj)) {
  193. newObj[key] = this.deepClone(obj[key]);
  194. }
  195. } else {
  196. newObj = obj;
  197. }
  198. return newObj;
  199. }
  200. static cloneProps(dest, src, ...ignoreProps) {
  201. if (dest == null || src == null) {
  202. return;
  203. }
  204. const ignoreEmpty = this.isArrEmpty(ignoreProps);
  205. for (const key of Object.keys(src)) {
  206. if (!src.hasOwnProperty(key)) {
  207. continue;
  208. } else if (!dest.hasOwnProperty(key)) {
  209. continue;
  210. } else if (src[key] === undefined) {
  211. continue;
  212. }
  213. if (ignoreEmpty) {
  214. dest[key] = src[key];
  215. } else {
  216. let ignore = false;
  217. for (let i = 0; i < ignoreProps.length; ++i) {
  218. if (key === ignoreProps[i]) {
  219. ignore = true;
  220. break;
  221. }
  222. }
  223. if (!ignore) {
  224. dest[key] = src[key];
  225. }
  226. }
  227. }
  228. }
  229. static delProps(obj, ...props) {
  230. for (const prop of props) {
  231. if (prop in obj) {
  232. delete obj[prop];
  233. }
  234. }
  235. }
  236. static execute(func, ...args) {
  237. if (!this.isEmpty(func) && typeof func === 'function') {
  238. func(...args);
  239. }
  240. }
  241. static orDefault(obj, defaultValue) {
  242. if (obj == null) {
  243. return defaultValue;
  244. }
  245. return obj;
  246. }
  247. static equals(a, b) {
  248. for (const key in a) {
  249. if (!a.hasOwnProperty(key)) {
  250. continue;
  251. }
  252. if (!b.hasOwnProperty(key)) {
  253. return false;
  254. } else if (a[key] !== b[key]) {
  255. return false;
  256. }
  257. }
  258. return true;
  259. }
  260. }
  261. class Wireguard {
  262. static gf(init) {
  263. var r = new Float64Array(16);
  264. if (init) {
  265. for (var i = 0; i < init.length; ++i)
  266. r[i] = init[i];
  267. }
  268. return r;
  269. }
  270. static pack(o, n) {
  271. var b, m = this.gf(), t = this.gf();
  272. for (var i = 0; i < 16; ++i)
  273. t[i] = n[i];
  274. this.carry(t);
  275. this.carry(t);
  276. this.carry(t);
  277. for (var j = 0; j < 2; ++j) {
  278. m[0] = t[0] - 0xffed;
  279. for (var i = 1; i < 15; ++i) {
  280. m[i] = t[i] - 0xffff - ((m[i - 1] >> 16) & 1);
  281. m[i - 1] &= 0xffff;
  282. }
  283. m[15] = t[15] - 0x7fff - ((m[14] >> 16) & 1);
  284. b = (m[15] >> 16) & 1;
  285. m[14] &= 0xffff;
  286. this.cswap(t, m, 1 - b);
  287. }
  288. for (var i = 0; i < 16; ++i) {
  289. o[2 * i] = t[i] & 0xff;
  290. o[2 * i + 1] = t[i] >> 8;
  291. }
  292. }
  293. static carry(o) {
  294. var c;
  295. for (var i = 0; i < 16; ++i) {
  296. o[(i + 1) % 16] += (i < 15 ? 1 : 38) * Math.floor(o[i] / 65536);
  297. o[i] &= 0xffff;
  298. }
  299. }
  300. static cswap(p, q, b) {
  301. var t, c = ~(b - 1);
  302. for (var i = 0; i < 16; ++i) {
  303. t = c & (p[i] ^ q[i]);
  304. p[i] ^= t;
  305. q[i] ^= t;
  306. }
  307. }
  308. static add(o, a, b) {
  309. for (var i = 0; i < 16; ++i)
  310. o[i] = (a[i] + b[i]) | 0;
  311. }
  312. static subtract(o, a, b) {
  313. for (var i = 0; i < 16; ++i)
  314. o[i] = (a[i] - b[i]) | 0;
  315. }
  316. static multmod(o, a, b) {
  317. var t = new Float64Array(31);
  318. for (var i = 0; i < 16; ++i) {
  319. for (var j = 0; j < 16; ++j)
  320. t[i + j] += a[i] * b[j];
  321. }
  322. for (var i = 0; i < 15; ++i)
  323. t[i] += 38 * t[i + 16];
  324. for (var i = 0; i < 16; ++i)
  325. o[i] = t[i];
  326. this.carry(o);
  327. this.carry(o);
  328. }
  329. static invert(o, i) {
  330. var c = this.gf();
  331. for (var a = 0; a < 16; ++a)
  332. c[a] = i[a];
  333. for (var a = 253; a >= 0; --a) {
  334. this.multmod(c, c, c);
  335. if (a !== 2 && a !== 4)
  336. this.multmod(c, c, i);
  337. }
  338. for (var a = 0; a < 16; ++a)
  339. o[a] = c[a];
  340. }
  341. static clamp(z) {
  342. z[31] = (z[31] & 127) | 64;
  343. z[0] &= 248;
  344. }
  345. static generatePublicKey(privateKey) {
  346. var r, z = new Uint8Array(32);
  347. var a = this.gf([1]),
  348. b = this.gf([9]),
  349. c = this.gf(),
  350. d = this.gf([1]),
  351. e = this.gf(),
  352. f = this.gf(),
  353. _121665 = this.gf([0xdb41, 1]),
  354. _9 = this.gf([9]);
  355. for (var i = 0; i < 32; ++i)
  356. z[i] = privateKey[i];
  357. this.clamp(z);
  358. for (var i = 254; i >= 0; --i) {
  359. r = (z[i >>> 3] >>> (i & 7)) & 1;
  360. this.cswap(a, b, r);
  361. this.cswap(c, d, r);
  362. this.add(e, a, c);
  363. this.subtract(a, a, c);
  364. this.add(c, b, d);
  365. this.subtract(b, b, d);
  366. this.multmod(d, e, e);
  367. this.multmod(f, a, a);
  368. this.multmod(a, c, a);
  369. this.multmod(c, b, e);
  370. this.add(e, a, c);
  371. this.subtract(a, a, c);
  372. this.multmod(b, a, a);
  373. this.subtract(c, d, f);
  374. this.multmod(a, c, _121665);
  375. this.add(a, a, d);
  376. this.multmod(c, c, a);
  377. this.multmod(a, d, f);
  378. this.multmod(d, b, _9);
  379. this.multmod(b, e, e);
  380. this.cswap(a, b, r);
  381. this.cswap(c, d, r);
  382. }
  383. this.invert(c, c);
  384. this.multmod(a, a, c);
  385. this.pack(z, a);
  386. return z;
  387. }
  388. static generatePresharedKey() {
  389. var privateKey = new Uint8Array(32);
  390. window.crypto.getRandomValues(privateKey);
  391. return privateKey;
  392. }
  393. static generatePrivateKey() {
  394. var privateKey = this.generatePresharedKey();
  395. this.clamp(privateKey);
  396. return privateKey;
  397. }
  398. static encodeBase64(dest, src) {
  399. var input = Uint8Array.from([(src[0] >> 2) & 63, ((src[0] << 4) | (src[1] >> 4)) & 63, ((src[1] << 2) | (src[2] >> 6)) & 63, src[2] & 63]);
  400. for (var i = 0; i < 4; ++i)
  401. dest[i] = input[i] + 65 +
  402. (((25 - input[i]) >> 8) & 6) -
  403. (((51 - input[i]) >> 8) & 75) -
  404. (((61 - input[i]) >> 8) & 15) +
  405. (((62 - input[i]) >> 8) & 3);
  406. }
  407. static keyToBase64(key) {
  408. var i, base64 = new Uint8Array(44);
  409. for (i = 0; i < 32 / 3; ++i)
  410. this.encodeBase64(base64.subarray(i * 4), key.subarray(i * 3));
  411. this.encodeBase64(base64.subarray(i * 4), Uint8Array.from([key[i * 3 + 0], key[i * 3 + 1], 0]));
  412. base64[43] = 61;
  413. return String.fromCharCode.apply(null, base64);
  414. }
  415. static keyFromBase64(encoded) {
  416. const binaryStr = atob(encoded);
  417. const bytes = new Uint8Array(binaryStr.length);
  418. for (let i = 0; i < binaryStr.length; i++) {
  419. bytes[i] = binaryStr.charCodeAt(i);
  420. }
  421. return bytes;
  422. }
  423. static generateKeypair(secretKey = '') {
  424. var privateKey = secretKey.length > 0 ? this.keyFromBase64(secretKey) : this.generatePrivateKey();
  425. var publicKey = this.generatePublicKey(privateKey);
  426. return {
  427. publicKey: this.keyToBase64(publicKey),
  428. privateKey: secretKey.length > 0 ? secretKey : this.keyToBase64(privateKey)
  429. };
  430. }
  431. }
  432. class ClipboardManager {
  433. static copyText(content = "") {
  434. // !! here old way of copying is used because not everyone can afford https connection
  435. return new Promise((resolve) => {
  436. try {
  437. const textarea = window.document.createElement('textarea');
  438. textarea.style.fontSize = '12pt';
  439. textarea.style.border = '0';
  440. textarea.style.padding = '0';
  441. textarea.style.margin = '0';
  442. textarea.style.position = 'absolute';
  443. textarea.style.left = '-9999px';
  444. textarea.style.top = `${window.pageYOffset || document.documentElement.scrollTop}px`;
  445. textarea.setAttribute('readonly', '');
  446. textarea.value = content;
  447. window.document.body.appendChild(textarea);
  448. textarea.select();
  449. window.document.execCommand("copy");
  450. window.document.body.removeChild(textarea);
  451. resolve(true)
  452. } catch {
  453. resolve(false)
  454. }
  455. })
  456. }
  457. }
  458. class Base64 {
  459. static encode(content = "", safe = false) {
  460. if (safe) {
  461. return Base64.encode(content)
  462. .replace(/\+/g, '-')
  463. .replace(/=/g, '')
  464. .replace(/\//g, '_')
  465. }
  466. return window.btoa(
  467. String.fromCharCode(...new TextEncoder().encode(content))
  468. )
  469. }
  470. static decode(content = "") {
  471. return new TextDecoder()
  472. .decode(
  473. Uint8Array.from(window.atob(content), c => c.charCodeAt(0))
  474. )
  475. }
  476. }
  477. class SizeFormatter {
  478. static ONE_KB = 1024;
  479. static ONE_MB = this.ONE_KB * 1024;
  480. static ONE_GB = this.ONE_MB * 1024;
  481. static ONE_TB = this.ONE_GB * 1024;
  482. static ONE_PB = this.ONE_TB * 1024;
  483. static sizeFormat(size) {
  484. if (size <= 0) return "0 B";
  485. if (size < this.ONE_KB) return size.toFixed(0) + " B";
  486. if (size < this.ONE_MB) return (size / this.ONE_KB).toFixed(2) + " KB";
  487. if (size < this.ONE_GB) return (size / this.ONE_MB).toFixed(2) + " MB";
  488. if (size < this.ONE_TB) return (size / this.ONE_GB).toFixed(2) + " GB";
  489. if (size < this.ONE_PB) return (size / this.ONE_TB).toFixed(2) + " TB";
  490. return (size / this.ONE_PB).toFixed(2) + " PB";
  491. }
  492. }
  493. class CPUFormatter {
  494. static cpuSpeedFormat(speed) {
  495. return speed > 1000 ? (speed / 1000).toFixed(2) + " GHz" : speed.toFixed(2) + " MHz";
  496. }
  497. static cpuCoreFormat(cores) {
  498. return cores === 1 ? "1 Core" : cores + " Cores";
  499. }
  500. }
  501. class TimeFormatter {
  502. static formatSecond(second) {
  503. if (second < 60) return second.toFixed(0) + 's';
  504. if (second < 3600) return (second / 60).toFixed(0) + 'm';
  505. if (second < 3600 * 24) return (second / 3600).toFixed(0) + 'h';
  506. let day = Math.floor(second / 3600 / 24);
  507. let remain = ((second / 3600) - (day * 24)).toFixed(0);
  508. return day + 'd' + (remain > 0 ? ' ' + remain + 'h' : '');
  509. }
  510. }
  511. class NumberFormatter {
  512. static addZero(num) {
  513. return num < 10 ? "0" + num : num;
  514. }
  515. static toFixed(num, n) {
  516. n = Math.pow(10, n);
  517. return Math.floor(num * n) / n;
  518. }
  519. }
  520. class Utils {
  521. static debounce(fn, delay) {
  522. let timeoutID = null;
  523. return function () {
  524. clearTimeout(timeoutID);
  525. let args = arguments;
  526. let that = this;
  527. timeoutID = setTimeout(() => fn.apply(that, args), delay);
  528. };
  529. }
  530. }
  531. class CookieManager {
  532. static getCookie(cname) {
  533. let name = cname + '=';
  534. let ca = document.cookie.split(';');
  535. for (let c of ca) {
  536. c = c.trim();
  537. if (c.indexOf(name) === 0) {
  538. return decodeURIComponent(c.substring(name.length, c.length));
  539. }
  540. }
  541. return '';
  542. }
  543. static setCookie(cname, cvalue, exdays) {
  544. const d = new Date();
  545. d.setTime(d.getTime() + exdays * 24 * 60 * 60 * 1000);
  546. let expires = 'expires=' + d.toUTCString();
  547. document.cookie = cname + '=' + encodeURIComponent(cvalue) + ';' + expires + ';path=/';
  548. }
  549. }
  550. class ColorUtils {
  551. static usageColor(data, threshold, total) {
  552. switch (true) {
  553. case data === null: return "purple";
  554. case total < 0: return "green";
  555. case total == 0: return "purple";
  556. case data < total - threshold: return "green";
  557. case data < total: return "orange";
  558. default: return "red";
  559. }
  560. }
  561. static clientUsageColor(clientStats, trafficDiff) {
  562. switch (true) {
  563. case !clientStats || clientStats.total == 0: return "#7a316f";
  564. case clientStats.up + clientStats.down < clientStats.total - trafficDiff: return "#008771";
  565. case clientStats.up + clientStats.down < clientStats.total: return "#f37b24";
  566. default: return "#cf3c3c";
  567. }
  568. }
  569. static userExpiryColor(threshold, client, isDark = false) {
  570. if (!client.enable) return isDark ? '#2c3950' : '#bcbcbc';
  571. let now = new Date().getTime(), expiry = client.expiryTime;
  572. switch (true) {
  573. case expiry === null: return "#7a316f";
  574. case expiry < 0: return "#008771";
  575. case expiry == 0: return "#7a316f";
  576. case now < expiry - threshold: return "#008771";
  577. case now < expiry: return "#f37b24";
  578. default: return "#cf3c3c";
  579. }
  580. }
  581. }
  582. class ArrayUtils {
  583. static doAllItemsExist(array1, array2) {
  584. return array1.every(item => array2.includes(item));
  585. }
  586. }
  587. class URLBuilder {
  588. static buildURL({ host, port, isTLS, base, path }) {
  589. if (!host || host.length === 0) host = window.location.hostname;
  590. if (!port || port.length === 0) port = window.location.port;
  591. if (isTLS === undefined) isTLS = window.location.protocol === "https:";
  592. const protocol = isTLS ? "https:" : "http:";
  593. port = String(port);
  594. if (port === "" || (isTLS && port === "443") || (!isTLS && port === "80")) {
  595. port = "";
  596. } else {
  597. port = `:${port}`;
  598. }
  599. return `${protocol}//${host}${port}${base}${path}`;
  600. }
  601. }
  602. class LanguageManager {
  603. static supportedLanguages = [
  604. {
  605. name: "English",
  606. value: "en-US",
  607. icon: "🇺🇸",
  608. },
  609. {
  610. name: "فارسی",
  611. value: "fa-IR",
  612. icon: "🇮🇷",
  613. },
  614. {
  615. name: "简体中文",
  616. value: "zh-CN",
  617. icon: "🇨🇳",
  618. },
  619. {
  620. name: "繁體中文",
  621. value: "zh-TW",
  622. icon: "🇹🇼",
  623. },
  624. {
  625. name: "日本語",
  626. value: "ja-JP",
  627. icon: "🇯🇵",
  628. },
  629. {
  630. name: "Русский",
  631. value: "ru-RU",
  632. icon: "🇷🇺",
  633. },
  634. {
  635. name: "Tiếng Việt",
  636. value: "vi-VN",
  637. icon: "🇻🇳",
  638. },
  639. {
  640. name: "Español",
  641. value: "es-ES",
  642. icon: "🇪🇸",
  643. },
  644. {
  645. name: "Indonesian",
  646. value: "id-ID",
  647. icon: "🇮🇩",
  648. },
  649. {
  650. name: "Український",
  651. value: "uk-UA",
  652. icon: "🇺🇦",
  653. },
  654. {
  655. name: "Türkçe",
  656. value: "tr-TR",
  657. icon: "🇹🇷",
  658. },
  659. {
  660. name: "Português",
  661. value: "pt-BR",
  662. icon: "🇧🇷",
  663. }
  664. ]
  665. static getLanguage() {
  666. let lang = CookieManager.getCookie("lang");
  667. if (!lang) {
  668. if (window.navigator) {
  669. lang = window.navigator.language || window.navigator.userLanguage;
  670. if (LanguageManager.isSupportLanguage(lang)) {
  671. CookieManager.setCookie("lang", lang, 150);
  672. } else {
  673. CookieManager.setCookie("lang", "en-US", 150);
  674. window.location.reload();
  675. }
  676. } else {
  677. CookieManager.setCookie("lang", "en-US", 150);
  678. window.location.reload();
  679. }
  680. }
  681. return lang;
  682. }
  683. static setLanguage(language) {
  684. if (!LanguageManager.isSupportLanguage(language)) {
  685. language = "en-US";
  686. }
  687. CookieManager.setCookie("lang", language, 150);
  688. window.location.reload();
  689. }
  690. static isSupportLanguage(language) {
  691. const languageFilter = LanguageManager.supportedLanguages.filter((lang) => {
  692. return lang.value === language
  693. })
  694. return languageFilter.length > 0;
  695. }
  696. }