QuantumultX.php 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?php
  2. namespace App\Utils;
  3. class QuantumultX
  4. {
  5. public static function buildShadowsocks($password, $server)
  6. {
  7. $config = [
  8. "shadowsocks={$server['host']}:{$server['port']}",
  9. "method={$server['cipher']}",
  10. "password={$password}",
  11. 'fast-open=true',
  12. 'udp-relay=true',
  13. "tag={$server['name']}"
  14. ];
  15. $config = array_filter($config);
  16. $uri = implode(',', $config);
  17. $uri .= "\r\n";
  18. return $uri;
  19. }
  20. public static function buildVmess($uuid, $server)
  21. {
  22. $config = [
  23. "vmess={$server['host']}:{$server['port']}",
  24. 'method=chacha20-poly1305',
  25. "password={$uuid}",
  26. 'fast-open=true',
  27. 'udp-relay=true',
  28. "tag={$server['name']}"
  29. ];
  30. if ($server['tls']) {
  31. if ($server['network'] === 'tcp') {
  32. array_push($config, 'obfs=over-tls');
  33. } else {
  34. array_push($config, 'obfs=wss');
  35. }
  36. } else if ($server['network'] === 'ws') {
  37. array_push($config, 'obfs=ws');
  38. }
  39. if ($server['tls']) {
  40. if ($server['tlsSettings']) {
  41. $tlsSettings = json_decode($server['tlsSettings'], true);
  42. if (isset($tlsSettings['allowInsecure']) && !empty($tlsSettings['allowInsecure']))
  43. array_push($config, 'tls-verification=' . ($tlsSettings['allowInsecure'] ? 'false' : 'true'));
  44. }
  45. }
  46. if ($server['network'] === 'ws') {
  47. if ($server['networkSettings']) {
  48. $wsSettings = json_decode($server['networkSettings'], true);
  49. if (isset($wsSettings['path']) && !empty($wsSettings['path']))
  50. array_push($config, "obfs-uri={$wsSettings['path']}");
  51. if (isset($wsSettings['headers']['Host']) && !empty($wsSettings['headers']['Host']))
  52. array_push($config, "obfs-host={$wsSettings['headers']['Host']}");
  53. }
  54. }
  55. $uri = implode(',', $config);
  56. $uri .= "\r\n";
  57. return $uri;
  58. }
  59. public static function buildTrojan($password, $server)
  60. {
  61. $config = [
  62. "trojan={$server['host']}:{$server['port']}",
  63. "password={$password}",
  64. 'over-tls=true',
  65. $server['server_name'] ? "tls-host={$server['server_name']}" : "",
  66. // Tips: allowInsecure=false = tls-verification=true
  67. $server['allow_insecure'] ? 'tls-verification=false' : 'tls-verification=true',
  68. 'fast-open=true',
  69. 'udp-relay=true',
  70. "tag={$server['name']}"
  71. ];
  72. $config = array_filter($config);
  73. $uri = implode(',', $config);
  74. $uri .= "\r\n";
  75. return $uri;
  76. }
  77. }