2024-03-31 01:06:49 -04:00

109 lines
4.6 KiB
PHP

<?php
namespace App\Filament\Resources\NodeResource\Pages;
use App\Filament\Resources\NodeResource;
use App\Models\Node;
use Filament\Actions\Action;
use Filament\Forms;
use Filament\Notifications\Notification;
use Filament\Resources\Pages\CreateRecord;
use Illuminate\Support\HtmlString;
class CreateNode extends CreateRecord
{
protected static string $resource = NodeResource::class;
protected static bool $canCreateAnother = false;
public function form(Forms\Form $form): Forms\Form
{
return $form
->columns(4)
->schema([
Forms\Components\TextInput::make('fqdn')
->columnSpan(2)
->required()
->autofocus()
->live(debounce: 500)
->rule('prohibited', fn ($state) => is_ip($state) && request()->isSecure())
->label(fn ($state) => is_ip($state) ? 'IP Address' : 'Domain Name')
->placeholder(fn ($state) => is_ip($state) ? '192.168.1.1' : 'node.example.com')
->helperText(fn ($state) => is_ip($state) && request()->isSecure() ? '
Your panel is currently secured via an SSL certificate and that means your nodes require one too.
You must use a domain name, because you cannot get SSL certificates for IP Addresses'
: '')
->hintColor('danger')
->hint(function ($state) {
if (is_ip($state) && request()->isSecure()) {
return 'You cannot connect to an IP Address over SSL';
}
// if (!is_ip($state) && !empty($state) && !checkdnsrr("$state.", 'A')) {
// return 'Your hostname does not have a valid A record';
// }
return '';
})
->afterStateUpdated(function (Forms\Set $set, ?string $state) {
[$subdomain] = str($state)->explode('.', 2);
if (!is_numeric($subdomain)) {
$set('name', $subdomain);
}
})
->maxLength(191),
Forms\Components\TextInput::make('daemonListen')
->columns(1)
->label('Port')
->helperText('If you are running the daemon behind Cloudflare you should set the daemon port to 8443 to allow websocket proxying over SSL.')
->minValue(0)
->maxValue(65536)
->default(8080)
->required()
->integer(),
Forms\Components\ToggleButtons::make('scheme')
->label('Communicate over SSL')
->required()
->inline()
->helperText(function (Forms\Get $get) {
if (request()->isSecure()) {
return 'Your Panel is using a secure (SSL/TLS) connection, therefore your Daemon has to as well.';
}
if (is_ip($get('fqdn'))) {
return 'An IP address cannot use SSL.';
}
return '';
})
->disableOptionWhen(fn (string $value): bool => $value === 'http' && request()->isSecure())
->options([
'http' => 'HTTP',
'https' => 'HTTPS (SSL)',
])
->colors([
'http' => 'warning',
'https' => 'success',
])
->icons([
'http' => 'tabler-lock-open-off',
'https' => 'tabler-lock',
])
->default(fn () => request()->isSecure() ? 'https' : 'http'),
Forms\Components\TextInput::make('name')
->required()
->columnSpanFull()
->regex('/[a-zA-Z0-9_\.\- ]+/')
->helperText('This is just a display name and can be changed later. Character limits: a-Z, 0-9, and [.-_ ]')
->maxLength(100),
Forms\Components\Textarea::make('description')
->hidden()
->columnSpanFull()
->rows(5),
Forms\Components\Hidden::make('skipValidation')->default(true),
]);
}
}