mirror of
				https://github.com/v2board/v2board.git
				synced 2025-10-31 09:21:46 +08:00 
			
		
		
		
	update: server
This commit is contained in:
		| @@ -2,56 +2,54 @@ | ||||
| namespace App\Utils; | ||||
|  | ||||
| use App\Models\Server; | ||||
| use App\Models\ServerShadowsocks; | ||||
| use App\Models\ServerTrojan; | ||||
| use App\Models\User; | ||||
|  | ||||
| class URLSchemes | ||||
| { | ||||
|     public static function buildShadowsocks(ServerShadowsocks $server, User $user) | ||||
|     public static function buildShadowsocks($server, User $user) | ||||
|     { | ||||
|         $name = rawurlencode($server->name); | ||||
|         $name = rawurlencode($server['name']); | ||||
|         $str = str_replace( | ||||
|             ['+', '/', '='], | ||||
|             ['-', '_', ''], | ||||
|             base64_encode("{$server->cipher}:{$user->uuid}") | ||||
|             base64_encode("{$server['cipher']}:{$user['uuid']}") | ||||
|         ); | ||||
|         return "ss://{$str}@{$server->host}:{$server->port}#{$name}\r\n"; | ||||
|         return "ss://{$str}@{$server['host']}:{$server['port']}#{$name}\r\n"; | ||||
|     } | ||||
|  | ||||
|  | ||||
|     public static function buildVmess(Server $server, User $user) | ||||
|     public static function buildVmess($server, User $user) | ||||
|     { | ||||
|         $config = [ | ||||
|             "v" => "2", | ||||
|             "ps" => $server->name, | ||||
|             "add" => $server->host, | ||||
|             "port" => $server->port, | ||||
|             "id" => $user->uuid, | ||||
|             "ps" => $server['name'], | ||||
|             "add" => $server['host'], | ||||
|             "port" => $server['port'], | ||||
|             "id" => $user['uuid'], | ||||
|             "aid" => "2", | ||||
|             "net" => $server->network, | ||||
|             "net" => $server['network'], | ||||
|             "type" => "none", | ||||
|             "host" => "", | ||||
|             "path" => "", | ||||
|             "tls" => $server->tls ? "tls" : "" | ||||
|             "tls" => $server['tls'] ? "tls" : "" | ||||
|         ]; | ||||
|         if ((string)$server->network === 'ws') { | ||||
|             $wsSettings = json_decode($server->networkSettings); | ||||
|             if (isset($wsSettings->path)) $config['path'] = $wsSettings->path; | ||||
|             if (isset($wsSettings->headers->Host)) $config['host'] = $wsSettings->headers->Host; | ||||
|         if ((string)$server['network'] === 'ws') { | ||||
|             $wsSettings = json_decode($server['networkSettings'], true); | ||||
|             if (isset($wsSettings['path'])) $config['path'] = $wsSettings['path']; | ||||
|             if (isset($wsSettings['headers']['Host'])) $config['host'] = $wsSettings['headers']['Host']; | ||||
|         } | ||||
|         return "vmess://" . base64_encode(json_encode($config)) . "\r\n"; | ||||
|     } | ||||
|  | ||||
|     public static function buildTrojan(ServerTrojan $server, User $user) | ||||
|     public static function buildTrojan($server, User $user) | ||||
|     { | ||||
|         $name = rawurlencode($server->name); | ||||
|         $name = rawurlencode($server['name']); | ||||
|         $query = http_build_query([ | ||||
|             'allowInsecure' => $server->allow_insecure, | ||||
|             'peer' => $server->server_name, | ||||
|             'sni' => $server->server_name | ||||
|             'allowInsecure' => $server['allow_insecure'], | ||||
|             'peer' => $server['server_name'], | ||||
|             'sni' => $server['server_name'] | ||||
|         ]); | ||||
|         $uri = "trojan://{$user->uuid}@{$server->host}:{$server->port}?{$query}#{$name}"; | ||||
|         $uri = "trojan://{$user['uuid']}@{$server['host']}:{$server['port']}?{$query}#{$name}"; | ||||
|         $uri .= "\r\n"; | ||||
|         return $uri; | ||||
|     } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user