mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 06:24:44 +02:00

Co-authored-by: Boy132 <Boy132@users.noreply.github.com> Co-authored-by: Lance Pioch <git@lance.sh> Co-authored-by: RMartinOscar <40749467+RMartinOscar@users.noreply.github.com>
65 lines
2.0 KiB
PHP
65 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace App\Extensions\Features;
|
|
|
|
use Filament\Actions\Action;
|
|
use Illuminate\Foundation\Application;
|
|
use Illuminate\Support\Facades\Blade;
|
|
use Illuminate\Support\HtmlString;
|
|
|
|
class SteamDiskSpace extends FeatureProvider
|
|
{
|
|
public function __construct(protected Application $app)
|
|
{
|
|
parent::__construct($app);
|
|
}
|
|
|
|
/** @return array<string> */
|
|
public function getListeners(): array
|
|
{
|
|
return [
|
|
'steamcmd needs 250mb of free disk space to update',
|
|
'0x202 after update job',
|
|
];
|
|
}
|
|
|
|
public function getId(): string
|
|
{
|
|
return 'steam_disk_space';
|
|
}
|
|
|
|
public function getAction(): Action
|
|
{
|
|
return Action::make($this->getId())
|
|
->requiresConfirmation()
|
|
->modalHeading('Out of available disk space...')
|
|
->modalDescription(new HtmlString(Blade::render(
|
|
auth()->user()->isAdmin() ? <<<'HTML'
|
|
<p>
|
|
This server has run out of available disk space and cannot complete the install or update
|
|
process.
|
|
</p>
|
|
<p class="mt-4">
|
|
Ensure the machine has enough disk space by typing{' '}
|
|
<code class="rounded py-1 px-2">df -h</code> on the machine hosting
|
|
this server. Delete files or increase the available disk space to resolve the issue.
|
|
</p>
|
|
HTML
|
|
:
|
|
<<<'HTML'
|
|
<p>
|
|
This server has run out of available disk space and cannot complete the install or update
|
|
process. Please get in touch with the administrator(s) and inform them of disk space issues.
|
|
</p>
|
|
HTML
|
|
)))
|
|
->modalCancelActionLabel('Close')
|
|
->action(fn () => null);
|
|
}
|
|
|
|
public static function register(Application $app): self
|
|
{
|
|
return new self($app);
|
|
}
|
|
}
|