123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- <?php
- namespace App\Http\Controllers\Client;
- use App\Http\Controllers\Controller;
- use App\Services\ServerService;
- use App\Utils\Clash;
- use App\Utils\QuantumultX;
- use App\Utils\Shadowrocket;
- use App\Utils\Surge;
- use App\Utils\URLSchemes;
- use Illuminate\Http\Request;
- use App\Models\Server;
- use App\Utils\Helper;
- use Symfony\Component\Yaml\Yaml;
- use App\Services\UserService;
- class ClientController extends Controller
- {
- public function subscribe(Request $request)
- {
- $user = $request->user;
- // account not expired and is not banned.
- $userService = new UserService();
- if ($userService->isAvailable($user)) {
- $serverService = new ServerService();
- $servers = $serverService->getAllServers($user);
- if (isset($_SERVER['HTTP_USER_AGENT'])) {
- $_SERVER['HTTP_USER_AGENT'] = strtolower($_SERVER['HTTP_USER_AGENT']);
- if (strpos($_SERVER['HTTP_USER_AGENT'], 'quantumult%20x') !== false) {
- die($this->quantumultX($user, $servers['vmess'], $servers['trojan']));
- }
- if (strpos($_SERVER['HTTP_USER_AGENT'], 'quantumult') !== false) {
- die($this->quantumult($user, $servers['vmess']));
- }
- if (strpos($_SERVER['HTTP_USER_AGENT'], 'clash') !== false) {
- die($this->clash($user, $servers['shadowsocks'], $servers['vmess'], $servers['trojan']));
- }
- if (strpos($_SERVER['HTTP_USER_AGENT'], 'surfboard') !== false) {
- die($this->surfboard($user, $servers['vmess']));
- }
- if (strpos($_SERVER['HTTP_USER_AGENT'], 'surge') !== false) {
- die($this->surge($user, $servers['vmess'], $servers['trojan']));
- }
- if (strpos($_SERVER['HTTP_USER_AGENT'], 'shadowrocket') !== false) {
- die($this->shadowrocket($user, $servers['vmess'], $servers['trojan']));
- }
- }
- die($this->origin($user, $servers['shadowsocks'], $servers['vmess'], $servers['trojan']));
- }
- }
- // TODO: Ready to stop support
- private function quantumult($user, $vmess = [])
- {
- $uri = '';
- header('subscription-userinfo: upload=' . $user->u . '; download=' . $user->d . ';total=' . $user->transfer_enable);
- foreach ($vmess as $item) {
- $str = '';
- $str .= $item->name . '= vmess, ' . $item->host . ', ' . $item->port . ', chacha20-ietf-poly1305, "' . $user->uuid . '", over-tls=' . ($item->tls ? "true" : "false") . ', certificate=0, group=' . config('v2board.app_name', 'V2Board');
- if ($item->network === 'ws') {
- $str .= ', obfs=ws';
- if ($item->networkSettings) {
- $wsSettings = json_decode($item->networkSettings);
- 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 shadowrocket($user, $vmess = [], $trojan = [])
- {
- $uri = '';
- //display remaining traffic and expire date
- $upload = round($user->u / (1024*1024*1024), 2);
- $download = round($user->d / (1024*1024*1024), 2);
- $totalTraffic = round($user->transfer_enable / (1024*1024*1024), 2);
- $expiredDate = date('Y-m-d', $user->expired_at);
- $uri .= "STATUS=🚀↑:{$upload}GB,↓:{$download}GB,TOT:{$totalTraffic}GB💡Expires:{$expiredDate}\r\n";
- foreach ($vmess as $item) {
- $uri .= Shadowrocket::buildVmess($user->uuid, $item);
- }
- foreach ($trojan as $item) {
- $uri .= Shadowrocket::buildTrojan($user->uuid, $item);
- }
- return base64_encode($uri);
- }
- private function quantumultX($user, $vmess = [], $trojan = [])
- {
- $uri = '';
- header("subscription-userinfo: upload={$user->u}; download={$user->d}; total={$user->transfer_enable}; expire={$user->expired_at}");
- foreach ($vmess as $item) {
- $uri .= QuantumultX::buildVmess($user->uuid, $item);
- }
- foreach ($trojan as $item) {
- $uri .= QuantumultX::buildTrojan($user->uuid, $item);
- }
- return base64_encode($uri);
- }
- private function origin($user, $shadowsocks = [], $vmess = [], $trojan = [])
- {
- $uri = '';
- foreach ($shadowsocks as $item) {
- $uri .= URLSchemes::buildShadowsocks($item, $user);
- }
- foreach ($vmess as $item) {
- $uri .= URLSchemes::buildVmess($item, $user);
- }
- foreach ($trojan as $item) {
- $uri .= URLSchemes::buildTrojan($item, $user);
- }
- return base64_encode($uri);
- }
- private function surge($user, $vmess = [], $trojan = [])
- {
- $proxies = '';
- $proxyGroup = '';
- foreach ($vmess as $item) {
- // [Proxy]
- $proxies .= Surge::buildVmess($user->uuid, $item);
- // [Proxy Group]
- $proxyGroup .= $item->name . ', ';
- }
- foreach ($trojan as $item) {
- // [Proxy]
- $proxies .= Surge::buildTrojan($user->uuid, $item);
- // [Proxy Group]
- $proxyGroup .= $item->name . ', ';
- }
- $defaultConfig = base_path() . '/resources/rules/default.surge.conf';
- $customConfig = base_path() . '/resources/rules/custom.surge.conf';
- if (\File::exists($customConfig)) {
- $config = file_get_contents("$customConfig");
- } else {
- $config = file_get_contents("$defaultConfig");
- }
- // Subscription link
- $subsURL = config('v2board.subscribe_url', config('v2board.app_url', env('APP_URL'))) . '/api/v1/client/subscribe?token=' . $user['token'];
- $config = str_replace('$subs_link', $subsURL, $config);
- $config = str_replace('$proxies', $proxies, $config);
- $config = str_replace('$proxy_group', rtrim($proxyGroup, ', '), $config);
- return $config;
- }
- private function surfboard($user, $vmess = [])
- {
- $proxies = '';
- $proxyGroup = '';
- foreach ($vmess as $item) {
- // [Proxy]
- $proxies .= $item->name . ' = vmess, ' . $item->host . ', ' . $item->port . ', username=' . $user->uuid;
- if ($item->tls) {
- $tlsSettings = json_decode($item->tlsSettings);
- $proxies .= ', tls=' . ($item->tls ? "true" : "false");
- if (isset($tlsSettings->allowInsecure)) {
- $proxies .= ', skip-cert-verify=' . ($tlsSettings->allowInsecure ? "true" : "false");
- }
- }
- if ($item->network == 'ws') {
- $proxies .= ', ws=true';
- if ($item->networkSettings) {
- $wsSettings = json_decode($item->networkSettings);
- if (isset($wsSettings->path)) $proxies .= ', ws-path=' . $wsSettings->path;
- if (isset($wsSettings->headers->Host)) $proxies .= ', ws-headers=host:' . $wsSettings->headers->Host;
- }
- }
- $proxies .= "\r\n";
- // [Proxy Group]
- $proxyGroup .= $item->name . ', ';
- }
- $defaultConfig = base_path() . '/resources/rules/default.surfboard.conf';
- $customConfig = base_path() . '/resources/rules/custom.surfboard.conf';
- if (\File::exists($customConfig)) {
- $config = file_get_contents("$customConfig");
- } else {
- $config = file_get_contents("$defaultConfig");
- }
- // Subscription link
- $subsURL = config('v2board.subscribe_url', config('v2board.app_url', env('APP_URL'))) . '/api/v1/client/subscribe?token=' . $user['token'];
- $config = str_replace('$subs_link', $subsURL, $config);
- $config = str_replace('$proxies', $proxies, $config);
- $config = str_replace('$proxy_group', rtrim($proxyGroup, ', '), $config);
- return $config;
- }
- private function clash($user, $shadowsocks = [], $vmess = [], $trojan = [])
- {
- $defaultConfig = base_path() . '/resources/rules/default.clash.yaml';
- $customConfig = base_path() . '/resources/rules/custom.clash.yaml';
- if (\File::exists($customConfig)) {
- $config = Yaml::parseFile($customConfig);
- } else {
- $config = Yaml::parseFile($defaultConfig);
- }
- $proxy = [];
- $proxies = [];
- foreach ($shadowsocks as $item) {
- array_push($proxy, Clash::buildShadowsocks($user->uuid, $item));
- array_push($proxies, $item->name);
- }
- foreach ($vmess as $item) {
- array_push($proxy, Clash::buildVmess($user->uuid, $item));
- array_push($proxies, $item->name);
- }
- foreach ($trojan as $item) {
- array_push($proxy, Clash::buildTrojan($user->uuid, $item));
- array_push($proxies, $item->name);
- }
- $config['proxies'] = array_merge($config['proxies'] ? $config['proxies'] : [], $proxy);
- foreach ($config['proxy-groups'] as $k => $v) {
- if (!is_array($config['proxy-groups'][$k]['proxies'])) continue;
- $config['proxy-groups'][$k]['proxies'] = array_merge($config['proxy-groups'][$k]['proxies'], $proxies);
- }
- $yaml = Yaml::dump($config);
- $yaml = str_replace('$app_name', config('v2board.app_name', 'V2Board'), $yaml);
- return $yaml;
- }
- }
|