mirror of
				https://github.com/v2board/v2board.git
				synced 2025-10-31 09:21:46 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			102 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			102 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Controllers\Admin\Server;
 | |
| 
 | |
| use App\Http\Requests\Admin\ServerV2raySave;
 | |
| use App\Http\Requests\Admin\ServerV2rayUpdate;
 | |
| use App\Services\ServerService;
 | |
| use Illuminate\Http\Request;
 | |
| use App\Http\Controllers\Controller;
 | |
| use App\Models\ServerV2ray;
 | |
| 
 | |
| class V2rayController extends Controller
 | |
| {
 | |
|     public function save(ServerV2raySave $request)
 | |
|     {
 | |
|         $params = $request->validated();
 | |
| 
 | |
|         if ($request->input('id')) {
 | |
|             $server = ServerV2ray::find($request->input('id'));
 | |
|             if (!$server) {
 | |
|                 abort(500, '服务器不存在');
 | |
|             }
 | |
|             try {
 | |
|                 $server->update($params);
 | |
|             } catch (\Exception $e) {
 | |
|                 abort(500, '保存失败');
 | |
|             }
 | |
|             return response([
 | |
|                 'data' => true
 | |
|             ]);
 | |
|         }
 | |
| 
 | |
|         if (!ServerV2ray::create($params)) {
 | |
|             abort(500, '创建失败');
 | |
|         }
 | |
| 
 | |
|         return response([
 | |
|             'data' => true
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     public function drop(Request $request)
 | |
|     {
 | |
|         if ($request->input('id')) {
 | |
|             $server = ServerV2ray::find($request->input('id'));
 | |
|             if (!$server) {
 | |
|                 abort(500, '节点ID不存在');
 | |
|             }
 | |
|         }
 | |
|         return response([
 | |
|             'data' => $server->delete()
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     public function update(ServerV2rayUpdate $request)
 | |
|     {
 | |
|         $params = $request->only([
 | |
|             'show',
 | |
|         ]);
 | |
| 
 | |
|         $server = ServerV2ray::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 = ServerV2ray::find($request->input('id'));
 | |
|         $server->show = 0;
 | |
|         if (!$server) {
 | |
|             abort(500, '服务器不存在');
 | |
|         }
 | |
|         if (!ServerV2ray::create($server->toArray())) {
 | |
|             abort(500, '复制失败');
 | |
|         }
 | |
| 
 | |
|         return response([
 | |
|             'data' => true
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     public function viewConfig(Request $request)
 | |
|     {
 | |
|         $serverService = new ServerService();
 | |
|         $config = $serverService->getV2RayConfig($request->input('node_id'), 23333);
 | |
|         return response([
 | |
|             'data' => $config
 | |
|         ]);
 | |
|     }
 | |
| }
 |