finished check ping
Signed-off-by: tracer <tracer@24unix.net>
This commit is contained in:
parent
115a42baa3
commit
504992bf21
|
@ -2,8 +2,9 @@
|
||||||
|
|
||||||
namespace App\Controller;
|
namespace App\Controller;
|
||||||
|
|
||||||
define('COLOR_YELLOW', "\033[33m");
|
define('COLOR_RED', "\033[31m");
|
||||||
define('COLOR_GREEN', "\033[32m");
|
define('COLOR_GREEN', "\033[32m");
|
||||||
|
define('COLOR_YELLOW', "\033[33m");
|
||||||
define('COLOR_DEFAULT', "\033[39m");
|
define('COLOR_DEFAULT', "\033[39m");
|
||||||
|
|
||||||
// TODO add to all Controllers
|
// TODO add to all Controllers
|
||||||
|
@ -24,22 +25,24 @@ if (php_sapi_name() !== 'cli') {
|
||||||
class BindAPI
|
class BindAPI
|
||||||
{
|
{
|
||||||
private DatabaseConnection $databaseConnection;
|
private DatabaseConnection $databaseConnection;
|
||||||
private ApiUsers $apiUsers;
|
private ApiKeys $apiUsers;
|
||||||
private DomainController $domainController;
|
private DomainController $domainController;
|
||||||
private PanelController $panelController;
|
private PanelController $panelController;
|
||||||
private NameserverController $nameserverController;
|
private NameserverController $nameserverController;
|
||||||
private CheckController $checkController;
|
private CheckController $checkController;
|
||||||
|
|
||||||
public function __construct(private array $config, private int $argc, private array $argv)
|
|
||||||
|
public function __construct(private array $config, private int $argumentsCount, private array $arguments)
|
||||||
{
|
{
|
||||||
$this->databaseConnection = new DatabaseConnection(config: $this->config);
|
$this->databaseConnection = new DatabaseConnection(config: $this->config);
|
||||||
$this->panelController = new PanelController($this->databaseConnection);
|
$this->panelController = new PanelController($this->databaseConnection);
|
||||||
$this->apiUsers = new ApiUsers($this->databaseConnection);
|
$this->apiUsers = new ApiKeys($this->databaseConnection);
|
||||||
$this->domainController = new DomainController($this->databaseConnection);
|
$this->domainController = new DomainController($this->databaseConnection);
|
||||||
$this->nameserverController = new NameserverController($this->databaseConnection);
|
$this->nameserverController = new NameserverController($this->databaseConnection);
|
||||||
$this->checkController = new CheckController();
|
$this->checkController = new CheckController();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param bool|array $panel
|
* @param bool|array $panel
|
||||||
*
|
*
|
||||||
|
@ -47,33 +50,61 @@ class BindAPI
|
||||||
*/
|
*/
|
||||||
public function checkPing(bool|array $panel): Bool
|
public function checkPing(bool|array $panel): Bool
|
||||||
{
|
{
|
||||||
|
// TODO nicer format: select max(length(name)) from panels;
|
||||||
|
$maxName = $this->panelController->getLongestEntry(field: 'name');
|
||||||
|
$maxA = $this->panelController->getLongestEntry(field: 'a');
|
||||||
|
$maxAAAA = $this->panelController->getLongestEntry(field: 'aaaa');
|
||||||
|
|
||||||
$error = false;
|
$error = false;
|
||||||
|
|
||||||
|
if ($this->config['verbose']) {
|
||||||
|
print(COLOR_YELLOW . str_pad(string: $panel['name'], length: $maxName));
|
||||||
|
}
|
||||||
|
|
||||||
$a = $panel['a'] ?? '';
|
$a = $panel['a'] ?? '';
|
||||||
print(COLOR_YELLOW . $panel['name']);
|
|
||||||
if (!empty($a)) {
|
if (!empty($a)) {
|
||||||
if ($this->checkController->sendCommand(serverName: $panel['name'], versionIP: 4, apiKey: $panel['apikey'], command: 'ping')) {
|
if ($this->config['verbose']) {
|
||||||
// TODO if verbose …
|
echo COLOR_DEFAULT . ' ' . str_pad(string: $a, length: $maxA, pad_type: STR_PAD_LEFT) . ' ';
|
||||||
print(COLOR_DEFAULT . ' ' . $panel['a'] . ': ' . COLOR_GREEN . 'pong');
|
}
|
||||||
|
if ($result = $this->checkController->sendCommand(serverName: $panel['name'], versionIP: 4, apiKey: $panel['apikey'], command: 'ping')) {
|
||||||
|
if ($this->config['verbose']) {
|
||||||
|
if ($result == 'pong') {
|
||||||
|
echo COLOR_GREEN . $result;
|
||||||
|
} else {
|
||||||
|
echo COLOR_RED . $result;
|
||||||
|
}
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
$error = true;
|
$error = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$aaaa = $panel['aaaa'] ?? '';
|
$aaaa = $panel['aaaa'] ?? '';
|
||||||
if (!empty($aaaa)) {
|
if (!empty($aaaa)) {
|
||||||
if ($this->checkController->sendCommand(serverName: $panel['name'], versionIP: 6, apiKey: $panel['apikey'], command: 'ping')) {
|
if ($this->config['verbose']) {
|
||||||
// if verbose …
|
echo COLOR_DEFAULT . ' ' . str_pad(string: $aaaa, length: $maxAAAA, pad_type: STR_PAD_LEFT);
|
||||||
print(COLOR_DEFAULT . ' ' . $panel['aaaa'] . ': ' . COLOR_GREEN . 'pong' . PHP_EOL);
|
}
|
||||||
|
if ($result = $this->checkController->sendCommand(serverName: $panel['name'], versionIP: 6, apiKey: $panel['apikey'], command: 'ping')) {
|
||||||
|
if ($this->config['verbose']) {
|
||||||
|
if ($result == 'pong') {
|
||||||
|
echo COLOR_GREEN . $result;
|
||||||
|
} else {
|
||||||
|
echo COLOR_RED . $result;
|
||||||
|
}
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
$error = true;
|
$error = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if ($this->config['verbose']) {
|
||||||
|
echo PHP_EOL;
|
||||||
|
}
|
||||||
return $error;
|
return $error;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function handleCheck(String $subcommand)
|
function handleChecks(String $subcommand)
|
||||||
{
|
{
|
||||||
|
print("hable");
|
||||||
try {
|
try {
|
||||||
match ($subcommand) {
|
match ($subcommand) {
|
||||||
'permissions' => $this->handleCheckPermissions(),
|
'permissions' => $this->handleCheckPermissions(),
|
||||||
|
@ -85,21 +116,21 @@ class BindAPI
|
||||||
|
|
||||||
function handleCheckPermissions()
|
function handleCheckPermissions()
|
||||||
{
|
{
|
||||||
$test = fgets(STDIN);
|
$test = fgets(stream: STDIN);
|
||||||
echo "received: $test" . PHP_EOL;
|
echo "received: $test" . PHP_EOL;
|
||||||
}
|
}
|
||||||
|
|
||||||
function runCommand()
|
function runCommand()
|
||||||
{
|
{
|
||||||
if ($this->argc < 2) {
|
if ($this->argumentsCount < 1) {
|
||||||
$this->showUsage();
|
$this->showUsage();
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (str_contains(haystack: $this->argv[1], needle: ':')) {
|
if (str_contains(haystack: $this->arguments[0], needle: ':')) {
|
||||||
[$command, $subcommand] = explode(separator: ':', string: $this->argv[1]);
|
[$command, $subcommand] = explode(separator: ':', string: $this->arguments[0]);
|
||||||
} else {
|
} else {
|
||||||
$command = $this->argv[1];
|
$command = $this->arguments[0];
|
||||||
$subcommand = '';
|
$subcommand = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -123,31 +154,38 @@ class BindAPI
|
||||||
function showUsage(): void
|
function showUsage(): void
|
||||||
{
|
{
|
||||||
echo 'Usage' . PHP_EOL;
|
echo 'Usage' . PHP_EOL;
|
||||||
echo "\033[33mcheck\t\t\033[39mhealth checks the system can perform" . PHP_EOL;
|
echo COLOR_YELLOW . "check" . COLOR_DEFAULT . "\t health checks the system can perform" . PHP_EOL;
|
||||||
echo "\033[32m\tcheck:permissions" . PHP_EOL;
|
echo COLOR_GREEN . "\t check:permissions" . PHP_EOL;
|
||||||
echo "\033[32m\tcheck:panel {ID}" . PHP_EOL;
|
echo COLOR_GREEN . "\t check:panels {ID}" . PHP_EOL;
|
||||||
echo "\033[32m\tcheck:domains {ID}" . PHP_EOL;
|
echo COLOR_GREEN . "\t check:domains {ID}" . PHP_EOL;
|
||||||
echo "\033[33mpanels\t\033[39mall Keyhelp systems configured" . PHP_EOL;
|
|
||||||
echo "\033[32m\tpanels:list" . PHP_EOL;
|
echo COLOR_YELLOW . "panels" . COLOR_DEFAULT . "\t all Keyhelp systems configured" . PHP_EOL;
|
||||||
echo "\033[32m\tpanels:apiping {<ID>}" . PHP_EOL;
|
echo COLOR_GREEN . "\t panels:list" . PHP_EOL;
|
||||||
echo "\033[32m\tpanels:create <name> {A=<IPv4>} {AAAA=<IPv6>} {apikey=<API-Key>}" . PHP_EOL;
|
echo COLOR_GREEN . "\t panels:create <name> {A=<IPv4>} {AAAA=<IPv6>} {apikey=<API-Key>}" . PHP_EOL;
|
||||||
echo "\033[32m\tpanels:update <ID> {name=<name>} {A=<IPv4>} {AAAA=<IPv6>} {apikey=<API-Key>}" . PHP_EOL;
|
echo COLOR_GREEN . "\t panels:update <ID> {name=<name>} {A=<IPv4>} {AAAA=<IPv6>} {apikey=<API-Key>}" . PHP_EOL;
|
||||||
echo "\033[32m\tpanels:delete" . PHP_EOL;
|
echo COLOR_GREEN . "\t panels:delete" . PHP_EOL;
|
||||||
echo "\033[33mapikeys\t\033[39mAPI keys for other nameservers" . PHP_EOL;
|
echo COLOR_GREEN . "\t panels:apiping {<ID>}" . PHP_EOL;
|
||||||
echo "\033[32m\tapikeys:list" . PHP_EOL;
|
|
||||||
echo "\033[32m\tapikeys:create" . PHP_EOL;
|
echo COLOR_YELLOW . "nameservers" . COLOR_DEFAULT . " available nameservers" . PHP_EOL;
|
||||||
echo "\033[32m\tapikeys:delete <ID>" . PHP_EOL;
|
echo COLOR_GREEN . "\t nameservers:list" . PHP_EOL;
|
||||||
echo "\033[33mnameservers\t\033[39mother nameservers" . PHP_EOL;
|
echo COLOR_GREEN . "\t nameservers:create <name> {A=<IPv4>} {AAAA=<IPv6>} {apikey=<API-Key>}" . PHP_EOL;
|
||||||
echo "\033[32m\tnameservers:list" . PHP_EOL;
|
echo COLOR_GREEN . "\t nameservers:update <ID> {name=<name>} {A=<IPv4>} {AAAA=<IPv6>} {apikey=<API-Key>}" . PHP_EOL;
|
||||||
echo "\033[32m\tnameservers:create <name> {A=<IPv4>} {AAAA=<IPv6>} {apikey=<API-Key>}" . PHP_EOL;
|
echo COLOR_GREEN . "\t nameservers:delete <ID>" . PHP_EOL;
|
||||||
echo "\033[32m\tnameservers:update <ID> {name=<name>} {A=<IPv4>} {AAAA=<IPv6>} {apikey=<API-Key>}" . PHP_EOL;
|
echo COLOR_GREEN . "\t nameservers:apiping {<ID>}" . PHP_EOL;
|
||||||
echo "\033[32m\tnameservers:delete <ID>" . PHP_EOL;
|
|
||||||
echo "\033[33mdomains\t\033[39mdomains this server is responsible for" . PHP_EOL;
|
echo COLOR_YELLOW . "domains" . COLOR_DEFAULT . " domains this server is responsible for" . PHP_EOL;
|
||||||
echo "\033[32m\tdomains:list" . PHP_EOL;
|
echo COLOR_GREEN . "\t domains:list" . PHP_EOL;
|
||||||
echo "\033[32m\tdomains:create <name> {A=<IPv4>} {AAAA=<IPv6>}" . PHP_EOL;
|
echo COLOR_GREEN . "\t domains:create <name> {A=<IPv4>} {AAAA=<IPv6>}" . PHP_EOL;
|
||||||
echo "\033[32m\tdomains:update <ID> {name=<name>} {A=<IPv4>} {AAAA=<IPv6>}" . PHP_EOL;
|
echo COLOR_GREEN . "\t domains:update <ID> {name=<name>} {A=<IPv4>} {AAAA=<IPv6>}" . PHP_EOL;
|
||||||
echo "\033[32m\tdomains:delete <ID>" . PHP_EOL;
|
echo COLOR_GREEN . "\t domains:delete <ID>" . PHP_EOL;
|
||||||
echo PHP_EOL . "\033[39me.g. ./bin/console apikey:list" . PHP_EOL;
|
|
||||||
|
echo COLOR_YELLOW . "apikeys" . COLOR_DEFAULT . "\t API keys for other nameservers" . PHP_EOL;
|
||||||
|
echo COLOR_GREEN . "\t apikeys:list" . PHP_EOL;
|
||||||
|
echo COLOR_GREEN . "\t apikeys:create" . PHP_EOL;
|
||||||
|
echo COLOR_GREEN . "\t apikeys:update <ID>" . PHP_EOL;
|
||||||
|
echo COLOR_GREEN . "\t apikeys:delete <ID>" . PHP_EOL;
|
||||||
|
|
||||||
|
echo PHP_EOL . "\033[39me.g. ./bin/console apikeys:list" . PHP_EOL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -196,11 +234,17 @@ class BindAPI
|
||||||
{
|
{
|
||||||
$error = false;
|
$error = false;
|
||||||
|
|
||||||
$id = $this->argv[2] ?? 0;
|
$id = $this->arguments[1] ?? 0;
|
||||||
|
|
||||||
if ($id != 0) {
|
if ($id != 0) {
|
||||||
$panel = $this->panelController->findByID($id);
|
if ($panel = $this->panelController->findByID($id)) {
|
||||||
if (!$this->checkPing($panel)) {
|
if (!$this->checkPing($panel)) {
|
||||||
|
$error = true;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if ($this->config['verbose']) {
|
||||||
|
echo 'Unknown panel ID: $id' . PHP_EOL;
|
||||||
|
}
|
||||||
$error = true;
|
$error = true;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
@ -225,7 +269,7 @@ class BindAPI
|
||||||
*/
|
*/
|
||||||
function handlePanelsCreate(): void
|
function handlePanelsCreate(): void
|
||||||
{
|
{
|
||||||
$name = $this->argv[2] ?? "";
|
$name = $this->arguments[0] ?? '';
|
||||||
if (empty($name)) {
|
if (empty($name)) {
|
||||||
echo 'You need to supply the panel name.' . PHP_EOL;
|
echo 'You need to supply the panel name.' . PHP_EOL;
|
||||||
exit(1);
|
exit(1);
|
||||||
|
@ -247,7 +291,7 @@ class BindAPI
|
||||||
echo 'At least one IP address is required.' . PHP_EOL;
|
echo 'At least one IP address is required.' . PHP_EOL;
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
$apikey = $argiments['apikey'] ?? '';
|
$apikey = $arguments['apikey'] ?? '';
|
||||||
|
|
||||||
if ($this->panelController->findByName($name)) {
|
if ($this->panelController->findByName($name)) {
|
||||||
echo "Panel: $name already exists." . PHP_EOL;
|
echo "Panel: $name already exists." . PHP_EOL;
|
||||||
|
@ -265,7 +309,7 @@ class BindAPI
|
||||||
*/
|
*/
|
||||||
function handleNameserversCreate(): void
|
function handleNameserversCreate(): void
|
||||||
{
|
{
|
||||||
$name = $this->argv[2] ?? '';
|
$name = $this->arguments[1] ?? '';
|
||||||
if (empty($name)) {
|
if (empty($name)) {
|
||||||
echo 'You need to supply the nameserver name.' . PHP_EOL;
|
echo 'You need to supply the nameserver name.' . PHP_EOL;
|
||||||
exit(1);
|
exit(1);
|
||||||
|
@ -306,7 +350,7 @@ class BindAPI
|
||||||
public function parseArguments(): array
|
public function parseArguments(): array
|
||||||
{
|
{
|
||||||
$arguments = [];
|
$arguments = [];
|
||||||
foreach ($this->argv as $argument) {
|
foreach ($this->arguments as $argument) {
|
||||||
if (str_contains(haystack: $argument, needle: '=')) {
|
if (str_contains(haystack: $argument, needle: '=')) {
|
||||||
[$key, $value] = explode(separator: '=', string: $argument);
|
[$key, $value] = explode(separator: '=', string: $argument);
|
||||||
$arguments[strtolower($key)] = $value;
|
$arguments[strtolower($key)] = $value;
|
||||||
|
@ -342,7 +386,7 @@ class BindAPI
|
||||||
{
|
{
|
||||||
$arguments = $this->parseArguments();
|
$arguments = $this->parseArguments();
|
||||||
|
|
||||||
$id = $this->argv[2] ?? 0;
|
$id = $this->arguments[1] ?? 0;
|
||||||
$name = $arguments['name'] ?? '';
|
$name = $arguments['name'] ?? '';
|
||||||
$a = $arguments['a'] ?? '';
|
$a = $arguments['a'] ?? '';
|
||||||
$aaaa = $arguments['aaaa'] ?? '';
|
$aaaa = $arguments['aaaa'] ?? '';
|
||||||
|
@ -365,12 +409,12 @@ class BindAPI
|
||||||
|
|
||||||
function handlePanelsDelete()
|
function handlePanelsDelete()
|
||||||
{
|
{
|
||||||
if (empty($this->argv[2])) {
|
if (empty($this->arguments[1])) {
|
||||||
echo "You need to supply an ID." . PHP_EOL;
|
echo "You need to supply an ID." . PHP_EOL;
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
$id = intval($this->argv[2]) ?? 0;
|
$id = intval($this->arguments[1]) ?? 0;
|
||||||
if ($id == 0) {
|
if ($id == 0) {
|
||||||
echo "Panel with ID $id not found." . PHP_EOL;
|
echo "Panel with ID $id not found." . PHP_EOL;
|
||||||
exit(1);
|
exit(1);
|
||||||
|
@ -421,9 +465,9 @@ class BindAPI
|
||||||
$keys = $this->apiUsers->findAll();
|
$keys = $this->apiUsers->findAll();
|
||||||
if ($keys) {
|
if ($keys) {
|
||||||
$table = new ConsoleTable();
|
$table = new ConsoleTable();
|
||||||
$table->setHeaders(['ID', 'API key prefix']);
|
$table->setHeaders(['ID', 'Name', 'API key prefix']);
|
||||||
foreach ($keys as $key) {
|
foreach ($keys as $key) {
|
||||||
$table->addRow([$key['id'], $key['api_token_prefix']]);
|
$table->addRow([$key['id'], $key['name'], $key['api_token_prefix']]);
|
||||||
}
|
}
|
||||||
$table->setPadding(value: 2);
|
$table->setPadding(value: 2);
|
||||||
$table->display();
|
$table->display();
|
||||||
|
@ -438,7 +482,7 @@ class BindAPI
|
||||||
*/
|
*/
|
||||||
function handleApikeysDelete(): void
|
function handleApikeysDelete(): void
|
||||||
{
|
{
|
||||||
$id = intval($this->argv[2]) ?? 0;
|
$id = intval($this->arguments[1]) ?? 0;
|
||||||
if ($id == 0) {
|
if ($id == 0) {
|
||||||
echo 'You need to add the ID of the API key.' . PHP_EOL;
|
echo 'You need to add the ID of the API key.' . PHP_EOL;
|
||||||
exit(1);
|
exit(1);
|
||||||
|
@ -478,7 +522,7 @@ class BindAPI
|
||||||
*/
|
*/
|
||||||
function handleNameserversList(): void
|
function handleNameserversList(): void
|
||||||
{
|
{
|
||||||
echo 'All available nameserver:' . PHP_EOL;
|
echo 'All available nameservers:' . PHP_EOL;
|
||||||
$domains = $this->nameserverController->findAll();
|
$domains = $this->nameserverController->findAll();
|
||||||
if ($domains) {
|
if ($domains) {
|
||||||
$table = new ConsoleTable();
|
$table = new ConsoleTable();
|
||||||
|
@ -523,7 +567,7 @@ class BindAPI
|
||||||
*/
|
*/
|
||||||
function handleDomainsCreate(): void
|
function handleDomainsCreate(): void
|
||||||
{
|
{
|
||||||
$name = $this->argv[2] ?? "";
|
$name = $this->arguments[1] ?? "";
|
||||||
if (empty($name)) {
|
if (empty($name)) {
|
||||||
echo 'You need to supply the domain name.' . PHP_EOL;
|
echo 'You need to supply the domain name.' . PHP_EOL;
|
||||||
exit(1);
|
exit(1);
|
||||||
|
@ -560,7 +604,7 @@ class BindAPI
|
||||||
{
|
{
|
||||||
$arguments = $this->parseArguments();
|
$arguments = $this->parseArguments();
|
||||||
|
|
||||||
$id = $this->argv[2] ?? 0;
|
$id = $this->arguments[1] ?? 0;
|
||||||
$name = $arguments['name'] ?? '';
|
$name = $arguments['name'] ?? '';
|
||||||
$a = $arguments['a'] ?? '';
|
$a = $arguments['a'] ?? '';
|
||||||
$aaaa = $arguments['aaaa'] ?? '';
|
$aaaa = $arguments['aaaa'] ?? '';
|
||||||
|
@ -585,8 +629,8 @@ class BindAPI
|
||||||
function handleNameserversUpdate()
|
function handleNameserversUpdate()
|
||||||
{
|
{
|
||||||
$arguments = $this->parseArguments();
|
$arguments = $this->parseArguments();
|
||||||
|
|
||||||
$id = $this->argv[2] ?? 0;
|
$id = $this->arguments[1] ?? 0;
|
||||||
$name = $arguments['name'] ?? '';
|
$name = $arguments['name'] ?? '';
|
||||||
$a = $arguments['a'] ?? '';
|
$a = $arguments['a'] ?? '';
|
||||||
$aaaa = $arguments['aaaa'] ?? '';
|
$aaaa = $arguments['aaaa'] ?? '';
|
||||||
|
@ -609,12 +653,12 @@ class BindAPI
|
||||||
|
|
||||||
function handleNameserversDelete()
|
function handleNameserversDelete()
|
||||||
{
|
{
|
||||||
if (empty($this->argv[2])) {
|
if (empty($this->arguments[1])) {
|
||||||
echo "You need to supply an ID." . PHP_EOL;
|
echo "You need to supply an ID." . PHP_EOL;
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
$id = intval($this->argv[2]) ?? 0;
|
$id = intval($this->arguments[1]) ?? 0;
|
||||||
if ($id == 0) {
|
if ($id == 0) {
|
||||||
echo "Nameserver with ID $id not found." . PHP_EOL;
|
echo "Nameserver with ID $id not found." . PHP_EOL;
|
||||||
exit(1);
|
exit(1);
|
||||||
|
@ -630,12 +674,12 @@ class BindAPI
|
||||||
|
|
||||||
function handleDomainsDelete()
|
function handleDomainsDelete()
|
||||||
{
|
{
|
||||||
if (empty($this->argv[2])) {
|
if (empty($this->arguments[1])) {
|
||||||
echo "You need to supply an ID." . PHP_EOL;
|
echo "You need to supply an ID." . PHP_EOL;
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
$id = intval($this->argv[2]) ?? 0;
|
$id = intval($this->arguments[1]) ?? 0;
|
||||||
if ($id == 0) {
|
if ($id == 0) {
|
||||||
echo "Domain with ID $id not found." . PHP_EOL;
|
echo "Domain with ID $id not found." . PHP_EOL;
|
||||||
exit(1);
|
exit(1);
|
||||||
|
|
Loading…
Reference in New Issue