bindAPI/bindAPI/src/Controller/BindAPI.php

586 lines
15 KiB
PHP
Raw Normal View History

2022-01-19 21:07:22 +01:00
<?php
namespace App\Controller;
// TODO add to all Controllers
error_reporting(E_ALL);
// 61e6ce5dd8a1b.bc1c314ce364f6878084c254fe4c6345801c43a49bb8eb71
use LucidFrame\Console\ConsoleTable;
use PDO;
use UnhandledMatchError;
if (php_sapi_name() !== 'cli') {
exit;
}
/**
*
*/
class BindAPI
{
private PDO $dbConnection;
private ApiUsers $apiUsers;
private DomainController $domainController;
2022-01-20 19:55:04 +01:00
private PanelController $panelController;
2022-01-22 13:16:26 +01:00
private NameserverController $nameserverController;
2022-01-19 21:07:22 +01:00
public function __construct(private int $argc, private array $argv)
{
$this->dbConnection = (new DatabaseConnection())->getConnection();
2022-01-20 19:55:04 +01:00
$this->panelController = new PanelController($this->dbConnection);
2022-01-19 21:07:22 +01:00
$this->apiUsers = new ApiUsers($this->dbConnection);
$this->domainController = new DomainController($this->dbConnection);
2022-01-22 13:16:26 +01:00
$this->nameserverController = new NameserverController($this->dbConnection);
2022-01-19 21:07:22 +01:00
}
2022-01-22 13:16:26 +01:00
2022-01-20 19:55:04 +01:00
function handleCheck(String $subcommand)
{
try {
match ($subcommand) {
'permissions' => $this->handleCheckPermissions(),
};
} catch (UnhandledMatchError) {
echo 'Unknown action: ' . $subcommand . PHP_EOL;
}
}
function handleCheckPermissions()
{
$test = fgets(STDIN);
echo "received: $test" . PHP_EOL;
}
2022-01-19 21:07:22 +01:00
function runCommand()
{
if ($this->argc < 2) {
$this->showUsage();
2022-01-20 19:55:04 +01:00
exit(0);
2022-01-19 21:07:22 +01:00
}
2022-01-20 19:55:04 +01:00
if (str_contains(haystack: $this->argv[1], needle: ':')) {
[$command, $subcommand] = explode(separator: ':', string: $this->argv[1]);
} else {
$command = $this->argv[1];
$subcommand = '';
}
2022-01-19 21:07:22 +01:00
try {
match ($command) {
2022-01-20 19:55:04 +01:00
'check' => $this->handleChecks($subcommand),
'panels' => $this->handlePanels($subcommand),
2022-01-19 21:07:22 +01:00
'apikeys' => $this->handleApiKeys($subcommand),
2022-01-22 13:16:26 +01:00
'domains' => $this->handleDomains($subcommand),
'nameservers' => $this->handleNameservers($subcommand)
2022-01-19 21:07:22 +01:00
};
} catch(UnhandledMatchError) {
echo 'Unknown command: ' . $command . PHP_EOL;
exit(1);
}
}
/**
* @return void
*/
function showUsage(): void
{
echo 'Usage' . PHP_EOL;
2022-01-20 19:55:04 +01:00
echo "\033[33mcheck\t\t\033[39mhealth checks the system can perform" . PHP_EOL;
echo "\033[32m\tcheck:permissions" . PHP_EOL;
echo "\033[32m\tcheck:panel {ID}" . PHP_EOL;
echo "\033[32m\tcheck:domains {ID}" . PHP_EOL;
echo "\033[33mpanels\t\033[39mall Keyhelp systems configured" . PHP_EOL;
echo "\033[32m\tpanels:list" . PHP_EOL;
echo "\033[32m\tpanels: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 "\033[32m\tpanels:delete" . PHP_EOL;
echo "\033[33mapikeys\t\033[39mAPI keys for other nameservers" . PHP_EOL;
2022-01-19 21:07:22 +01:00
echo "\033[32m\tapikeys:list" . PHP_EOL;
echo "\033[32m\tapikeys:create" . PHP_EOL;
2022-01-22 13:16:26 +01:00
echo "\033[32m\tapikeys:delete <ID>" . PHP_EOL;
2022-01-20 19:55:04 +01:00
echo "\033[33mnameservers\t\033[39mother nameservers" . PHP_EOL;
echo "\033[32m\tnameservers:list" . PHP_EOL;
2022-01-22 13:16:26 +01:00
echo "\033[32m\tnameservers:create <name> {A=<IPv4>} {AAAA=<IPv6>} {apikey=<API-Key>}" . PHP_EOL;
echo "\033[32m\tnameservers:update <ID> {name=<name>} {A=<IPv4>} {AAAA=<IPv6>} {apikey=<API-Key>}" . PHP_EOL;
2022-01-20 19:55:04 +01:00
echo "\033[32m\tnameservers:delete <ID>" . PHP_EOL;
echo "\033[33mdomains\t\033[39mdomains this server is responsible for" . PHP_EOL;
2022-01-19 21:07:22 +01:00
echo "\033[32m\tdomains:list" . PHP_EOL;
echo "\033[32m\tdomains:create <name> {A=<IPv4>} {AAAA=<IPv6>}" . PHP_EOL;
2022-01-20 19:55:04 +01:00
echo "\033[32m\tdomains:update <ID> {name=<name>} {A=<IPv4>} {AAAA=<IPv6>}" . PHP_EOL;
2022-01-22 13:16:26 +01:00
echo "\033[32m\tdomains:delete <ID>" . PHP_EOL;
2022-01-19 21:07:22 +01:00
echo PHP_EOL . "\033[39me.g. ./bin/console apikey:list" . PHP_EOL;
2022-01-20 19:55:04 +01:00
}
2022-01-22 13:16:26 +01:00
/**
* @param string $subcommand
*
* @return void
*/
public function handleNameservers(string $subcommand): void
{
try {
match ($subcommand) {
'create' => $this->handleNameserversCreate(),
'list' => $this->handleNameserversList(),
'update' => $this->handleNameserversUpdate(),
'delete' => $this->handleNameserversDelete(),
};
} catch (UnhandledMatchError) {
echo 'Unknown action: ' . $subcommand . PHP_EOL;
}
}
2022-01-20 19:55:04 +01:00
/**
* @param string $subcommand
*
* @return void
*/
public function handlePanels(string $subcommand): void
{
try {
match ($subcommand) {
'create' => $this->handlePanelsCreate(),
'list' => $this->handlePanelsList(),
'update' => $this->handlePanelsUpdate(),
'delete' => $this->handlePanelsDelete(),
};
} catch (UnhandledMatchError) {
echo 'Unknown action: ' . $subcommand . PHP_EOL;
}
}
/**
* @return void
*/
function handlePanelsCreate(): void
{
$name = $this->argv[2] ?? "";
if (empty($name)) {
echo 'You need to supply the panel name.' . PHP_EOL;
exit(1);
}
$filteredName = filter_var(value: $name, filter: FILTER_VALIDATE_DOMAIN, options: FILTER_FLAG_HOSTNAME);
if (!empty($filteredName) && str_contains(haystack: $filteredName, needle: '.')) {
$name = $filteredName;
} else {
echo "$name is no valid DNS domain name." . PHP_EOL;
exit(1);
}
$arguments = $this->parseArguments();
$a = $arguments['a'] ?? '';
$aaaa = $arguments['aaaa'] ?? '';
if (empty($a) && empty($aaaa)) {
echo 'At least one IP address is required.' . PHP_EOL;
exit(0);
}
$apikey = $argiments['apikey'] ?? '';
if ($this->panelController->findByName($name)) {
echo "Panel: $name already exists." . PHP_EOL;
exit(1);
} else {
$result = $this->panelController->insert($name, $a, $aaaa, $apikey);
echo "Panel $name has been created with id $result" . PHP_EOL;
exit(0);
}
}
2022-01-22 13:16:26 +01:00
/**
* @return void
*/
function handleNameserversCreate(): void
{
$name = $this->argv[2] ?? '';
if (empty($name)) {
echo 'You need to supply the nameserver name.' . PHP_EOL;
exit(1);
}
$filteredName = filter_var(value: $name, filter: FILTER_VALIDATE_DOMAIN, options: FILTER_FLAG_HOSTNAME);
if (!empty($filteredName) && str_contains(haystack: $filteredName, needle: '.')) {
$name = $filteredName;
} else {
echo "$name is no valid nameserver name." . PHP_EOL;
exit(1);
}
$arguments = $this->parseArguments();
$a = $arguments['a'] ?? '';
$aaaa = $arguments['aaaa'] ?? '';
if (empty($a) && empty($aaaa)) {
echo 'At least one IP address is required.' . PHP_EOL;
exit(0);
}
$apikey = $argiments['apikey'] ?? '';
if ($this->nameserverController->findByName($name)) {
echo "Nameserver: $name already exists." . PHP_EOL;
exit(1);
} else {
$result = $this->nameserverController->insert($name, $a, $aaaa, $apikey);
echo "Nameserver $name has been created with id $result" . PHP_EOL;
exit(0);
}
}
2022-01-20 19:55:04 +01:00
/**
* @return array
*/
public function parseArguments(): array
{
$arguments = [];
foreach ($this->argv as $argument) {
if (str_contains(haystack: $argument, needle: '=')) {
[$key, $value] = explode(separator: '=', string: $argument);
$arguments[strtolower($key)] = $value;
}
}
return $arguments;
}
/**
* @return void
*/
function handlePanelsList(): void
{
echo 'All available panels:' . PHP_EOL;
$panels = $this->panelController->findAll();
if ($panels) {
$table = new ConsoleTable();
$table->setHeaders(['ID', 'Name', 'A', 'AAAA', 'API Key']);
foreach ($panels as $panel) {
$token = strtok(string: $panel['apikey'], token: '.');
$table->addRow([$panel['id'], $panel['name'], $panel['a'], $panel['aaaa'], $token]);
}
$table->setPadding(value: 2);
$table->display();
} else {
echo 'No panels found.' . PHP_EOL;
exit(1);
}
2022-01-19 21:07:22 +01:00
exit(0);
}
2022-01-20 19:55:04 +01:00
function handlePanelsUpdate()
{
$arguments = $this->parseArguments();
$id = $this->argv[2] ?? 0;
$name = $arguments['name'] ?? '';
$a = $arguments['a'] ?? '';
$aaaa = $arguments['aaaa'] ?? '';
$apikey = $arguments['apikey'] ?? '';
if ($id == 0) {
echo 'An ID is required' . PHP_EOL;
exit(1);
}
if (!$this->panelController->findByID($id)) {
echo "Panel with ID : $id doesn't exist." . PHP_EOL;
exit(1);
}
if ($this->panelController->update($id, $name, $a, $aaaa, $apikey) !== false) {
echo 'Panel has been updated' . PHP_EOL;
} else {
echo 'Error while updating domain server.' . PHP_EOL;
}
}
function handlePanelsDelete()
{
if (empty($this->argv[2])) {
echo "You need to supply an ID." . PHP_EOL;
exit(1);
}
$id = intval($this->argv[2]) ?? 0;
if ($id == 0) {
echo "Panel with ID $id not found." . PHP_EOL;
exit(1);
}
if (!$this->panelController->findByID($id)) {
echo "There is no panel with ID $id." . PHP_EOL;
exit(1);
}
$this->panelController->delete($id);
echo "The panel with ID $id has been deleted." .PHP_EOL;
}
2022-01-19 21:07:22 +01:00
/**
2022-01-20 19:55:04 +01:00
* @param string $subcommand
2022-01-19 21:07:22 +01:00
*
* @return void
*/
2022-01-20 19:55:04 +01:00
public function handleApiKeys(string $subcommand): void
{
try {
match ($subcommand) {
'create' => $this->handleApikeysCreate(),
'list' => $this->handleApikeysList(),
'delete' => $this->handleApikeysDelete(),
};
} catch (UnhandledMatchError) {
echo 'Unknown action: ' . $subcommand . PHP_EOL;
}
}
/**
* @return void
*/
function handleApikeysCreate(): void
2022-01-19 21:07:22 +01:00
{
2022-01-20 19:55:04 +01:00
$result = $this->apiUsers->create();
2022-01-19 21:07:22 +01:00
echo 'API key ' . $result['row'] . ' has been generated. Store it in a save place, it cannot be recovered.' . PHP_EOL;
echo "\033[32m\t" . $result['tokenPrefix'] . '.' . $result['key'] . PHP_EOL;
exit(0);
}
/**
* @return void
*/
2022-01-20 19:55:04 +01:00
function handleApikeysList(): void
2022-01-19 21:07:22 +01:00
{
echo 'All valid API keys:' . PHP_EOL;
2022-01-20 19:55:04 +01:00
$keys = $this->apiUsers->findAll();
2022-01-19 21:07:22 +01:00
if ($keys) {
$table = new ConsoleTable();
$table->setHeaders(['ID', 'API key prefix']);
foreach ($keys as $key) {
$table->addRow([$key['id'], $key['api_token_prefix']]);
}
2022-01-20 19:55:04 +01:00
$table->setPadding(value: 2);
2022-01-19 21:07:22 +01:00
$table->display();
} else {
echo 'No keys found.' . PHP_EOL;
}
exit(0);
}
/**
* @return void
*/
2022-01-20 19:55:04 +01:00
function handleApikeysDelete(): void
2022-01-19 21:07:22 +01:00
{
2022-01-20 19:55:04 +01:00
$id = intval($this->argv[2]) ?? 0;
2022-01-19 21:07:22 +01:00
if ($id == 0) {
2022-01-20 19:55:04 +01:00
echo 'You need to add the ID of the API key.' . PHP_EOL;
2022-01-19 21:07:22 +01:00
exit(1);
}
2022-01-20 19:55:04 +01:00
if ($this->apiUsers->findByID($id)) {
$this->apiUsers->delete($id);
echo 'API key ' . $id . ' has been deleted.' . PHP_EOL;
2022-01-19 21:07:22 +01:00
exit(0);
} else {
echo 'Unknown ID: ' . $id . PHP_EOL;
exit(1);
}
}
/**
2022-01-20 19:55:04 +01:00
* @param string $subcommand
2022-01-19 21:07:22 +01:00
*
* @return void
*/
2022-01-20 19:55:04 +01:00
public function handleDomains(string $subcommand): void
{
try {
match ($subcommand) {
'list' => $this->handleDomainsList(),
'create' => $this->handleDomainsCreate(),
'update' => $this->handleDomainsUpdate(),
'delete' => $this->handleDomainsDelete(),
};
} catch (UnhandledMatchError) {
echo "Unknown Command: $subcommand" . PHP_EOL;
exit(1);
}
}
2022-01-22 13:16:26 +01:00
/**
* @return void
*/
function handleNameserversList(): void
{
echo 'All available nameserver:' . PHP_EOL;
$domains = $this->nameserverController->findAll();
if ($domains) {
$table = new ConsoleTable();
$table->setHeaders(['ID', 'Name', 'A', 'AAAA', 'API Key']);
foreach ($domains as $domain) {
$table->addRow([$domain['id'], $domain['name'], $domain['a'], $domain['aaaa'], $domain['apikey']]);
}
$table->setPadding(value: 2);
$table->display();
} else {
echo 'No nameservers found.' . PHP_EOL;
exit(1);
}
exit(0);
}
2022-01-20 19:55:04 +01:00
/**
* @return void
*/
function handleDomainsList(): void
2022-01-19 21:07:22 +01:00
{
echo 'All available domains:' . PHP_EOL;
2022-01-20 19:55:04 +01:00
$domains = $this->domainController->findAll();
2022-01-19 21:07:22 +01:00
if ($domains) {
$table = new ConsoleTable();
$table->setHeaders(['ID', 'Name', 'A', 'AAAA']);
foreach ($domains as $domain) {
$table->addRow([$domain['id'], $domain['name'], $domain['a'], $domain['aaaa']]);
}
2022-01-20 19:55:04 +01:00
$table->setPadding(value: 2);
2022-01-19 21:07:22 +01:00
$table->display();
} else {
echo 'No domains found.' . PHP_EOL;
exit(1);
}
exit(0);
}
/**
* @return void
*/
2022-01-20 19:55:04 +01:00
function handleDomainsCreate(): void
2022-01-19 21:07:22 +01:00
{
$name = $this->argv[2] ?? "";
if (empty($name)) {
echo 'You need to supply the domain name.' . PHP_EOL;
exit(1);
}
2022-01-20 19:55:04 +01:00
$filteredName = filter_var(value: $name, filter: FILTER_VALIDATE_DOMAIN, options: FILTER_FLAG_HOSTNAME);
if (!empty($filteredName) && str_contains(haystack: $filteredName, needle: '.')) {
2022-01-19 21:07:22 +01:00
$name = $filteredName;
} else {
echo "$name is no valid DNS domain name." . PHP_EOL;
exit(1);
}
2022-01-20 19:55:04 +01:00
$arguments = $this->parseArguments();
2022-01-19 21:07:22 +01:00
$a = $arguments['a'] ?? "";
$aaaa = $arguments['aaaa'] ?? "";
if (empty($a) && empty($aaaa)) {
2022-01-20 19:55:04 +01:00
echo 'At least one IP address is required.' . PHP_EOL;
2022-01-19 21:07:22 +01:00
exit(0);
}
2022-01-20 19:55:04 +01:00
if ($this->domainController->findByName($name)) {
2022-01-19 21:07:22 +01:00
echo "Domain: $name already exists." . PHP_EOL;
exit(1);
} else {
2022-01-20 19:55:04 +01:00
$result = $this->domainController->insert($name, $a, $aaaa);
echo "Domain $name has been created with id $result" . PHP_EOL;
2022-01-19 21:07:22 +01:00
exit(0);
}
}
2022-01-20 19:55:04 +01:00
function handleDomainsUpdate()
2022-01-19 21:07:22 +01:00
{
2022-01-20 19:55:04 +01:00
$arguments = $this->parseArguments();
$id = $this->argv[2] ?? 0;
$name = $arguments['name'] ?? '';
$a = $arguments['a'] ?? '';
$aaaa = $arguments['aaaa'] ?? '';
if ($id == 0) {
echo 'An ID is required' . PHP_EOL;
exit(1);
}
if (!$this->domainController->findByID($id)) {
echo "Domain with ID : $id doesn't exist." . PHP_EOL;
exit(1);
}
if ($this->domainController->update($id, $name, $a, $aaaa) !== false) {
echo 'Domain server has been updated' . PHP_EOL;
} else {
echo 'Error while updating domain server.' . PHP_EOL;
2022-01-19 21:07:22 +01:00
}
}
2022-01-22 13:16:26 +01:00
function handleNameserversUpdate()
{
$arguments = $this->parseArguments();
$id = $this->argv[2] ?? 0;
$name = $arguments['name'] ?? '';
$a = $arguments['a'] ?? '';
$aaaa = $arguments['aaaa'] ?? '';
$apikey = $arguments['apikey'] ?? '';
if ($id == 0) {
echo 'An ID is required' . PHP_EOL;
exit(1);
}
if (!$this->nameserverController->findByID($id)) {
echo "Nameserver with ID : $id doesn't exist." . PHP_EOL;
exit(1);
}
if ($this->nameserverController->update($id, $name, $a, $aaaa, $apikey) !== false) {
echo 'Nameserver server has been updated' . PHP_EOL;
} else {
echo 'Error while updating nameserver.' . PHP_EOL;
}
}
function handleNameserversDelete()
{
if (empty($this->argv[2])) {
echo "You need to supply an ID." . PHP_EOL;
exit(1);
}
$id = intval($this->argv[2]) ?? 0;
if ($id == 0) {
echo "Nameserver with ID $id not found." . PHP_EOL;
exit(1);
}
if (!$this->nameserverController->findByID($id)) {
echo "There is no nameserver with ID $id." . PHP_EOL;
exit(1);
}
$this->nameserverController->delete($id);
echo "The nameserver with ID $id has been deleted." .PHP_EOL;
}
function handleDomainsDelete()
2022-01-19 21:07:22 +01:00
{
2022-01-20 19:55:04 +01:00
if (empty($this->argv[2])) {
echo "You need to supply an ID." . PHP_EOL;
exit(1);
}
$id = intval($this->argv[2]) ?? 0;
if ($id == 0) {
echo "Domain with ID $id not found." . PHP_EOL;
exit(1);
}
if (!$this->domainController->findByID($id)) {
echo "There is no domain with ID $id." . PHP_EOL;
2022-01-19 21:07:22 +01:00
exit(1);
}
2022-01-20 19:55:04 +01:00
$this->domainController->delete($id);
echo "The domain with ID $id has been deleted." .PHP_EOL;
2022-01-19 21:07:22 +01:00
}
}