Compare commits
No commits in common. "master" and "codeAnalysis" have entirely different histories.
master
...
codeAnalys
7
TODO
7
TODO
|
@ -1,7 +1,6 @@
|
|||
b4 cron job: check panel, check nameserver1
|
||||
check log file location
|
||||
API Endpoint cleanup
|
||||
check keytype of panel
|
||||
check keytype of 1bindApi
|
||||
check:configkey => update config.json
|
||||
check keytype of panel/bindApi
|
||||
more UNIT tests
|
||||
|
||||
|
||||
|
|
|
@ -10,11 +10,11 @@ if (php_sapi_name() !== 'cli') {
|
|||
|
||||
// check php version (must be >= 8.1)
|
||||
/** @noinspection PhpArgumentWithoutNamedIdentifierInspection */
|
||||
if (version_compare(PHP_VERSION, '8.2.0', '<')) {
|
||||
echo 'This application requires PHP 8.2 or newer. You are running ' . PHP_VERSION . PHP_EOL;
|
||||
echo 'If you are using KeyHelp, use keyhelp-php82 ' . $argv[0] . ' instead.' . PHP_EOL;
|
||||
if (version_compare(PHP_VERSION, '8.1.0', '<')) {
|
||||
echo 'This application requires PHP 8.1 or newer. You are running ' . PHP_VERSION . PHP_EOL;
|
||||
echo 'If you are using KeyHelp, use keyhelp-php81 ' . $argv[0] . ' instead.' . PHP_EOL;
|
||||
exit;
|
||||
}
|
||||
|
||||
/** @noinspection PhpArgumentWithoutNamedIdentifierInspection */
|
||||
require dirname(__DIR__, 1) . '/src/Utilities/Console.php';
|
||||
require dirname(__DIR__, 1) . '/src/Util/Console.php';
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"name": "tracer/bindapi",
|
||||
"description": "manage Bind9 client zones for KeyHelp",
|
||||
"version": "1.1.2",
|
||||
"build_number": "380",
|
||||
"name": "24unix/bindapi",
|
||||
"description": "manage Bind9 DNS server via REST API",
|
||||
"version": "1.0.9",
|
||||
"build_number": "374",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Micha Espey",
|
||||
|
@ -23,7 +23,6 @@
|
|||
"ext-posix": "*",
|
||||
"ext-sodium": "*",
|
||||
"arubacao/tld-checker": "^1.2",
|
||||
"bartlett/php-compatinfo": "^7.1",
|
||||
"monolog/monolog": "^3.1",
|
||||
"netresearch/jsonmapper": "^4.4",
|
||||
"php-di/php-di": "^6.3",
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,10 +1,9 @@
|
|||
{
|
||||
"env": "prod",
|
||||
"dbHost": "localhost",
|
||||
"dbPort": 3306,
|
||||
"dbDatabase": "sampledb",
|
||||
"dbUser": "sampleuser",
|
||||
"dbPassword": "secret",
|
||||
"encryptionKey": "1bad::babe",
|
||||
"encryptionKey": "changeme",
|
||||
"debug": false
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -2,8 +2,6 @@
|
|||
|
||||
namespace App\Controller\Commands;
|
||||
|
||||
use App\Utilities\Colors;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
@ -33,17 +31,17 @@ class CommandGroup
|
|||
|
||||
public function printCommands(int $longestCommandLength): void
|
||||
{
|
||||
echo Colors::YELLOW . str_pad(string: $this->name, length: $longestCommandLength + 1) . Colors::WHITE . $this->description . Colors::DEFAULT . PHP_EOL;
|
||||
echo COLOR_YELLOW . str_pad(string: $this->name, length: $longestCommandLength + 1) . COLOR_WHITE . $this->description . COLOR_DEFAULT . PHP_EOL;
|
||||
foreach ($this->commands as $command) {
|
||||
echo Colors::GREEN . str_pad(string: ' ', length: $longestCommandLength + 1, pad_type: STR_PAD_LEFT) . $this->name . ':' . $command->getName();
|
||||
echo COLOR_GREEN . str_pad(string: ' ', length: $longestCommandLength + 1, pad_type: STR_PAD_LEFT) . $this->name . ':' . $command->getName();
|
||||
foreach ($command->getMandatoryParameters() as $optionals) {
|
||||
echo ' <' . $optionals . '>';
|
||||
}
|
||||
foreach ($command->getOptionalParameters() as $mandatory) {
|
||||
echo ' {' . $mandatory . '}';
|
||||
}
|
||||
echo Colors::WHITE . ' ' . $command->getDescription();
|
||||
echo Colors::DEFAULT . PHP_EOL;
|
||||
echo COLOR_WHITE . ' ' . $command->getDescription();
|
||||
echo COLOR_DEFAULT . PHP_EOL;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -2,8 +2,6 @@
|
|||
|
||||
namespace App\Controller\Commands;
|
||||
|
||||
use App\Utilities\Colors;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
@ -66,23 +64,23 @@ class CommandGroupContainer
|
|||
if ($group->exec(subcommand: $subcommand)) {
|
||||
exit(0);
|
||||
} else {
|
||||
echo Colors::DEFAULT . 'Unknown subcommand ' . Colors::YELLOW . $subcommand . Colors::DEFAULT .' for ' . Colors::YELLOW . $command . Colors::DEFAULT . '.' . PHP_EOL;
|
||||
echo COLOR_DEFAULT . 'Unknown subcommand ' . COLOR_YELLOW . $subcommand . COLOR_DEFAULT .' for ' . COLOR_YELLOW . $command . COLOR_DEFAULT . '.' . PHP_EOL;
|
||||
exit(1);
|
||||
}
|
||||
} else {
|
||||
echo Colors::DEFAULT . 'Unknown command group ' . Colors::YELLOW . $command . Colors::DEFAULT . '.' . PHP_EOL;
|
||||
echo COLOR_DEFAULT . 'Unknown command group ' . COLOR_YELLOW . $command . COLOR_DEFAULT . '.' . PHP_EOL;
|
||||
exit(1);
|
||||
}
|
||||
} else {
|
||||
// check for command group and print available commands
|
||||
foreach ($this->commandGroups as $group) {
|
||||
if ($group->getName() === $command) {
|
||||
echo 'Available subcommands for: ' . Colors::YELLOW . $group->getName() . Colors::DEFAULT . ':' . PHP_EOL;
|
||||
echo 'Available subcommands for: ' . COLOR_YELLOW . $group->getName() . COLOR_DEFAULT . ':' . PHP_EOL;
|
||||
$group->printCommands(strlen(string: $group->getName()));
|
||||
exit(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
echo Colors::DEFAULT . 'Unknown command ' . Colors::YELLOW . $command . Colors::DEFAULT . '.' . PHP_EOL;
|
||||
echo COLOR_DEFAULT . 'Unknown command ' . COLOR_YELLOW . $command . COLOR_DEFAULT . '.' . PHP_EOL;
|
||||
}
|
||||
}
|
|
@ -2,14 +2,11 @@
|
|||
|
||||
namespace App\Controller;
|
||||
|
||||
use App\Utilities\Colors;
|
||||
|
||||
class ConfigController
|
||||
{
|
||||
private array $config;
|
||||
private static $missingEncryptionShown = false;
|
||||
|
||||
public function __construct(private readonly bool $quiet, bool $test = false)
|
||||
public function __construct(bool $quiet, bool $test = false)
|
||||
{
|
||||
|
||||
if ($test) {
|
||||
|
@ -38,33 +35,21 @@ class ConfigController
|
|||
}
|
||||
$configJSON = file_get_contents(filename: $configFile);
|
||||
|
||||
// first check if json is valid, after make the assignment
|
||||
if (json_decode(json: $configJSON, associative: true) === null) {
|
||||
if (json_decode(json: $configJSON) === null) {
|
||||
echo 'Config file is not valid JSON.' . PHP_EOL;
|
||||
echo $configJSON . PHP_EOL;
|
||||
exit(1);
|
||||
}
|
||||
|
||||
$this->config = json_decode(json: $configJSON, associative: true);
|
||||
if (!ConfigController::$missingEncryptionShown) {
|
||||
if (!isset($this->config['encryptionKey']) || ($this->config['encryptionKey'] === '1bad::babe')) {
|
||||
ConfigController::$missingEncryptionShown = true;
|
||||
if (!$this->quiet) {
|
||||
echo Colors::RED . 'Error: ' . Colors::DEFAULT . 'No encryption key, please run ' . Colors::YELLOW . './bin/console check:generatekey' . Colors::DEFAULT . PHP_EOL;
|
||||
}
|
||||
exit(1);
|
||||
}
|
||||
|
||||
$this->config['quiet'] = (bool)$quiet;
|
||||
$this->config['test'] = (bool)$test;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public function getConfig(string $configKey): ?string
|
||||
public function getConfig(string $configKey): string
|
||||
{
|
||||
if (isset($this->config[$configKey])) {
|
||||
return $this->config[$configKey];
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,6 @@ use App\Repository\DomainRepository;
|
|||
use App\Repository\NameserverRepository;
|
||||
use App\Repository\PanelRepository;
|
||||
use App\Service\ApiClient;
|
||||
use App\Utilities\Colors;
|
||||
use Monolog\Logger;
|
||||
|
||||
error_reporting(error_level: E_ALL);
|
||||
|
@ -83,13 +82,13 @@ class DomainController
|
|||
foreach ($domains as $domain) {
|
||||
$zoneFile = $this->localZonesDir . $domain->getName();
|
||||
if (!$this->quiet) {
|
||||
echo ' ' . Colors::YELLOW . str_pad(string: $domain->getName(), length: $longestEntry + 1, pad_string: " ", pad_type: STR_PAD_RIGHT) ;
|
||||
echo ' ' . COLOR_YELLOW . str_pad(string: $domain->getName(), length: $longestEntry + 1, pad_string: " ", pad_type: STR_PAD_RIGHT) ;
|
||||
}
|
||||
|
||||
if (strcmp(string1: $self->getName(), string2: $domain->getPanel()) !== 0) {
|
||||
if (!file_exists(filename: $zoneFile)) {
|
||||
if (!$this->quiet) {
|
||||
echo Colors::GREEN . ' OK' . Colors::DEFAULT . PHP_EOL;
|
||||
echo COLOR_GREEN . ' OK' . COLOR_DEFAULT . PHP_EOL;
|
||||
}
|
||||
$this->createSlaveZoneFile(domain: $domain);
|
||||
} else {
|
||||
|
@ -101,19 +100,19 @@ class DomainController
|
|||
echo 'missing value: ' . $zoneFile;
|
||||
}
|
||||
if (!$this->quiet) {
|
||||
echo Colors::DEFAULT . 'Zone already exists.' . PHP_EOL;
|
||||
echo COLOR_DEFAULT . 'Zone already exists.' . PHP_EOL;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (!$this->quiet) {
|
||||
echo Colors::DEFAULT . 'We are master for ' . Colors::YELLOW . $domain->getName() . PHP_EOL;
|
||||
echo COLOR_DEFAULT . 'We are master for ' . COLOR_YELLOW . $domain->getName() . PHP_EOL;
|
||||
}
|
||||
}
|
||||
}
|
||||
// remove stale zones
|
||||
foreach ($existingZones as $zone) {
|
||||
if (!$this->quiet) {
|
||||
echo 'Removing stale zone: ' . Colors::YELLOW . $zone . Colors::DEFAULT . PHP_EOL;
|
||||
echo 'Removing stale zone: ' . COLOR_YELLOW . $zone . COLOR_DEFAULT . PHP_EOL;
|
||||
}
|
||||
echo $zone . PHP_EOL;
|
||||
unlink(filename: $zone);
|
||||
|
@ -191,12 +190,12 @@ class DomainController
|
|||
$uid = posix_geteuid();
|
||||
}
|
||||
if (!$this->quiet) {
|
||||
echo "UID:\t" . Colors::YELLOW . $uid . PHP_EOL;
|
||||
echo "UID:\t" . COLOR_YELLOW . $uid . PHP_EOL;
|
||||
}
|
||||
$pwuid = posix_getpwuid(user_id: $uid);
|
||||
$name = $pwuid['name'];
|
||||
if (!$this->quiet) {
|
||||
echo Colors::DEFAULT . "Name:\t" . Colors::YELLOW . $name . PHP_EOL;
|
||||
echo COLOR_DEFAULT . "Name:\t" . COLOR_YELLOW . $name . PHP_EOL;
|
||||
}
|
||||
|
||||
if (!$bindGroup = posix_getgrnam(name: 'bind')) {
|
||||
|
@ -205,40 +204,40 @@ class DomainController
|
|||
$members = $bindGroup['members'] ?? [];
|
||||
if (in_array(needle: $name, haystack: $members)) {
|
||||
if (!$this->quiet) {
|
||||
echo "\t✅ $name" . Colors::DEFAULT . ' is in group ' . Colors::YELLOW . 'bind' . PHP_EOL;
|
||||
echo "\t✅ $name" . COLOR_DEFAULT . ' is in group ' . COLOR_YELLOW . 'bind' . PHP_EOL;
|
||||
}
|
||||
} else {
|
||||
$setupIsValid = false;
|
||||
if (!$this->quiet) {
|
||||
echo Colors::RED . "\t❌$name needs to be in group " . Colors::YELLOW . 'bind' . Colors::DEFAULT . '!' . PHP_EOL;
|
||||
echo COLOR_RED . "\t❌$name needs to be in group " . COLOR_YELLOW . 'bind' . COLOR_DEFAULT . '!' . PHP_EOL;
|
||||
}
|
||||
}
|
||||
if (!$this->quiet) {
|
||||
echo Colors::DEFAULT . 'Checking ' . Colors::YELLOW . $this->localZoneFile . PHP_EOL;
|
||||
echo COLOR_DEFAULT . 'Checking ' . COLOR_YELLOW . $this->localZoneFile . PHP_EOL;
|
||||
}
|
||||
$localZoneFilePermissions = @fileperms(filename: $this->localZoneFile);
|
||||
if ($localZoneFilePermissions & 0x0010) {
|
||||
if (!$this->quiet) {
|
||||
echo Colors::DEFAULT . "\t✅ Group has write access." . PHP_EOL;
|
||||
echo COLOR_DEFAULT . "\t✅ Group has write access." . PHP_EOL;
|
||||
}
|
||||
} else {
|
||||
$setupIsValid = false;
|
||||
if (!$this->quiet) {
|
||||
echo Colors::RED . "\t❌Group needs write permission!" . Colors::DEFAULT . PHP_EOL;
|
||||
echo COLOR_RED . "\t❌Group needs write permission!" . COLOR_DEFAULT . PHP_EOL;
|
||||
}
|
||||
}
|
||||
if (!$this->quiet) {
|
||||
echo 'Checking ' . Colors::YELLOW . $this->namedConfLocalFile . PHP_EOL;
|
||||
echo 'Checking ' . COLOR_YELLOW . $this->namedConfLocalFile . PHP_EOL;
|
||||
}
|
||||
if (file_exists(filename: $this->namedConfLocalFile) && $namedConfLocal = file_get_contents(filename: $this->namedConfLocalFile)) {
|
||||
if (!str_contains(haystack: $namedConfLocal, needle: $this->localZoneFile)) {
|
||||
$setupIsValid = false;
|
||||
if (!$this->quiet) {
|
||||
echo "\t❌ $this->localZoneFile" . Colors::RED . ' needs to be included in ' . Colors::YELLOW . $this->namedConfLocalFile . PHP_EOL;
|
||||
echo "\t❌ $this->localZoneFile" . COLOR_RED . ' needs to be included in ' . COLOR_YELLOW . $this->namedConfLocalFile . PHP_EOL;
|
||||
}
|
||||
} else {
|
||||
if (!$this->quiet) {
|
||||
echo "\t✅ $this->localZoneFile" . Colors::DEFAULT . ' is included in ' . Colors::YELLOW . $this->namedConfLocalFile . PHP_EOL;
|
||||
echo "\t✅ $this->localZoneFile" . COLOR_DEFAULT . ' is included in ' . COLOR_YELLOW . $this->namedConfLocalFile . PHP_EOL;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
|
@ -248,7 +247,7 @@ class DomainController
|
|||
}
|
||||
}
|
||||
if (!$this->quiet) {
|
||||
echo Colors::DEFAULT . 'Checking directory: ' . Colors::YELLOW . $this->localZonesDir . PHP_EOL;
|
||||
echo COLOR_DEFAULT . 'Checking directory: ' . COLOR_YELLOW . $this->localZonesDir . PHP_EOL;
|
||||
}
|
||||
$localZoneDirPermissions = @fileperms(filename: $this->localZonesDir);
|
||||
if ($localZoneDirPermissions & 0x0010) {
|
||||
|
@ -258,7 +257,7 @@ class DomainController
|
|||
} else {
|
||||
$setupIsValid = false;
|
||||
if (!$this->quiet) {
|
||||
echo Colors::RED . "\t❌Group needs write permission!" . PHP_EOL;
|
||||
echo COLOR_RED . "\t❌Group needs write permission!" . PHP_EOL;
|
||||
}
|
||||
}
|
||||
return $setupIsValid;
|
||||
|
@ -272,7 +271,7 @@ class DomainController
|
|||
{
|
||||
if (!file_exists(filename: $this->localZoneFile)) {
|
||||
if (!$this->quiet) {
|
||||
echo Colors::DEFAULT . 'Local Zone file ' . Colors::YELLOW . $this->localZoneFile . Colors::DEFAULT . ' does not exist.' . PHP_EOL;
|
||||
echo COLOR_DEFAULT . 'Local Zone file ' . COLOR_YELLOW . $this->localZoneFile . COLOR_DEFAULT . ' does not exist.' . PHP_EOL;
|
||||
}
|
||||
exit(1);
|
||||
}
|
||||
|
@ -283,33 +282,33 @@ class DomainController
|
|||
foreach ($domains as $domain) {
|
||||
$idString = '(' . $domain->getId() . ') ';
|
||||
if (!$this->quiet) {
|
||||
echo Colors::YELLOW .
|
||||
echo COLOR_YELLOW .
|
||||
str_pad(string: $domain->getName(), length: $maxNameLength + 1)
|
||||
. Colors::DEFAULT
|
||||
. COLOR_DEFAULT
|
||||
. str_pad(string: $idString, length: 7, pad_type: STR_PAD_LEFT);
|
||||
}
|
||||
|
||||
$hasError = false;
|
||||
if ($this->isMasterZone(domain: $domain)) {
|
||||
if (!$this->quiet) {
|
||||
echo Colors::GREEN . 'Master Zone';
|
||||
echo COLOR_GREEN . 'Master Zone';
|
||||
}
|
||||
} else {
|
||||
if (!str_contains(haystack: $localZones, needle: $domain->getName())) {
|
||||
if (!$this->quiet) {
|
||||
echo Colors::RED . 'is missing in ' . Colors::YELLOW . $this->localZoneFile . Colors::DEFAULT;
|
||||
echo COLOR_RED . 'is missing in ' . COLOR_YELLOW . $this->localZoneFile . COLOR_DEFAULT;
|
||||
}
|
||||
$hasError = true;
|
||||
} else {
|
||||
if (!$this->quiet) {
|
||||
echo Colors::GREEN . 'OK';
|
||||
echo COLOR_GREEN . 'OK';
|
||||
}
|
||||
}
|
||||
|
||||
$zoneFile = $this->localZonesDir . $domain->getName();
|
||||
|
||||
if (!file_exists(filename: $zoneFile)) {
|
||||
echo ' Missing zone file for ' . Colors::YELLOW . $zoneFile . Colors::DEFAULT;
|
||||
echo ' Missing zone file for ' . COLOR_YELLOW . $zoneFile . COLOR_DEFAULT;
|
||||
$hasError = true;
|
||||
}
|
||||
|
||||
|
@ -318,7 +317,7 @@ class DomainController
|
|||
}
|
||||
}
|
||||
if (!$this->quiet) {
|
||||
echo Colors::DEFAULT . PHP_EOL;
|
||||
echo COLOR_DEFAULT . PHP_EOL;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -368,7 +367,7 @@ class DomainController
|
|||
return true;
|
||||
} else {
|
||||
if (!$this->quiet) {
|
||||
echo Colors::RED . ' Error: ' . Colors::DEFAULT . 'unable to create ' . Colors::YELLOW . $this->localZonesDir . $domainName . Colors::DEFAULT . PHP_EOL;
|
||||
echo COLOR_RED . ' Error: ' . COLOR_DEFAULT . 'unable to create ' . COLOR_YELLOW . $this->localZonesDir . $domainName . COLOR_DEFAULT . PHP_EOL;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -58,7 +58,7 @@ class EncryptionController
|
|||
|
||||
$plain = sodium_crypto_secretbox_open(ciphertext: $ciphertext, nonce: $nonce, key: $binKey);
|
||||
if ($plain === false) {
|
||||
throw new Exception(message: ' Incorrect key.' . PHP_EOL);
|
||||
throw new Exception(message: ' Incorrect key.');
|
||||
}
|
||||
sodium_memzero(string: $ciphertext);
|
||||
sodium_memzero(string: $key);
|
||||
|
|
|
@ -15,19 +15,6 @@ class Security
|
|||
private bool $hstsInclude;
|
||||
private bool $hstsPreload;
|
||||
|
||||
private bool $isPreferHttps;
|
||||
|
||||
public function isPreferHttps(): bool
|
||||
{
|
||||
return $this->isPreferHttps;
|
||||
}
|
||||
|
||||
public function setIsPreferHttps(bool $isPreferHttps): void
|
||||
{
|
||||
$this->isPreferHttps = $isPreferHttps;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @return int
|
||||
*/
|
||||
|
|
|
@ -5,7 +5,6 @@ namespace App\Provider;
|
|||
//error_reporting(error_level: E_ALL);
|
||||
|
||||
|
||||
use App\Utilities\Colors;
|
||||
use PDO;
|
||||
use PDOException;
|
||||
use PHPUnit\Exception;
|
||||
|
@ -28,29 +27,11 @@ class DatabaseConnection
|
|||
|
||||
public function __construct(private readonly ConfigController $configController)
|
||||
{
|
||||
$errors = [];
|
||||
if (!$dbHost = $this->configController->getConfig(configKey: 'dbHost')) {
|
||||
$errors[] = Colors::RED . 'Error: ' . Colors::DEFAULT . 'Missing config: dbHost' . PHP_EOL;
|
||||
}
|
||||
if (!$dbPort = $this->configController->getConfig(configKey: 'dbPort')) {
|
||||
$errors[] = Colors::RED . 'Error: ' . Colors::DEFAULT . 'Missing config: dbPort}' . PHP_EOL;
|
||||
}
|
||||
if (!$dbDatabase = $this->configController->getConfig(configKey: 'dbDatabase')) {
|
||||
$errors[] = Colors::RED . 'Error: ' . Colors::DEFAULT . 'Missing config: dbDatabase' . PHP_EOL;
|
||||
}
|
||||
if (!$dbUser = $this->configController->getConfig(configKey: 'dbUser')) {
|
||||
$errors[] = Colors::RED . 'Error: ' . Colors::DEFAULT . 'Missing config: dbUser' . PHP_EOL;
|
||||
}
|
||||
if (!$dbPassword = $this->configController->getConfig(configKey: 'dbPassword')) {
|
||||
$errors[] = Colors::RED . 'Error: ' . Colors::DEFAULT . 'Missing config: dbPassword' . PHP_EOL;
|
||||
}
|
||||
|
||||
if ($errors) {
|
||||
foreach ($errors as $error) {
|
||||
echo $error;
|
||||
}
|
||||
exit(1);
|
||||
}
|
||||
$dbHost = $this->configController->getConfig(configKey: 'dbHost');
|
||||
$dbPort = $this->configController->getConfig(configKey: 'dbPort');
|
||||
$dbDatabase = $this->configController->getConfig(configKey: 'dbDatabase');
|
||||
$dbUser = $this->configController->getConfig(configKey: 'dbUser');
|
||||
$dbPassword = $this->configController->getConfig(configKey: 'dbPassword');
|
||||
|
||||
try {
|
||||
$this->dbConnection = new PDO(
|
||||
|
@ -73,8 +54,8 @@ class DatabaseConnection
|
|||
$result = $statement->fetch();
|
||||
if (empty($result)) {
|
||||
// ALTER TABLE `domains` ADD `panel_id` INT NULL AFTER `id`;
|
||||
echo Colors::RED . 'Error: ' . Colors::DEFAULT . 'Cannot find tables.' . PHP_EOL;
|
||||
echo 'Run the migration: ' . Colors::YELLOW . './bin/console migrations:migrate' . Colors::DEFAULT . PHP_EOL;
|
||||
echo COLOR_RED . 'Error: ' . COLOR_DEFAULT . 'Cannot find tables.' . PHP_EOL;
|
||||
echo 'Run the migration: ' . COLOR_YELLOW . './bin/console migrations:migrate' . COLOR_DEFAULT . PHP_EOL;
|
||||
}
|
||||
} catch (PDOException $exception) {
|
||||
echo $exception->getMessage() . PHP_EOL;
|
||||
|
@ -90,7 +71,6 @@ class DatabaseConnection
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
function generatePassword(int $length = 8): string
|
||||
{
|
||||
$chars = '23456789bcdfhkmnprstvzBCDFHJKLMNPRSTVZ';
|
||||
|
|
|
@ -1,12 +1,11 @@
|
|||
<?php
|
||||
|
||||
use App\Service\BindAPI;
|
||||
use App\Utilities\Colors;
|
||||
|
||||
error_reporting(error_level: E_ALL & ~E_DEPRECATED);
|
||||
|
||||
if (!is_file(filename: dirname(path: __DIR__, levels: 2) . '/vendor/autoload.php')) {
|
||||
echo 'Required runtime components are missing. Try running "' . Colors::YELLOW . 'composer install' . Colors::DEFAULT . '".' . PHP_EOL;
|
||||
echo 'Required runtime components are missing. Try running "' . COLOR_YELLOW . 'composer install' . COLOR_DEFAULT . '".' . PHP_EOL;
|
||||
exit(1);
|
||||
}
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
<?php
|
||||
|
||||
namespace App\Utilities;
|
||||
|
||||
class Colors
|
||||
{
|
||||
const RED = "\033[31m";
|
||||
const GREEN = "\033[32m";
|
||||
const YELLOW = "\033[33m";
|
||||
const BLUE = "\033[34m";
|
||||
const WHITE = "\033[37m";
|
||||
const DEFAULT = "\033[39m";
|
||||
}
|
Loading…
Reference in New Issue