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