index.js 22 KB

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