update: uniproxy

This commit is contained in:
tokumeikoi 2022-11-17 02:19:11 +08:00
parent a82b78d770
commit 7872516037
3 changed files with 30 additions and 22 deletions

View File

@ -2,6 +2,7 @@
namespace App\Console\Commands; namespace App\Console\Commands;
use App\Utils\Helper;
use Illuminate\Console\Command; use Illuminate\Console\Command;
class Test extends Command class Test extends Command

View File

@ -5,6 +5,7 @@ namespace App\Http\Controllers\Server;
use App\Services\ServerService; use App\Services\ServerService;
use App\Services\UserService; use App\Services\UserService;
use App\Utils\CacheKey; use App\Utils\CacheKey;
use App\Utils\Helper;
use Illuminate\Http\Request; use Illuminate\Http\Request;
use App\Http\Controllers\Controller; use App\Http\Controllers\Controller;
use App\Models\ServerShadowsocks; use App\Models\ServerShadowsocks;
@ -12,7 +13,7 @@ use App\Models\ServerV2ray;
use App\Models\ServerTrojan; use App\Models\ServerTrojan;
use Illuminate\Support\Facades\Cache; use Illuminate\Support\Facades\Cache;
class VProxyController extends Controller class UniProxyController extends Controller
{ {
private $nodeType; private $nodeType;
private $nodeInfo; private $nodeInfo;
@ -60,15 +61,6 @@ class VProxyController extends Controller
$response['users'] = $users; $response['users'] = $users;
switch ($this->nodeType) {
case 'shadowsocks':
$response['server'] = [
'cipher' => $this->nodeInfo->cipher,
'server_port' => $this->nodeInfo->server_port
];
break;
}
$eTag = sha1(json_encode($response)); $eTag = sha1(json_encode($response));
if (strpos($request->header('If-None-Match'), $eTag) !== false ) { if (strpos($request->header('If-None-Match'), $eTag) !== false ) {
abort(304); abort(304);
@ -78,17 +70,17 @@ class VProxyController extends Controller
} }
// 后端提交数据 // 后端提交数据
public function submit(Request $request) public function push(Request $request)
{ {
$data = file_get_contents('php://input'); $data = file_get_contents('php://input');
$data = json_decode($data, true); $data = json_decode($data, true);
Cache::put(CacheKey::get('SERVER_' . strtoupper($this->nodeType) . '_ONLINE_USER', $this->nodeInfo->id), count($data), 3600); 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); Cache::put(CacheKey::get('SERVER_' . strtoupper($this->nodeType) . '_LAST_PUSH_AT', $this->nodeInfo->id), time(), 3600);
$userService = new UserService(); $userService = new UserService();
foreach ($data as $item) { foreach (array_keys($data) as $k) {
$u = $item['u']; $u = $data[$k]['Upload'];
$d = $item['d']; $d = $data[$k]['Download'];
$userService->trafficFetch($u, $d, $item['user_id'], $this->nodeInfo->toArray(), $this->nodeType); $userService->trafficFetch($u, $d, $k, $this->nodeInfo->toArray(), $this->nodeType);
} }
return response([ return response([
@ -101,28 +93,39 @@ class VProxyController extends Controller
{ {
switch ($this->nodeType) { switch ($this->nodeType) {
case 'shadowsocks': case 'shadowsocks':
die(json_encode([ $response = [
'server_port' => $this->nodeInfo->server_port, 'server_port' => $this->nodeInfo->server_port,
'cipher' => $this->nodeInfo->cipher, 'cipher' => $this->nodeInfo->cipher,
'obfs' => $this->nodeInfo->obfs, 'obfs' => $this->nodeInfo->obfs,
'obfs_settings' => $this->nodeInfo->obfs_settings 'obfs_settings' => $this->nodeInfo->obfs_settings
], JSON_UNESCAPED_UNICODE)); ];
break; break;
case 'v2ray': case 'v2ray':
die(json_encode([ $response = [
'server_port' => $this->nodeInfo->server_port, 'server_port' => $this->nodeInfo->server_port,
'network' => $this->nodeInfo->network, 'network' => $this->nodeInfo->network,
'cipher' => $this->nodeInfo->cipher, 'cipher' => $this->nodeInfo->cipher,
'networkSettings' => $this->nodeInfo->networkSettings, 'networkSettings' => $this->nodeInfo->networkSettings,
'tls' => $this->nodeInfo->tls 'tls' => $this->nodeInfo->tls
], JSON_UNESCAPED_UNICODE)); ];
break; break;
case 'trojan': case 'trojan':
die(json_encode([ $response = [
'host' => $this->nodeInfo->host, 'host' => $this->nodeInfo->host,
'server_port' => $this->nodeInfo->server_port 'server_port' => $this->nodeInfo->server_port,
], JSON_UNESCAPED_UNICODE)); 'server_name' => $this->nodeInfo->server_name
];
break; break;
} }
$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}\"");
} }
} }

View File

@ -4,6 +4,10 @@ namespace App\Utils;
class Helper class Helper
{ {
public static function uuidToBase64($uuid, $length)
{
return base64_encode(substr(str_replace('-', '', $uuid), 0, $length - 6));
}
public static function guid($format = false) public static function guid($format = false)
{ {
if (function_exists('com_create_guid') === true) { if (function_exists('com_create_guid') === true) {