122 lines
3.0 KiB
PHP
122 lines
3.0 KiB
PHP
<?php
|
|
namespace Froxlor\Cron\Http\Php;
|
|
|
|
use Froxlor\Database\Database;
|
|
use Froxlor\Settings;
|
|
|
|
/**
|
|
* This file is part of the Froxlor project.
|
|
* Copyright (c) 2010 the Froxlor Team (see authors).
|
|
*
|
|
* For the full copyright and license information, please view the COPYING
|
|
* file that was distributed with this source code. You can also view the
|
|
* COPYING file online at http://files.froxlor.org/misc/COPYING.txt
|
|
*
|
|
* @copyright (c) the authors
|
|
* @author Michael Kaufmann <mkaufmann@nutime.de>
|
|
* @author Froxlor team <team@froxlor.org> (2010-)
|
|
* @license GPLv2 http://files.froxlor.org/misc/COPYING.txt
|
|
* @package Cron
|
|
*
|
|
* @link http://www.nutime.de/
|
|
* @since 0.9.16
|
|
*
|
|
*/
|
|
class PhpInterface
|
|
{
|
|
|
|
/**
|
|
* Domain-Data array
|
|
*
|
|
* @var array
|
|
*/
|
|
private $domain = array();
|
|
|
|
/**
|
|
* Interface object
|
|
*
|
|
* @var object
|
|
*/
|
|
private $interface = null;
|
|
|
|
/**
|
|
* Admin-User data array
|
|
*
|
|
* @var array
|
|
*/
|
|
private $admin_cache = array();
|
|
|
|
/**
|
|
* main constructor
|
|
*/
|
|
public function __construct($domain)
|
|
{
|
|
$this->domain = $domain;
|
|
$this->setInterface();
|
|
}
|
|
|
|
/**
|
|
* returns the interface-object
|
|
* from where we can control it
|
|
*/
|
|
public function getInterface()
|
|
{
|
|
return $this->interface;
|
|
}
|
|
|
|
/**
|
|
* set interface-object by type of
|
|
* php-interface: fcgid or php-fpm
|
|
* sets private $_interface variable
|
|
*/
|
|
private function setInterface()
|
|
{
|
|
// php-fpm
|
|
if ((int) Settings::Get('phpfpm.enabled') == 1) {
|
|
$this->interface = new Fpm($this->domain);
|
|
} elseif ((int) Settings::Get('system.mod_fcgid') == 1) {
|
|
$this->interface = new Fcgid($this->domain);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* return the php-configuration from the database
|
|
*
|
|
* @param int $php_config_id
|
|
* id of the php-configuration
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getPhpConfig($php_config_id)
|
|
{
|
|
$php_config_id = intval($php_config_id);
|
|
|
|
// If domain has no config, we will use the default one.
|
|
if ($php_config_id == 0) {
|
|
$php_config_id = 1;
|
|
}
|
|
|
|
if (! isset($this->php_configs_cache[$php_config_id])) {
|
|
$stmt = Database::prepare("
|
|
SELECT * FROM `" . TABLE_PANEL_PHPCONFIGS . "` WHERE `id` = :id");
|
|
$this->_php_configs_cache[$php_config_id] = Database::pexecute_first($stmt, array(
|
|
'id' => $php_config_id
|
|
));
|
|
if ((int) Settings::Get('phpfpm.enabled') == 1) {
|
|
$stmt = Database::prepare("
|
|
SELECT * FROM `" . TABLE_PANEL_FPMDAEMONS . "` WHERE `id` = :id");
|
|
$this->_php_configs_cache[$php_config_id]['fpm_settings'] = Database::pexecute_first($stmt, array(
|
|
'id' => $this->_php_configs_cache[$php_config_id]['fpmsettingid']
|
|
));
|
|
// override fpm daemon settings if set in php-config
|
|
if ($this->_php_configs_cache[$php_config_id]['override_fpmconfig'] == 1) {
|
|
$this->_php_configs_cache[$php_config_id]['fpm_settings']['limit_extensions'] = $this->_php_configs_cache[$php_config_id]['limit_extensions'];
|
|
$this->_php_configs_cache[$php_config_id]['fpm_settings']['idle_timeout'] = $this->_php_configs_cache[$php_config_id]['idle_timeout'];
|
|
}
|
|
}
|
|
}
|
|
|
|
return $this->_php_configs_cache[$php_config_id];
|
|
}
|
|
}
|