mirror of
				https://github.com/v2board/v2board.git
				synced 2025-10-31 09:21:46 +08:00 
			
		
		
		
	update
This commit is contained in:
		
							
								
								
									
										149
									
								
								app/Http/Controllers/Client/ClientController.php
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										149
									
								
								app/Http/Controllers/Client/ClientController.php
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,149 @@ | ||||
| <?php | ||||
|  | ||||
| namespace App\Http\Controllers\Client; | ||||
|  | ||||
| use App\Http\Controllers\Controller; | ||||
| use Illuminate\Http\Request; | ||||
| use App\Models\User; | ||||
| use App\Models\Plan; | ||||
| use App\Models\Server; | ||||
| use App\Utils\Helper; | ||||
| use Symfony\Component\Yaml\Yaml; | ||||
|  | ||||
| class ClientController extends Controller | ||||
| { | ||||
|     public function subscribe(Request $request) | ||||
|     { | ||||
|         $user = $request->user; | ||||
|         $server = []; | ||||
|         if ($user->expired_at > time()) { | ||||
|             $servers = Server::where('show', 1) | ||||
|                 ->orderBy('name') | ||||
|                 ->get(); | ||||
|             foreach ($servers as $item) { | ||||
|                 $groupId = json_decode($item['group_id']); | ||||
|                 if (in_array($user->group_id, $groupId)) { | ||||
|                     array_push($server, $item); | ||||
|                 } | ||||
|             } | ||||
|         } | ||||
|         if (isset($_SERVER['HTTP_USER_AGENT'])) { | ||||
|             if (strpos($_SERVER['HTTP_USER_AGENT'], 'Quantumult%20X') !== false) { | ||||
|                 die($this->quantumultX($user, $server)); | ||||
|             } | ||||
|             if (strpos($_SERVER['HTTP_USER_AGENT'], 'Quantumult') !== false) { | ||||
|                 die($this->quantumult($user, $server)); | ||||
|             } | ||||
|             if (strpos(strtolower($_SERVER['HTTP_USER_AGENT']), 'clash') !== false) { | ||||
|                 die($this->clash($user, $server)); | ||||
|             } | ||||
|         } | ||||
|         die($this->origin($user, $server)); | ||||
|     } | ||||
|  | ||||
|     private function quantumultX($user, $server) | ||||
|     { | ||||
|         $uri = ''; | ||||
|         foreach ($server as $item) { | ||||
|             $uri .= "vmess=" . $item->host . ":" . $item->port . ", method=none, password=" . $user->v2ray_uuid . ", fast-open=false, udp-relay=false, tag=" . $item->name; | ||||
|             if ($item->network == 'ws') { | ||||
|                 $uri .= ', obfs=ws'; | ||||
|                 if ($item->settings) { | ||||
|                     $wsSettings = json_decode($item->settings); | ||||
|                     if (isset($wsSettings->path)) $uri .= ', obfs-uri=' . $wsSettings->path; | ||||
|                     if (isset($wsSettings->headers->Host)) $uri .= ', obfs-host=' . $wsSettings->headers->Host; | ||||
|                 } | ||||
|             } | ||||
|             $uri .= "\r\n"; | ||||
|         } | ||||
|         return base64_encode($uri); | ||||
|     } | ||||
|  | ||||
|     private function quantumult($user, $server) | ||||
|     { | ||||
|         $uri = ''; | ||||
|         header('subscription-userinfo: upload=' . $user->u . '; download=' . $user->d . ';total=' . $user->transfer_enable); | ||||
|         foreach ($server as $item) { | ||||
|             $str = ''; | ||||
|             $str .= $item->name . '= vmess, ' . $item->host . ', ' . $item->port . ', chacha20-ietf-poly1305, "' . $user->v2ray_uuid . '", over-tls=' . ($item->tls ? "true" : "false") . ', certificate=0, group=' . config('v2board.app_name', 'V2Board'); | ||||
|             if ($item->network === 'ws') { | ||||
|                 $str .= ', obfs=ws'; | ||||
|                 if ($item->settings) { | ||||
|                     $wsSettings = json_decode($item->settings); | ||||
|                     if (isset($wsSettings->path)) $str .= ', obfs-path="' . $wsSettings->path . '"'; | ||||
|                     if (isset($wsSettings->headers->Host)) $str .= ', obfs-header="Host:' . $wsSettings->headers->Host . '"'; | ||||
|                 } | ||||
|             } | ||||
|             $uri .= "vmess://" . base64_encode($str) . "\r\n"; | ||||
|         } | ||||
|         return base64_encode($uri); | ||||
|     } | ||||
|  | ||||
|     private function origin($user, $server) | ||||
|     { | ||||
|         $uri = ''; | ||||
|         foreach ($server as $item) { | ||||
|             $uri .= Helper::buildVmessLink($item, $user); | ||||
|         } | ||||
|         return base64_encode($uri); | ||||
|     } | ||||
|  | ||||
|     private function clash($user, $server) | ||||
|     { | ||||
|         $proxy = []; | ||||
|         $proxyGroup = []; | ||||
|         $proxies = []; | ||||
|         foreach ($server as $item) { | ||||
|             $array = []; | ||||
|             $array['name'] = $item->name; | ||||
|             $array['type'] = 'vmess'; | ||||
|             $array['server'] = $item->host; | ||||
|             $array['port'] = $item->port; | ||||
|             $array['uuid'] = $user->v2ray_uuid; | ||||
|             $array['alterId'] = $user->v2ray_alter_id; | ||||
|             $array['cipher'] = 'auto'; | ||||
|             if ($item->tls) { | ||||
|                 $array['tls'] = true; | ||||
|             } | ||||
|             if ($item->network == 'ws') { | ||||
|                 $array['network'] = $item->network; | ||||
|                 if ($item->settings) { | ||||
|                     $wsSettings = json_decode($item->settings); | ||||
|                     if (isset($wsSettings->path)) $array['ws-path'] = $wsSettings->path; | ||||
|                     if (isset($wsSettings->headers->Host)) $array['ws-headers'] = [ | ||||
|                         'Host' => $wsSettings->headers->Host | ||||
|                     ]; | ||||
|                 } | ||||
|             } | ||||
|             array_push($proxy, $array); | ||||
|             array_push($proxies, $item->name); | ||||
|         } | ||||
|         array_push($proxyGroup, [ | ||||
|             'name' => config('v2board.app_name', 'V2Board'), | ||||
|             'type' => 'select', | ||||
|             'proxies' => $proxies | ||||
|         ]); | ||||
|  | ||||
|         $config = [ | ||||
|             'port' => 7890, | ||||
|             'socks-port' => 0, | ||||
|             'allow-lan' => false, | ||||
|             'mode' => 'Rule', | ||||
|             'log-level' => 'info', | ||||
|             'external-controller' => '0.0.0.0:9090', | ||||
|             'secret' => '', | ||||
|             'Proxy' => $proxy, | ||||
|             'Proxy Group' => $proxyGroup, | ||||
|             'Rule' => [ | ||||
|                 'DOMAIN-SUFFIX,google.com,' . config('v2board.app_name', 'V2Board'), | ||||
|                 'DOMAIN-KEYWORD,google,' . config('v2board.app_name', 'V2Board'), | ||||
|                 'DOMAIN,google.com,' . config('v2board.app_name', 'V2Board'), | ||||
|                 'DOMAIN-SUFFIX,ad.com,REJECT', | ||||
|                 'IP-CIDR,127.0.0.0/8,DIRECT', | ||||
|                 'GEOIP,CN,DIRECT', | ||||
|                 'MATCH,' . config('v2board.app_name', 'V2Board') | ||||
|             ] | ||||
|         ]; | ||||
|         return Yaml::dump($config); | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user