mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 06:46:57 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			99 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			99 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Pterodactyl - Panel
 | 
						|
 * Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
 | 
						|
 *
 | 
						|
 * This software is licensed under the terms of the MIT license.
 | 
						|
 * https://opensource.org/licenses/MIT
 | 
						|
 */
 | 
						|
 | 
						|
namespace Pterodactyl\Http\Controllers\Admin\Nests;
 | 
						|
 | 
						|
use Illuminate\View\View;
 | 
						|
use Illuminate\Http\RedirectResponse;
 | 
						|
use Prologue\Alerts\AlertsMessageBag;
 | 
						|
use Pterodactyl\Http\Controllers\Controller;
 | 
						|
use Pterodactyl\Services\Eggs\Scripts\InstallScriptService;
 | 
						|
use Pterodactyl\Contracts\Repository\EggRepositoryInterface;
 | 
						|
use Pterodactyl\Http\Requests\Admin\Egg\EggScriptFormRequest;
 | 
						|
 | 
						|
class EggScriptController extends Controller
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @var \Prologue\Alerts\AlertsMessageBag
 | 
						|
     */
 | 
						|
    protected $alert;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var \Pterodactyl\Services\Eggs\Scripts\InstallScriptService
 | 
						|
     */
 | 
						|
    protected $installScriptService;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var \Pterodactyl\Contracts\Repository\EggRepositoryInterface
 | 
						|
     */
 | 
						|
    protected $repository;
 | 
						|
 | 
						|
    /**
 | 
						|
     * EggScriptController constructor.
 | 
						|
     *
 | 
						|
     * @param \Prologue\Alerts\AlertsMessageBag $alert
 | 
						|
     * @param \Pterodactyl\Contracts\Repository\EggRepositoryInterface $repository
 | 
						|
     * @param \Pterodactyl\Services\Eggs\Scripts\InstallScriptService $installScriptService
 | 
						|
     */
 | 
						|
    public function __construct(
 | 
						|
        AlertsMessageBag $alert,
 | 
						|
        EggRepositoryInterface $repository,
 | 
						|
        InstallScriptService $installScriptService
 | 
						|
    ) {
 | 
						|
        $this->alert = $alert;
 | 
						|
        $this->installScriptService = $installScriptService;
 | 
						|
        $this->repository = $repository;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Handle requests to render installation script for an Egg.
 | 
						|
     *
 | 
						|
     * @param int $egg
 | 
						|
     * @return \Illuminate\View\View
 | 
						|
     */
 | 
						|
    public function index(int $egg): View
 | 
						|
    {
 | 
						|
        $egg = $this->repository->getWithCopyAttributes($egg);
 | 
						|
        $copy = $this->repository->findWhere([
 | 
						|
            ['copy_script_from', '=', null],
 | 
						|
            ['nest_id', '=', $egg->nest_id],
 | 
						|
            ['id', '!=', $egg],
 | 
						|
        ]);
 | 
						|
 | 
						|
        $rely = $this->repository->findWhere([
 | 
						|
            ['copy_script_from', '=', $egg->id],
 | 
						|
        ]);
 | 
						|
 | 
						|
        return view('admin.eggs.scripts', [
 | 
						|
            'copyFromOptions' => $copy,
 | 
						|
            'relyOnScript' => $rely,
 | 
						|
            'egg' => $egg,
 | 
						|
        ]);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Handle a request to update the installation script for an Egg.
 | 
						|
     *
 | 
						|
     * @param \Pterodactyl\Http\Requests\Admin\Egg\EggScriptFormRequest $request
 | 
						|
     * @param int $egg
 | 
						|
     * @return \Illuminate\Http\RedirectResponse
 | 
						|
     *
 | 
						|
     * @throws \Pterodactyl\Exceptions\Model\DataValidationException
 | 
						|
     * @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
 | 
						|
     * @throws \Pterodactyl\Exceptions\Service\Egg\InvalidCopyFromException
 | 
						|
     */
 | 
						|
    public function update(EggScriptFormRequest $request, int $egg): RedirectResponse
 | 
						|
    {
 | 
						|
        $this->installScriptService->handle($egg, $request->normalize());
 | 
						|
        $this->alert->success(trans('admin/nests.eggs.notices.script_updated'))->flash();
 | 
						|
 | 
						|
        return redirect()->route('admin.nests.egg.scripts', $egg);
 | 
						|
    }
 | 
						|
}
 |