peliprint/app/Http/Controllers/Admin/Extensions/Blueprint/BlueprintExtensionController.php

99 lines
3.2 KiB
PHP
Raw Normal View History

<?php
namespace Pterodactyl\Http\Controllers\Admin\Extensions\Blueprint;
use Illuminate\View\View;
use Illuminate\View\Factory as ViewFactory;
use Prologue\Alerts\AlertsMessageBag;
use Illuminate\Contracts\Console\Kernel;
use Pterodactyl\Http\Controllers\Controller;
use Pterodactyl\Services\Helpers\SoftwareVersionService;
use Pterodactyl\BlueprintFramework\Services\VariableService\BlueprintVariableService;
use Pterodactyl\BlueprintFramework\Services\TelemetryService\BlueprintTelemetryService;
use Pterodactyl\BlueprintFramework\Libraries\ExtensionLibrary\Admin\BlueprintAdminLibrary as BlueprintExtensionLibrary;
use Pterodactyl\BlueprintFramework\Services\PlaceholderService\BlueprintPlaceholderService;
use Pterodactyl\Contracts\Repository\SettingsRepositoryInterface;
use Illuminate\Contracts\Config\Repository as ConfigRepository;
use Illuminate\Http\RedirectResponse;
use Pterodactyl\Http\Requests\Admin\AdminFormRequest;
class BlueprintExtensionController extends Controller
{
/**
* BlueprintExtensionController constructor.
*/
public function __construct(
private BlueprintVariableService $bp,
private BlueprintTelemetryService $telemetry,
private BlueprintExtensionLibrary $bplib,
private BlueprintPlaceholderService $placeholderservice,
private SoftwareVersionService $version,
private ViewFactory $view,
private Kernel $kernel,
private AlertsMessageBag $alert,
private ConfigRepository $config,
private SettingsRepositoryInterface $settings,
) {
}
/**
* Return the admin index view.
*/
public function index(): View
{
// Sync developer mode option with the core of Blueprint.
$this->bp->config('DEVELOPER', $this->settings->get('blueprint::developer'));
return $this->view->make(
'admin.extensions.blueprint.index', [
'version' => $this->version,
'bp' => $this->bp,
'bplib' => $this->bplib,
'telemetry' => $this->telemetry,
'root' => "/admin/extensions/blueprint",
]
);
}
/**
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
*/
public function update(BlueprintAdminFormRequest $request): RedirectResponse
{
foreach ($request->normalize() as $key => $value) {
$this->settings->set('blueprint::' . $key, $value);
}
// Confirm that the database value changes have been applied.
$this->bplib->notify("Your changes have been saved.");
// Redirect back to the page the user was on.
return redirect()->route('admin.extensions.blueprint.index');
}
}
class BlueprintAdminFormRequest extends AdminFormRequest
{
// Form validation for settings on the Blueprint admin page.
// This is included in the controller directly as that
// simplifies my work.
public function rules(): array {
return [
'placeholder' => 'string',
'developer' => 'string',
'telemetry' => 'string',
];
}
public function attributes(): array {
return [
'placeholder' => 'Placeholder Value',
'developer' => 'Developer Mode',
'telemetry' => 'Telemetry',
];
}
}