_env[$tmp[0]] = $tmp[1]; } // Set the TLD suffix (domain ending) for virtual hosts // Note: If this is changed it currently also needs to be changed // in each webserver's configuration file in .devilbox//02-vhost-mass.conf $this->_tld = $GLOBALS['TLD_SUFFIX']; } /********************************************************************************* * * Public functions * *********************************************************************************/ /** * Get Docker environment variables from docker-compose.yml * @param string $variable Variable name * @return string Variable value */ public function getEnv($variable) { if (!isset($this->_env[$variable])) { loadClass('Logger')->error('Docker environment variable not found: '.$variable); return null; } return $this->_env[$variable]; } /** * Get tld suffix. * * @return string */ public function getTld() { return $this->_tld; } /** * Get HTTP port. * * @return string */ public function getPort() { $port = $this->getEnv('HOST_PORT_HTTPD'); if ( empty($port) ) { return ''; } if ( $port == 80 ) { return ''; } return ":$port"; } /********************************************************************************* * * PHP Docker functions * *********************************************************************************/ /** * Read out PHP Server configuration by variable * * @param string|null $key Config key name * @return string|mixed[] */ public function PHP_config($key = null) { // Get all configs as array if ($key === null) { return ini_get_all(); } else { return ini_get($key); } } /** * Return an array of custom mounted PHP config files. * * @return string[] */ public function PHP_custom_config_files() { $files = array(); foreach (scandir('/etc/php-custom.d') as $file) { if (preg_match('/.*\.ini$/', $file) === 1) { $files[] = $file; } } return $files; } /** * Check if mounted MySQL socket is valid inside PHP Docker. * * @param string $error Reference to error message. * @return boolean */ public function PHP_has_valid_mysql_socket(&$error) { if (!$this->getEnv('MOUNT_MYSQL_SOCKET_TO_LOCALDISK')) { $error = 'Socket mount not enabled.'; return false; } if (!file_exists($this->getEnv('MYSQL_SOCKET_PATH'))) { $error = 'Socket file not found.'; return false; } //if (getMySQLConfigByKey('socket') != $ENV['MYSQL_SOCKET_PATH']) { // $error = 'Mounted from mysql:'.$ENV['MYSQL_SOCKET_PATH']. ', but socket is in mysql:'.getMySQLConfigByKey('socket'); // return FALSE; //} $error = ''; return true; } /** * Get all mass virtual Hosts by directories * * @return mixed[] */ public function PHP_getVirtualHosts() { $docRoot = $this->_doc_root; $vhosts = array(); if ($handle = opendir($docRoot)) { while (false !== ($directory = readdir($handle))) { if ($this->_is_valid_dir($docRoot . DIRECTORY_SEPARATOR . $directory) && $directory != '.' && $directory != '..') { $vhosts[] = array( 'name' => $directory, 'domain' => $directory .'.' . $this->_tld, 'href' => 'http://' . $directory . '.' . $this->_tld ); } } } return $vhosts; } /** * Check single mass virtual host * * @param string $vhost Virtual Host name * @return string Errors */ public function PHP_checkVirtualHost($vhost) { $docRoot = $this->_doc_root; $htdocs = $docRoot . DIRECTORY_SEPARATOR . $vhost . DIRECTORY_SEPARATOR . 'htdocs'; $domain = $vhost . '.' . $this->_tld; $url = 'http://'.$domain; $error = array(); // 1. Check htdocs folder if (!$this->_is_valid_dir($htdocs)) { $error[] = 'Missing htdocs directory in: '.$this->getEnv('HOST_PATH_TO_WWW_DOCROOTS').'/'.$vhost.'/'; } if ($GLOBALS['ENABLE_VHOST_DNS_CHECK']) { // 2. Check /etc/resolv DNS entry $output; if ($this->_exec('getent hosts '.$domain, $output) !== 0) { $error[] = 'Missing entry in /etc/hosts:
127.0.0.1 '.$domain.''; } // 3. Check correct /etc/resolv entry $dns_ip = '127.0.0.1'; if (isset($output[0])) { $tmp = explode(' ', $output[0]); if (isset($tmp[0])) { $dns_ip = $tmp[0]; } } if ($dns_ip != '127.0.0.1') { $error[] = 'Error in /etc/hosts
'. 'Found:
'. ''.$dns_ip.' '.$domain.'
'. 'But it should be:
'. '127.0.0.1 '.$domain.'
'; } } if (is_array($error) && count($error)) { return implode('
', $error); } else { return ''; } } /********************************************************************************* * * Postgres Docker functions * *********************************************************************************/ /** * Read out PostgreSQL Server configuration by variable * * @param string|null $key Config key name * @return string|mixed[] */ public function Postgres_config($key = null) { // Get all configs as array if ($key === null) { $callback = function ($row, &$data) { $key = $row['name']; $val = $row['setting']; $data[$key] = $val; }; $sql = 'SELECT name, setting FROM pg_settings;'; $configs = loadClass('Postgres')->select($sql, $callback); return $configs ? $configs : array(); } else { // Get single config $callback = function ($row, &$data) use ($key) { $data = isset($row['setting']) ? $row['setting'] : false; }; $sql = "SELECT name, setting FROM pg_settings WHERE name = '".$key."';"; $val = loadClass('Postgres')->select($sql, $callback); return is_array($val) ? '' : $val; } } /********************************************************************************* * * Private functions * *********************************************************************************/ /** * Check if the directory exists or * in case of a symlink the target is an * existing directory. * * @param string $path The path. * @return boolean */ private function _is_valid_dir($path) { return (is_dir($path) || (is_link($path) && is_dir(readlink($path)))); } /** * Executes shell commands on the PHP-FPM Host * * @param string $cmd Command * @param string $output Reference to output * @return integer */ private function _exec($cmd, &$output = '') { // Clean output $output = ''; exec($cmd, $output, $exit_code); return $exit_code; } }