URLSchemes.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. namespace App\Utils;
  3. use App\Models\Server;
  4. use App\Models\ServerShadowsocks;
  5. use App\Models\ServerTrojan;
  6. use App\Models\User;
  7. class URLSchemes
  8. {
  9. public static function buildShadowsocks(ServerShadowsocks $server, User $user)
  10. {
  11. $str = str_replace(
  12. ['+', '/', '='],
  13. ['-', '_', ''],
  14. base64_encode("{$server->cipher}:{$user->uuid}")
  15. );
  16. return "ss://{$str}@{$server->host}:{$server->port}#{$server->name}\r\n";
  17. }
  18. public static function buildVmess(Server $server, User $user)
  19. {
  20. $config = [
  21. "v" => "2",
  22. "ps" => $server->name,
  23. "add" => $server->host,
  24. "port" => $server->port,
  25. "id" => $user->uuid,
  26. "aid" => "2",
  27. "net" => $server->network,
  28. "type" => "none",
  29. "host" => "",
  30. "path" => "",
  31. "tls" => $server->tls ? "tls" : ""
  32. ];
  33. if ((string)$server->network === 'ws') {
  34. $wsSettings = json_decode($server->networkSettings);
  35. if (isset($wsSettings->path)) $config['path'] = $wsSettings->path;
  36. if (isset($wsSettings->headers->Host)) $config['host'] = $wsSettings->headers->Host;
  37. }
  38. return "vmess://" . base64_encode(json_encode($config)) . "\r\n";
  39. }
  40. public static function buildTrojan(ServerTrojan $server, User $user)
  41. {
  42. $query = http_build_query([
  43. 'allowInsecure' => $server->allow_insecure,
  44. 'peer' => $server->server_name,
  45. 'sni' => $server->server_name
  46. ]);
  47. $uri = "trojan://{$user->uuid}@{$server->host}:{$server->port}?{$query}#{$server->name}";
  48. $uri .= "\r\n";
  49. return $uri;
  50. }
  51. }