user; $server = []; if ($user->expired_at > time() && !$user->banned) { $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 = []; $rules = []; 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' => 'auto', 'type' => 'url-test', 'proxies' => $proxies, 'url' => 'https://www.bing.com', 'interval' => 300 ]); array_push($proxyGroup, [ 'name' => 'fallback-auto', 'type' => 'fallback', 'proxies' => $proxies, 'url' => 'https://www.bing.com', 'interval' => 300 ]); array_push($proxyGroup, [ 'name' => 'select', 'type' => 'select', 'proxies' => $proxies ]); try { $rules = Yaml::parseFile(base_path() . '/resources/rules/clash.rule.yaml')['Rule']; } catch (\Exception $e) {} $config = [ 'port' => 7890, 'socks-port' => 7891, 'allow-lan' => false, 'mode' => 'Rule', 'log-level' => 'info', 'external-controller' => '0.0.0.0:9090', 'secret' => '', 'Proxy' => $proxy, 'Proxy Group' => $proxyGroup, 'Rule' => $rules ]; return Yaml::dump($config); } }