mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 02:36:53 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			91 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			91 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Http\Controllers\Api\Client\Servers;
 | 
						|
 | 
						|
use Illuminate\Http\Response;
 | 
						|
use App\Models\Server;
 | 
						|
use Illuminate\Http\JsonResponse;
 | 
						|
use App\Facades\Activity;
 | 
						|
use App\Services\Servers\ReinstallServerService;
 | 
						|
use App\Http\Controllers\Api\Client\ClientApiController;
 | 
						|
use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
 | 
						|
use App\Http\Requests\Api\Client\Servers\Settings\RenameServerRequest;
 | 
						|
use App\Http\Requests\Api\Client\Servers\Settings\SetDockerImageRequest;
 | 
						|
use App\Http\Requests\Api\Client\Servers\Settings\ReinstallServerRequest;
 | 
						|
 | 
						|
class SettingsController extends ClientApiController
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * SettingsController constructor.
 | 
						|
     */
 | 
						|
    public function __construct(
 | 
						|
        private ReinstallServerService $reinstallServerService
 | 
						|
    ) {
 | 
						|
        parent::__construct();
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Renames a server.
 | 
						|
     */
 | 
						|
    public function rename(RenameServerRequest $request, Server $server): JsonResponse
 | 
						|
    {
 | 
						|
        $name = $request->input('name');
 | 
						|
        $description = $request->has('description') ? (string) $request->input('description') : $server->description;
 | 
						|
 | 
						|
        $server->name = $name;
 | 
						|
        $server->description = $description;
 | 
						|
        $server->save();
 | 
						|
 | 
						|
        if ($server->name !== $name) {
 | 
						|
            Activity::event('server:settings.rename')
 | 
						|
                ->property(['old' => $server->name, 'new' => $name])
 | 
						|
                ->log();
 | 
						|
        }
 | 
						|
 | 
						|
        if ($server->description !== $description) {
 | 
						|
            Activity::event('server:settings.description')
 | 
						|
                ->property(['old' => $server->description, 'new' => $description])
 | 
						|
                ->log();
 | 
						|
        }
 | 
						|
 | 
						|
        return new JsonResponse([], Response::HTTP_NO_CONTENT);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Reinstalls the server on the daemon.
 | 
						|
     *
 | 
						|
     * @throws \Throwable
 | 
						|
     */
 | 
						|
    public function reinstall(ReinstallServerRequest $request, Server $server): JsonResponse
 | 
						|
    {
 | 
						|
        $this->reinstallServerService->handle($server);
 | 
						|
 | 
						|
        Activity::event('server:reinstall')->log();
 | 
						|
 | 
						|
        return new JsonResponse([], Response::HTTP_ACCEPTED);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Changes the Docker image in use by the server.
 | 
						|
     *
 | 
						|
     * @throws \Throwable
 | 
						|
     */
 | 
						|
    public function dockerImage(SetDockerImageRequest $request, Server $server): JsonResponse
 | 
						|
    {
 | 
						|
        if (!in_array($server->image, array_values($server->egg->docker_images))) {
 | 
						|
            throw new BadRequestHttpException('This server\'s Docker image has been manually set by an administrator and cannot be updated.');
 | 
						|
        }
 | 
						|
 | 
						|
        $original = $server->image;
 | 
						|
        $server->forceFill(['image' => $request->input('docker_image')])->saveOrFail();
 | 
						|
 | 
						|
        if ($original !== $server->image) {
 | 
						|
            Activity::event('server:startup.image')
 | 
						|
                ->property(['old' => $original, 'new' => $request->input('docker_image')])
 | 
						|
                ->log();
 | 
						|
        }
 | 
						|
 | 
						|
        return new JsonResponse([], Response::HTTP_NO_CONTENT);
 | 
						|
    }
 | 
						|
}
 |