mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 03:36:53 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			61 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Http\Controllers\Api\Application\Servers;
 | 
						|
 | 
						|
use Illuminate\Http\Response;
 | 
						|
use App\Models\Server;
 | 
						|
use App\Services\Servers\SuspensionService;
 | 
						|
use App\Services\Servers\ReinstallServerService;
 | 
						|
use App\Http\Requests\Api\Application\Servers\ServerWriteRequest;
 | 
						|
use App\Http\Controllers\Api\Application\ApplicationApiController;
 | 
						|
 | 
						|
class ServerManagementController extends ApplicationApiController
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * ServerManagementController constructor.
 | 
						|
     */
 | 
						|
    public function __construct(
 | 
						|
        private ReinstallServerService $reinstallServerService,
 | 
						|
        private SuspensionService $suspensionService
 | 
						|
    ) {
 | 
						|
        parent::__construct();
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Suspend a server on the Panel.
 | 
						|
     *
 | 
						|
     * @throws \Throwable
 | 
						|
     */
 | 
						|
    public function suspend(ServerWriteRequest $request, Server $server): Response
 | 
						|
    {
 | 
						|
        $this->suspensionService->toggle($server);
 | 
						|
 | 
						|
        return $this->returnNoContent();
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Unsuspend a server on the Panel.
 | 
						|
     *
 | 
						|
     * @throws \Throwable
 | 
						|
     */
 | 
						|
    public function unsuspend(ServerWriteRequest $request, Server $server): Response
 | 
						|
    {
 | 
						|
        $this->suspensionService->toggle($server, SuspensionService::ACTION_UNSUSPEND);
 | 
						|
 | 
						|
        return $this->returnNoContent();
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Mark a server as needing to be reinstalled.
 | 
						|
     *
 | 
						|
     * @throws \App\Exceptions\DisplayException
 | 
						|
     * @throws \App\Exceptions\Model\DataValidationException
 | 
						|
     */
 | 
						|
    public function reinstall(ServerWriteRequest $request, Server $server): Response
 | 
						|
    {
 | 
						|
        $this->reinstallServerService->handle($server);
 | 
						|
 | 
						|
        return $this->returnNoContent();
 | 
						|
    }
 | 
						|
}
 |