2019-10-29 15:33:36 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
use App\Models\User;
|
|
|
|
use App\Models\Plan;
|
|
|
|
use App\Models\Server;
|
2019-11-24 00:41:37 +08:00
|
|
|
use App\Utils\Helper;
|
2019-10-29 15:33:36 +08:00
|
|
|
use Symfony\Component\Yaml\Yaml;
|
|
|
|
|
|
|
|
class ClientController extends Controller
|
|
|
|
{
|
2020-01-11 13:36:52 +08:00
|
|
|
public function subscribe(Request $request)
|
|
|
|
{
|
2019-10-29 15:33:36 +08:00
|
|
|
$user = $request->user;
|
|
|
|
$server = [];
|
|
|
|
if ($user->expired_at > time()) {
|
2020-01-11 13:36:52 +08:00
|
|
|
$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);
|
|
|
|
}
|
|
|
|
}
|
2019-10-29 15:33:36 +08:00
|
|
|
}
|
2020-01-11 13:36:52 +08:00
|
|
|
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));
|
|
|
|
}
|
2019-10-29 15:33:36 +08:00
|
|
|
}
|
|
|
|
die($this->origin($user, $server));
|
|
|
|
}
|
|
|
|
|
2020-01-11 13:36:52 +08:00
|
|
|
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";
|
2019-11-06 22:52:59 +08:00
|
|
|
}
|
2020-01-11 13:36:52 +08:00
|
|
|
return base64_encode($uri);
|
2019-10-29 15:33:36 +08:00
|
|
|
}
|
|
|
|
|
2020-01-11 13:36:52 +08:00
|
|
|
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";
|
2019-11-06 22:52:59 +08:00
|
|
|
}
|
2020-01-11 13:36:52 +08:00
|
|
|
return base64_encode($uri);
|
2019-10-29 15:33:36 +08:00
|
|
|
}
|
|
|
|
|
2020-01-11 13:36:52 +08:00
|
|
|
private function origin($user, $server)
|
|
|
|
{
|
|
|
|
$uri = '';
|
|
|
|
foreach ($server as $item) {
|
|
|
|
$uri .= Helper::buildVmessLink($item, $user);
|
|
|
|
}
|
|
|
|
return base64_encode($uri);
|
2019-10-29 15:33:36 +08:00
|
|
|
}
|
|
|
|
|
2020-01-11 13:36:52 +08:00
|
|
|
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);
|
2019-11-11 20:37:56 +08:00
|
|
|
}
|
2020-01-11 13:36:52 +08:00
|
|
|
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);
|
2019-10-29 15:33:36 +08:00
|
|
|
}
|
|
|
|
}
|