v2board/app/Http/Controllers/Client/AppController.php

146 lines
7.1 KiB
PHP
Raw Normal View History

2019-12-02 17:07:44 +08:00
<?php
2020-01-29 16:08:50 +08:00
namespace App\Http\Controllers\Client;
2019-12-02 17:07:44 +08:00
use App\Http\Controllers\Controller;
2020-06-18 16:26:50 +08:00
use App\Services\ServerService;
2020-06-11 20:47:02 +08:00
use App\Services\UserService;
2020-06-18 16:26:50 +08:00
use App\Utils\Clash;
2020-01-29 16:08:50 +08:00
use Illuminate\Http\Request;
2019-12-02 17:07:44 +08:00
use App\Models\Server;
2020-06-11 20:47:02 +08:00
use Symfony\Component\Yaml\Yaml;
2019-12-02 17:07:44 +08:00
class AppController extends Controller
{
2020-06-15 15:38:04 +08:00
CONST CLIENT_CONFIG = '{"policy":{"levels":{"0":{"uplinkOnly":0}}},"dns":{"servers":["114.114.114.114","8.8.8.8"]},"outboundDetour":[{"protocol":"freedom","tag":"direct","settings":{}}],"inbound":{"listen":"0.0.0.0","port":31211,"protocol":"socks","settings":{"auth":"noauth","udp":true,"ip":"127.0.0.1"}},"inboundDetour":[{"listen":"0.0.0.0","allocate":{"strategy":"always","refresh":5,"concurrency":3},"port":31210,"protocol":"http","tag":"httpDetour","domainOverride":["http","tls"],"streamSettings":{},"settings":{"timeout":0}}],"routing":{"strategy":"rules","settings":{"domainStrategy":"IPIfNonMatch","rules":[{"type":"field","ip":["geoip:cn"],"outboundTag":"direct"},{"type":"field","ip":["0.0.0.0/8","10.0.0.0/8","100.64.0.0/10","127.0.0.0/8","169.254.0.0/16","172.16.0.0/12","192.0.0.0/24","192.0.2.0/24","192.168.0.0/16","198.18.0.0/15","198.51.100.0/24","203.0.113.0/24","::1/128","fc00::/7","fe80::/10"],"outboundTag":"direct"}]}},"outbound":{"tag":"proxy","sendThrough":"0.0.0.0","mux":{"enabled":false,"concurrency":8},"protocol":"vmess","settings":{"vnext":[{"address":"server","port":443,"users":[{"id":"uuid","alterId":2,"security":"auto","level":0}],"remark":"remark"}]},"streamSettings":{"network":"tcp","tcpSettings":{"header":{"type":"none"}},"security":"none","tlsSettings":{"allowInsecure":true,"allowInsecureCiphers":true},"kcpSettings":{"header":{"type":"none"},"mtu":1350,"congestion":false,"tti":20,"uplinkCapacity":5,"writeBufferSize":1,"readBufferSize":1,"downlinkCapacity":20},"wsSettings":{"path":"","headers":{"Host":"server.cc"}}}}}';
CONST SOCKS_PORT = 10010;
CONST HTTP_PORT = 10011;
2020-07-04 17:09:57 +08:00
public function getConfig(Request $request)
2020-01-11 13:36:52 +08:00
{
2020-09-08 13:58:58 +08:00
$servers = [];
2019-12-02 17:07:44 +08:00
$user = $request->user;
2020-06-11 20:47:02 +08:00
$userService = new UserService();
if ($userService->isAvailable($user)) {
2020-06-18 16:26:50 +08:00
$serverService = new ServerService();
2020-11-14 17:26:17 +08:00
$servers = $serverService->getAvailableServers($user);
2020-06-11 20:47:02 +08:00
}
$config = Yaml::parseFile(base_path() . '/resources/rules/app.clash.yaml');
$proxy = [];
$proxies = [];
2020-06-18 16:26:50 +08:00
2020-11-14 23:04:11 +08:00
foreach ($servers as $item) {
if ($item['type'] === 'shadowsocks') {
2020-11-15 17:10:32 +08:00
array_push($proxy, Clash::buildShadowsocks($user['uuid'], $item));
array_push($proxies, $item['name']);
2020-11-14 23:04:11 +08:00
}
if ($item['type'] === 'v2ray') {
2020-11-15 17:10:32 +08:00
array_push($proxy, Clash::buildVmess($user['uuid'], $item));
array_push($proxies, $item['name']);
2020-11-14 23:04:11 +08:00
}
if ($item['type'] === 'trojan') {
2020-11-15 17:10:32 +08:00
array_push($proxy, Clash::buildTrojan($user['uuid'], $item));
array_push($proxies, $item['name']);
2020-11-14 23:04:11 +08:00
}
2020-06-11 20:47:02 +08:00
}
2020-07-04 17:40:23 +08:00
$config['proxies'] = array_merge($config['proxies'] ? $config['proxies'] : [], $proxy);
foreach ($config['proxy-groups'] as $k => $v) {
$config['proxy-groups'][$k]['proxies'] = array_merge($config['proxy-groups'][$k]['proxies'], $proxies);
2019-12-02 17:07:44 +08:00
}
2020-06-11 20:47:02 +08:00
die(Yaml::dump($config));
2019-12-02 17:07:44 +08:00
}
2019-12-10 09:53:34 +08:00
2020-11-19 21:21:21 +08:00
public function getVersion(Request $request)
2020-07-04 17:09:57 +08:00
{
2020-11-22 16:25:56 +08:00
if (strpos($request->header('user-agent'), 'tidalab/4.0.0') !== false
|| strpos($request->header('user-agent'), 'tunnelab/4.0.0') !== false
) {
2020-11-22 02:01:44 +08:00
if (strpos($request->header('user-agent'), 'Win64') !== false) {
2020-11-19 21:21:21 +08:00
return response([
'data' => [
'version' => config('v2board.windows_version'),
'download_url' => config('v2board.windows_download_url')
]
]);
} else {
return response([
'data' => [
'version' => config('v2board.macos_version'),
'download_url' => config('v2board.macos_download_url')
]
]);
}
return;
}
2020-07-04 17:09:57 +08:00
return response([
2020-08-13 14:27:12 +08:00
'data' => [
2020-11-19 21:21:21 +08:00
'windows_version' => config('v2board.windows_version'),
'windows_download_url' => config('v2board.windows_download_url'),
'macos_version' => config('v2board.macos_version'),
'macos_download_url' => config('v2board.macos_download_url'),
'android_version' => config('v2board.android_version'),
'android_download_url' => config('v2board.android_download_url')
2020-08-13 14:27:12 +08:00
]
2020-07-04 17:09:57 +08:00
]);
}
2020-01-11 13:36:52 +08:00
public function config(Request $request)
{
2019-12-10 09:53:34 +08:00
if (empty($request->input('server_id'))) {
abort(500, '参数错误');
}
$user = $request->user;
2020-03-17 21:21:35 +08:00
if ($user->expired_at < time() && $user->expired_at !== NULL) {
2019-12-10 09:53:34 +08:00
abort(500, '订阅计划已过期');
}
$server = Server::where('show', 1)
->where('id', $request->input('server_id'))
->first();
if (!$server) {
abort(500, '服务器不存在');
}
$json = json_decode(self::CLIENT_CONFIG);
//socks
$json->inbound->port = (int)self::SOCKS_PORT;
//http
$json->inboundDetour[0]->port = (int)self::HTTP_PORT;
//other
$json->outbound->settings->vnext[0]->address = (string)$server->host;
$json->outbound->settings->vnext[0]->port = (int)$server->port;
2020-06-08 01:08:07 +08:00
$json->outbound->settings->vnext[0]->users[0]->id = (string)$user->uuid;
2020-11-17 21:23:16 +08:00
$json->outbound->settings->vnext[0]->users[0]->alterId = (int)$server->alter_id;
2019-12-10 09:53:34 +08:00
$json->outbound->settings->vnext[0]->remark = (string)$server->name;
$json->outbound->streamSettings->network = $server->network;
2020-03-10 21:13:41 +08:00
if ($server->networkSettings) {
2019-12-10 09:53:34 +08:00
switch ($server->network) {
2020-01-11 13:36:52 +08:00
case 'tcp':
2020-03-10 21:13:41 +08:00
$json->outbound->streamSettings->tcpSettings = json_decode($server->networkSettings);
2019-12-10 09:53:34 +08:00
break;
2020-01-11 13:36:52 +08:00
case 'kcp':
2020-03-10 21:13:41 +08:00
$json->outbound->streamSettings->kcpSettings = json_decode($server->networkSettings);
2019-12-10 09:53:34 +08:00
break;
2020-01-11 13:36:52 +08:00
case 'ws':
2020-03-10 21:13:41 +08:00
$json->outbound->streamSettings->wsSettings = json_decode($server->networkSettings);
2019-12-10 09:53:34 +08:00
break;
2020-01-11 13:36:52 +08:00
case 'http':
2020-03-10 21:13:41 +08:00
$json->outbound->streamSettings->httpSettings = json_decode($server->networkSettings);
2019-12-10 09:53:34 +08:00
break;
2020-01-11 13:36:52 +08:00
case 'domainsocket':
2020-03-10 21:13:41 +08:00
$json->outbound->streamSettings->dsSettings = json_decode($server->networkSettings);
2019-12-10 09:53:34 +08:00
break;
2020-01-11 13:36:52 +08:00
case 'quic':
2020-03-10 21:13:41 +08:00
$json->outbound->streamSettings->quicSettings = json_decode($server->networkSettings);
2019-12-10 09:53:34 +08:00
break;
}
}
2019-12-24 15:33:42 +08:00
if ($request->input('is_global')) {
2020-01-20 13:57:30 +08:00
$json->routing->settings->rules[0]->outboundTag = 'proxy';
2019-12-24 15:33:42 +08:00
}
2019-12-10 09:53:34 +08:00
if ($server->tls) {
$json->outbound->streamSettings->security = "tls";
}
die(json_encode($json, JSON_UNESCAPED_UNICODE));
}
2019-12-02 17:07:44 +08:00
}