mirror of
https://github.com/cedar2025/Xboard.git
synced 2025-01-23 11:08:13 -05:00
114 lines
3.8 KiB
PHP
114 lines
3.8 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\V1\Server;
|
|
|
|
use App\Exceptions\ApiException;
|
|
use App\Http\Controllers\Controller;
|
|
use App\Models\ServerTrojan;
|
|
use App\Services\ServerService;
|
|
use App\Services\UserService;
|
|
use App\Utils\CacheKey;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\Cache;
|
|
|
|
/*
|
|
* Tidal Lab Trojan
|
|
* Github: https://github.com/tokumeikoi/tidalab-trojan
|
|
*/
|
|
class TrojanTidalabController extends Controller
|
|
{
|
|
const TROJAN_CONFIG = '{"run_type":"server","local_addr":"0.0.0.0","local_port":443,"remote_addr":"www.taobao.com","remote_port":80,"password":[],"ssl":{"cert":"server.crt","key":"server.key","sni":"domain.com"},"api":{"enabled":true,"api_addr":"127.0.0.1","api_port":10000}}';
|
|
|
|
// 后端获取用户
|
|
public function user(Request $request)
|
|
{
|
|
ini_set('memory_limit', -1);
|
|
$nodeId = $request->input('node_id');
|
|
$server = ServerTrojan::find($nodeId);
|
|
if (!$server) {
|
|
return $this->fail([400, '节点不存在']);
|
|
}
|
|
Cache::put(CacheKey::get('SERVER_TROJAN_LAST_CHECK_AT', $server->id), time(), 3600);
|
|
$users = ServerService::getAvailableUsers($server->group_id);
|
|
$result = [];
|
|
foreach ($users as $user) {
|
|
$user->trojan_user = [
|
|
"password" => $user->uuid,
|
|
];
|
|
unset($user->uuid);
|
|
array_push($result, $user);
|
|
}
|
|
$eTag = sha1(json_encode($result));
|
|
if (strpos($request->header('If-None-Match'), $eTag) !== false) {
|
|
return response(null, 304);
|
|
}
|
|
return response([
|
|
'msg' => 'ok',
|
|
'data' => $result,
|
|
])->header('ETag', "\"{$eTag}\"");
|
|
}
|
|
|
|
// 后端提交数据
|
|
public function submit(Request $request)
|
|
{
|
|
$server = ServerTrojan::find($request->input('node_id'));
|
|
if (!$server) {
|
|
return response([
|
|
'ret' => 0,
|
|
'msg' => 'server is not found'
|
|
]);
|
|
}
|
|
$data = get_request_content();
|
|
$data = json_decode($data, true);
|
|
Cache::put(CacheKey::get('SERVER_TROJAN_ONLINE_USER', $server->id), count($data), 3600);
|
|
Cache::put(CacheKey::get('SERVER_TROJAN_LAST_PUSH_AT', $server->id), time(), 3600);
|
|
$userService = new UserService();
|
|
$formatData = [];
|
|
foreach ($data as $item) {
|
|
$formatData[$item['user_id']] = [$item['u'], $item['d']];
|
|
}
|
|
$userService->trafficFetch($server->toArray(), 'trojan', $formatData);
|
|
|
|
return response([
|
|
'ret' => 1,
|
|
'msg' => 'ok'
|
|
]);
|
|
}
|
|
|
|
// 后端获取配置
|
|
public function config(Request $request)
|
|
{
|
|
$request->validate([
|
|
'node_id' => 'required',
|
|
'local_port' => 'required'
|
|
], [
|
|
'node_id.required' => '节点ID不能为空',
|
|
'local_port.required' => '本地端口不能为空'
|
|
]);
|
|
try {
|
|
$json = $this->getTrojanConfig($request->input('node_id'), $request->input('local_port'));
|
|
} catch (\Exception $e) {
|
|
\Log::error($e);
|
|
return $this->fail([500, '配置获取失败']);
|
|
}
|
|
|
|
return (json_encode($json, JSON_UNESCAPED_UNICODE));
|
|
}
|
|
|
|
private function getTrojanConfig(int $nodeId, int $localPort)
|
|
{
|
|
$server = ServerTrojan::find($nodeId);
|
|
if (!$server) {
|
|
return $this->fail([400, '节点不存在']);
|
|
}
|
|
|
|
$json = json_decode(self::TROJAN_CONFIG);
|
|
$json->local_port = $server->server_port;
|
|
$json->ssl->sni = $server->server_name ? $server->server_name : $server->host;
|
|
$json->ssl->cert = "/root/.cert/server.crt";
|
|
$json->ssl->key = "/root/.cert/server.key";
|
|
$json->api->api_port = $localPort;
|
|
return $json;
|
|
}
|
|
}
|