mirror of
				https://github.com/v2board/v2board.git
				synced 2025-10-31 17:31:49 +08:00 
			
		
		
		
	support trojan and more optimization
This commit is contained in:
		
							
								
								
									
										167
									
								
								app/Http/Controllers/Admin/Server/V2rayController.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										167
									
								
								app/Http/Controllers/Admin/Server/V2rayController.php
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,167 @@ | ||||
| <?php | ||||
|  | ||||
| namespace App\Http\Controllers\Admin\Server; | ||||
|  | ||||
| use App\Http\Requests\Admin\ServerV2raySave; | ||||
| use App\Http\Requests\Admin\ServerV2raySort; | ||||
| use App\Http\Requests\Admin\ServerV2rayUpdate; | ||||
| use App\Services\ServerService; | ||||
| use App\Utils\CacheKey; | ||||
| use Illuminate\Http\Request; | ||||
| use App\Http\Controllers\Controller; | ||||
| use App\Models\Server; | ||||
| use Illuminate\Support\Facades\Cache; | ||||
| use Illuminate\Support\Facades\DB; | ||||
|  | ||||
| class V2rayController extends Controller | ||||
| { | ||||
|     public function fetch(Request $request) | ||||
|     { | ||||
|         $server = Server::orderBy('sort', 'ASC')->get(); | ||||
|         for ($i = 0; $i < count($server); $i++) { | ||||
|             if (!empty($server[$i]['tags'])) { | ||||
|                 $server[$i]['tags'] = json_decode($server[$i]['tags']); | ||||
|             } | ||||
|             $server[$i]['group_id'] = json_decode($server[$i]['group_id']); | ||||
|             $server[$i]['online'] = Cache::get(CacheKey::get('SERVER_ONLINE_USER', $server[$i]['parent_id'] ? $server[$i]['parent_id'] : $server[$i]['id'])); | ||||
|             if ($server[$i]['parent_id']) { | ||||
|                 $server[$i]['last_check_at'] = Cache::get(CacheKey::get('SERVER_LAST_CHECK_AT', $server[$i]['parent_id'])); | ||||
|             } else { | ||||
|                 $server[$i]['last_check_at'] = Cache::get(CacheKey::get('SERVER_LAST_CHECK_AT', $server[$i]['id'])); | ||||
|             } | ||||
|         } | ||||
|         return response([ | ||||
|             'data' => $server | ||||
|         ]); | ||||
|     } | ||||
|  | ||||
|     public function save(ServerV2raySave $request) | ||||
|     { | ||||
|         $params = $request->only(array_keys(ServerV2raySave::RULES)); | ||||
|         $params['group_id'] = json_encode($params['group_id']); | ||||
|         if (isset($params['tags'])) { | ||||
|             $params['tags'] = json_encode($params['tags']); | ||||
|         } | ||||
|  | ||||
|         if (isset($params['dnsSettings'])) { | ||||
|             if (!is_object(json_decode($params['dnsSettings']))) { | ||||
|                 abort(500, 'DNS规则配置格式不正确'); | ||||
|             } | ||||
|         } | ||||
|  | ||||
|         if (isset($params['ruleSettings'])) { | ||||
|             if (!is_object(json_decode($params['ruleSettings']))) { | ||||
|                 abort(500, '审计规则配置格式不正确'); | ||||
|             } | ||||
|         } | ||||
|  | ||||
|         if (isset($params['networkSettings'])) { | ||||
|             if (!is_object(json_decode($params['networkSettings']))) { | ||||
|                 abort(500, '传输协议配置格式不正确'); | ||||
|             } | ||||
|         } | ||||
|  | ||||
|         if (isset($params['tlsSettings'])) { | ||||
|             if (!is_object(json_decode($params['tlsSettings']))) { | ||||
|                 abort(500, 'TLS配置格式不正确'); | ||||
|             } | ||||
|         } | ||||
|  | ||||
|         if ($request->input('id')) { | ||||
|             $server = Server::find($request->input('id')); | ||||
|             if (!$server) { | ||||
|                 abort(500, '服务器不存在'); | ||||
|             } | ||||
|             try { | ||||
|                 $server->update($params); | ||||
|             } catch (\Exception $e) { | ||||
|                 abort(500, '保存失败'); | ||||
|             } | ||||
|             return response([ | ||||
|                 'data' => true | ||||
|             ]); | ||||
|         } | ||||
|  | ||||
|         if (!Server::create($params)) { | ||||
|             abort(500, '创建失败'); | ||||
|         } | ||||
|  | ||||
|         return response([ | ||||
|             'data' => true | ||||
|         ]); | ||||
|     } | ||||
|  | ||||
|     public function drop(Request $request) | ||||
|     { | ||||
|         if ($request->input('id')) { | ||||
|             $server = Server::find($request->input('id')); | ||||
|             if (!$server) { | ||||
|                 abort(500, '节点ID不存在'); | ||||
|             } | ||||
|         } | ||||
|         return response([ | ||||
|             'data' => $server->delete() | ||||
|         ]); | ||||
|     } | ||||
|  | ||||
|     public function update(ServerV2rayUpdate $request) | ||||
|     { | ||||
|         $params = $request->only([ | ||||
|             'show', | ||||
|         ]); | ||||
|  | ||||
|         $server = Server::find($request->input('id')); | ||||
|  | ||||
|         if (!$server) { | ||||
|             abort(500, '该服务器不存在'); | ||||
|         } | ||||
|         try { | ||||
|             $server->update($params); | ||||
|         } catch (\Exception $e) { | ||||
|             abort(500, '保存失败'); | ||||
|         } | ||||
|  | ||||
|         return response([ | ||||
|             'data' => true | ||||
|         ]); | ||||
|     } | ||||
|  | ||||
|     public function copy(Request $request) | ||||
|     { | ||||
|         $server = Server::find($request->input('id')); | ||||
|         if (!$server) { | ||||
|             abort(500, '服务器不存在'); | ||||
|         } | ||||
|         if (!Server::create($server->toArray())) { | ||||
|             abort(500, '复制失败'); | ||||
|         } | ||||
|  | ||||
|         return response([ | ||||
|             'data' => true | ||||
|         ]); | ||||
|     } | ||||
|  | ||||
|     public function viewConfig(Request $request) | ||||
|     { | ||||
|         $serverService = new ServerService(); | ||||
|         $config = $serverService->getConfig($request->input('node_id'), 23333); | ||||
|         return response([ | ||||
|             'data' => $config | ||||
|         ]); | ||||
|     } | ||||
|  | ||||
|     public function sort(ServerV2raySort $request) | ||||
|     { | ||||
|         DB::beginTransaction(); | ||||
|         foreach ($request->input('server_ids') as $k => $v) { | ||||
|             if (!Server::find($v)->update(['sort' => $k + 1])) { | ||||
|                 DB::rollBack(); | ||||
|                 abort(500, '保存失败'); | ||||
|             } | ||||
|         } | ||||
|         DB::commit(); | ||||
|         return response([ | ||||
|             'data' => true | ||||
|         ]); | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user