QuantumultX.php 2.3 KB

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