mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-19 21:04:44 +02:00
68 lines
4.6 KiB
PHP
68 lines
4.6 KiB
PHP
<?php
|
|
|
|
namespace App\Console\Commands\Node;
|
|
|
|
use App\Models\Node;
|
|
use Illuminate\Console\Command;
|
|
|
|
class MakeNodeCommand extends Command
|
|
{
|
|
protected $signature = 'p:node:make
|
|
{--name= : A name to identify the node.}
|
|
{--description= : A description to identify the node.}
|
|
{--locationId= : A valid locationId.}
|
|
{--fqdn= : The domain name (e.g node.example.com) to be used for connecting to the daemon. An IP address may only be used if you are not using SSL for this node.}
|
|
{--public= : Should the node be public or private? (public=1 / private=0).}
|
|
{--scheme= : Which scheme should be used? (Enable SSL=https / Disable SSL=http).}
|
|
{--proxy= : Is the daemon behind a proxy? (Yes=1 / No=0).}
|
|
{--maintenance= : Should maintenance mode be enabled? (Enable Maintenance mode=1 / Disable Maintenance mode=0).}
|
|
{--maxMemory= : Set the max memory amount.}
|
|
{--overallocateMemory= : Enter the amount of ram to overallocate (% or -1 to overallocate the maximum).}
|
|
{--maxDisk= : Set the max disk amount.}
|
|
{--overallocateDisk= : Enter the amount of disk to overallocate (% or -1 to overallocate the maximum).}
|
|
{--maxCpu= : Set the max cpu amount.}
|
|
{--overallocateCpu= : Enter the amount of cpu to overallocate (% or -1 to overallocate the maximum).}
|
|
{--uploadSize= : Enter the maximum upload filesize.}
|
|
{--daemonListeningPort= : Enter the daemon listening port.}
|
|
{--daemonSFTPPort= : Enter the daemon SFTP listening port.}
|
|
{--daemonSFTPAlias= : Enter the daemon SFTP alias.}
|
|
{--daemonBase= : Enter the base folder.}';
|
|
|
|
protected $description = 'Creates a new node on the system via the CLI.';
|
|
|
|
/**
|
|
* Handle the command execution process.
|
|
*
|
|
* @throws \App\Exceptions\Model\DataValidationException
|
|
*/
|
|
public function handle(): void
|
|
{
|
|
$data['name'] = $this->option('name') ?? $this->ask(trans('commands.make_node.name'));
|
|
$data['description'] = $this->option('description') ?? $this->ask(trans('commands.make_node.description'));
|
|
$data['scheme'] = $this->option('scheme') ?? $this->anticipate(
|
|
trans('commands.make_node.scheme'),
|
|
['https', 'http'],
|
|
'https'
|
|
);
|
|
|
|
$data['fqdn'] = $this->option('fqdn') ?? $this->ask(trans('commands.make_node.fqdn'));
|
|
$data['public'] = $this->option('public') ?? $this->confirm(trans('commands.make_node.public'), true);
|
|
$data['behind_proxy'] = $this->option('proxy') ?? $this->confirm(trans('commands.make_node.behind_proxy'));
|
|
$data['maintenance_mode'] = $this->option('maintenance') ?? $this->confirm(trans('commands.make_node.maintenance_mode'));
|
|
$data['memory'] = $this->option('maxMemory') ?? $this->ask(trans('commands.make_node.memory'), '0');
|
|
$data['memory_overallocate'] = $this->option('overallocateMemory') ?? $this->ask(trans('commands.make_node.memory_overallocate'), '-1');
|
|
$data['disk'] = $this->option('maxDisk') ?? $this->ask(trans('commands.make_node.disk'), '0');
|
|
$data['disk_overallocate'] = $this->option('overallocateDisk') ?? $this->ask(trans('commands.make_node.disk_overallocate'), '-1');
|
|
$data['cpu'] = $this->option('maxCpu') ?? $this->ask(trans('commands.make_node.cpu'), '0');
|
|
$data['cpu_overallocate'] = $this->option('overallocateCpu') ?? $this->ask(trans('commands.make_node.cpu_overallocate'), '-1');
|
|
$data['upload_size'] = $this->option('uploadSize') ?? $this->ask(trans('commands.make_node.upload_size'), '256');
|
|
$data['daemon_listen'] = $this->option('daemonListeningPort') ?? $this->ask(trans('commands.make_node.daemonListen'), '8080');
|
|
$data['daemon_sftp'] = $this->option('daemonSFTPPort') ?? $this->ask(trans('commands.make_node.daemonSFTP'), '2022');
|
|
$data['daemon_sftp_alias'] = $this->option('daemonSFTPAlias') ?? $this->ask(trans('commands.make_node.daemonSFTPAlias'), '');
|
|
$data['daemon_base'] = $this->option('daemonBase') ?? $this->ask(trans('commands.make_node.daemonBase'), '/var/lib/pelican/volumes');
|
|
|
|
$node = Node::create($data);
|
|
$this->line(trans('commands.make_node.success', ['name' => $data['name'], 'id' => $node->id]));
|
|
}
|
|
}
|