index.js 23 KB

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