v2board/app/Http/Controllers/Server/UniProxyController.php

139 lines
4.7 KiB
PHP
Raw Normal View History

2022-05-02 13:37:11 +08:00
<?php
namespace App\Http\Controllers\Server;
use App\Services\ServerService;
use App\Services\UserService;
use App\Utils\CacheKey;
2022-11-17 02:19:11 +08:00
use App\Utils\Helper;
2022-05-02 13:37:11 +08:00
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
use App\Models\ServerShadowsocks;
use App\Models\ServerV2ray;
use App\Models\ServerTrojan;
use Illuminate\Support\Facades\Cache;
2022-11-17 02:19:11 +08:00
class UniProxyController extends Controller
2022-05-02 13:37:11 +08:00
{
private $nodeType;
private $nodeInfo;
private $nodeId;
private $token;
public function __construct(Request $request)
{
$token = $request->input('token');
if (empty($token)) {
abort(500, 'token is null');
}
if ($token !== config('v2board.server_token')) {
abort(500, 'token is error');
}
$this->token = $token;
$this->nodeType = $request->input('node_type');
$this->nodeId = $request->input('node_id');
switch ($this->nodeType) {
case 'v2ray':
$this->nodeInfo = ServerV2ray::find($this->nodeId);
break;
case 'shadowsocks':
$this->nodeInfo = ServerShadowsocks::find($this->nodeId);
break;
case 'trojan':
$this->nodeInfo = ServerTrojan::find($this->nodeId);
break;
default:
break;
}
if (!$this->nodeInfo) {
abort(500, 'server not found');
}
}
// 后端获取用户
public function user(Request $request)
{
ini_set('memory_limit', -1);
2022-05-12 02:39:59 +08:00
Cache::put(CacheKey::get('SERVER_' . strtoupper($this->nodeType) . '_LAST_CHECK_AT', $this->nodeInfo->id), time(), 3600);
2022-05-02 13:37:11 +08:00
$serverService = new ServerService();
$users = $serverService->getAvailableUsers($this->nodeInfo->group_id);
$users = $users->toArray();
$response['users'] = $users;
$eTag = sha1(json_encode($response));
if (strpos($request->header('If-None-Match'), $eTag) !== false ) {
abort(304);
}
return response($response)->header('ETag', "\"{$eTag}\"");
}
// 后端提交数据
2022-11-17 02:19:11 +08:00
public function push(Request $request)
2022-05-02 13:37:11 +08:00
{
$data = file_get_contents('php://input');
$data = json_decode($data, true);
2022-05-12 02:39:59 +08:00
Cache::put(CacheKey::get('SERVER_' . strtoupper($this->nodeType) . '_ONLINE_USER', $this->nodeInfo->id), count($data), 3600);
Cache::put(CacheKey::get('SERVER_' . strtoupper($this->nodeType) . '_LAST_PUSH_AT', $this->nodeInfo->id), time(), 3600);
2022-05-02 13:37:11 +08:00
$userService = new UserService();
2022-11-17 02:19:11 +08:00
foreach (array_keys($data) as $k) {
$u = $data[$k]['Upload'];
$d = $data[$k]['Download'];
$userService->trafficFetch($u, $d, $k, $this->nodeInfo->toArray(), $this->nodeType);
2022-05-02 13:37:11 +08:00
}
return response([
'data' => true
]);
}
// 后端获取配置
public function config(Request $request)
{
switch ($this->nodeType) {
case 'shadowsocks':
2022-11-17 02:19:11 +08:00
$response = [
2022-05-02 13:37:11 +08:00
'server_port' => $this->nodeInfo->server_port,
2022-05-12 02:39:59 +08:00
'cipher' => $this->nodeInfo->cipher,
'obfs' => $this->nodeInfo->obfs,
'obfs_settings' => $this->nodeInfo->obfs_settings
2022-11-17 02:19:11 +08:00
];
2022-11-18 03:25:02 +08:00
if ($this->nodeInfo->cipher === '2022-blake3-aes-128-gcm') {
$response['server_key'] = Helper::getShadowsocksServerKey($this->nodeInfo->created_at, 16);
}
if ($this->nodeInfo->cipher === '2022-blake3-aes-256-gcm') {
$response['server_key'] = Helper::getShadowsocksServerKey($this->nodeInfo->created_at, 32);
}
2022-05-02 13:37:11 +08:00
break;
case 'v2ray':
2022-11-17 02:19:11 +08:00
$response = [
2022-05-02 13:37:11 +08:00
'server_port' => $this->nodeInfo->server_port,
'network' => $this->nodeInfo->network,
'cipher' => $this->nodeInfo->cipher,
'networkSettings' => $this->nodeInfo->networkSettings,
'tls' => $this->nodeInfo->tls
2022-11-17 02:19:11 +08:00
];
2022-05-02 13:37:11 +08:00
break;
case 'trojan':
2022-11-17 02:19:11 +08:00
$response = [
2022-05-02 13:37:11 +08:00
'host' => $this->nodeInfo->host,
2022-11-17 02:19:11 +08:00
'server_port' => $this->nodeInfo->server_port,
'server_name' => $this->nodeInfo->server_name
];
2022-05-02 13:37:11 +08:00
break;
}
2022-11-17 02:19:11 +08:00
$response['base_config'] = [
'push_interval' => 120,
'pull_interval' => 120
];
$eTag = sha1(json_encode($response));
if (strpos($request->header('If-None-Match'), $eTag) !== false ) {
abort(304);
}
return response($response)->header('ETag', "\"{$eTag}\"");
2022-05-02 13:37:11 +08:00
}
}