mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 11:06:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			108 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			108 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Pterodactyl\Http\Controllers\Daemon;
 | 
						|
 | 
						|
use Cache;
 | 
						|
use Illuminate\Http\Request;
 | 
						|
use Pterodactyl\Models\Node;
 | 
						|
use Illuminate\Http\Response;
 | 
						|
use Pterodactyl\Models\Server;
 | 
						|
use Illuminate\Http\JsonResponse;
 | 
						|
use Pterodactyl\Http\Controllers\Controller;
 | 
						|
use Pterodactyl\Repositories\Eloquent\ServerRepository;
 | 
						|
use Pterodactyl\Events\Server\Installed as ServerInstalled;
 | 
						|
use Illuminate\Contracts\Events\Dispatcher as EventDispatcher;
 | 
						|
use Pterodactyl\Exceptions\Repository\RecordNotFoundException;
 | 
						|
 | 
						|
class ActionController extends Controller
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @var \Illuminate\Contracts\Events\Dispatcher
 | 
						|
     */
 | 
						|
    private $eventDispatcher;
 | 
						|
    /**
 | 
						|
     * @var \Pterodactyl\Repositories\Eloquent\ServerRepository
 | 
						|
     */
 | 
						|
    private $repository;
 | 
						|
 | 
						|
    /**
 | 
						|
     * ActionController constructor.
 | 
						|
     *
 | 
						|
     * @param \Pterodactyl\Repositories\Eloquent\ServerRepository $repository
 | 
						|
     * @param \Illuminate\Contracts\Events\Dispatcher             $eventDispatcher
 | 
						|
     */
 | 
						|
    public function __construct(ServerRepository $repository, EventDispatcher $eventDispatcher)
 | 
						|
    {
 | 
						|
        $this->eventDispatcher = $eventDispatcher;
 | 
						|
        $this->repository = $repository;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Handles install toggle request from daemon.
 | 
						|
     *
 | 
						|
     * @param \Illuminate\Http\Request $request
 | 
						|
     * @return \Illuminate\Http\JsonResponse
 | 
						|
     *
 | 
						|
     * @throws \Pterodactyl\Exceptions\Model\DataValidationException
 | 
						|
     * @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
 | 
						|
     */
 | 
						|
    public function markInstall(Request $request): JsonResponse
 | 
						|
    {
 | 
						|
        try {
 | 
						|
            /** @var \Pterodactyl\Models\Server $server */
 | 
						|
            $server = $this->repository->findFirstWhere([
 | 
						|
                'uuid' => $request->input('server'),
 | 
						|
            ]);
 | 
						|
        } catch (RecordNotFoundException $exception) {
 | 
						|
            return JsonResponse::create([
 | 
						|
                'error' => 'No server by that ID was found on the system.',
 | 
						|
            ], Response::HTTP_UNPROCESSABLE_ENTITY);
 | 
						|
        }
 | 
						|
 | 
						|
        if (! $server->relationLoaded('node')) {
 | 
						|
            $server->load('node');
 | 
						|
        }
 | 
						|
 | 
						|
        $hmac = $request->input('signed');
 | 
						|
        $status = $request->input('installed');
 | 
						|
 | 
						|
        if (! hash_equals(base64_decode($hmac), hash_hmac('sha256', $server->uuid, $server->getRelation('node')->daemonSecret, true))) {
 | 
						|
            return JsonResponse::create([
 | 
						|
                'error' => 'Signed HMAC was invalid.',
 | 
						|
            ], Response::HTTP_FORBIDDEN);
 | 
						|
        }
 | 
						|
 | 
						|
        $this->repository->update($server->id, [
 | 
						|
            'installed' => ($status === 'installed') ? 1 : 2,
 | 
						|
        ], true, true);
 | 
						|
 | 
						|
        // Only fire event if server installed successfully.
 | 
						|
        if ($status === 'installed') {
 | 
						|
            $this->eventDispatcher->dispatch(new ServerInstalled($server));
 | 
						|
        }
 | 
						|
 | 
						|
        // Don't use a 204 here, the daemon is hard-checking for a 200 code.
 | 
						|
        return JsonResponse::create([]);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Handles configuration data request from daemon.
 | 
						|
     *
 | 
						|
     * @param \Illuminate\Http\Request $request
 | 
						|
     * @param string                   $token
 | 
						|
     * @return \Illuminate\Http\JsonResponse|\Illuminate\Http\Response
 | 
						|
     */
 | 
						|
    public function configuration(Request $request, $token)
 | 
						|
    {
 | 
						|
        $nodeId = Cache::pull('Node:Configuration:' . $token);
 | 
						|
        if (is_null($nodeId)) {
 | 
						|
            return response()->json(['error' => 'token_invalid'], 403);
 | 
						|
        }
 | 
						|
 | 
						|
        $node = Node::findOrFail($nodeId);
 | 
						|
 | 
						|
        // Manually as getConfigurationAsJson() returns it in correct format already
 | 
						|
        return response($node->getConfigurationAsJson())->header('Content-Type', 'text/json');
 | 
						|
    }
 | 
						|
}
 |