You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
396 lines
11 KiB
396 lines
11 KiB
12 years ago
|
<?php
|
||
|
/**
|
||
|
* @link http://www.yiiframework.com/
|
||
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
||
|
* @license http://www.yiiframework.com/license/
|
||
|
*/
|
||
|
|
||
12 years ago
|
if (version_compare(PHP_VERSION, '4.3', '<')) {
|
||
|
echo 'At least PHP 4.3 is required to run this script!';
|
||
|
exit(1);
|
||
|
}
|
||
|
|
||
12 years ago
|
/**
|
||
12 years ago
|
* YiiRequirementChecker allows checking, if current system meets the requirements for running the Yii application.
|
||
|
* This class allows rendering of the check report for the web and console application interface.
|
||
12 years ago
|
*
|
||
12 years ago
|
* Example:
|
||
12 years ago
|
*
|
||
12 years ago
|
* ~~~php
|
||
12 years ago
|
* require_once('path/to/YiiRequirementChecker.php');
|
||
12 years ago
|
* $requirementsChecker = new YiiRequirementChecker();
|
||
12 years ago
|
* $requirements = array(
|
||
|
* array(
|
||
|
* 'name' => 'PHP Some Extension',
|
||
|
* 'mandatory' => true,
|
||
|
* 'condition' => extension_loaded('some_extension'),
|
||
|
* 'by' => 'Some application feature',
|
||
|
* 'memo' => 'PHP extension "some_extension" required',
|
||
|
* ),
|
||
|
* );
|
||
|
* $requirementsChecker->checkYii()->check($requirements)->render();
|
||
12 years ago
|
* ~~~
|
||
12 years ago
|
*
|
||
|
* If you wish to render the report with your own representation, use [[getResult()]] instead of [[render()]]
|
||
|
*
|
||
|
* Requirement condition could be in format "eval:PHP expression".
|
||
|
* In this case specified PHP expression will be evaluated in the context of this class instance.
|
||
|
* For example:
|
||
12 years ago
|
*
|
||
|
* ~~~
|
||
12 years ago
|
* $requirements = array(
|
||
|
* array(
|
||
|
* 'name' => 'Upload max file size',
|
||
|
* 'condition' => 'eval:$this->checkUploadMaxFileSize("5M")',
|
||
|
* ),
|
||
|
* );
|
||
12 years ago
|
* ~~~
|
||
12 years ago
|
*
|
||
12 years ago
|
* Note: this class definition does not match ordinary Yii style, because it should match PHP 4.3
|
||
12 years ago
|
* and should not use features from newer PHP versions!
|
||
12 years ago
|
*
|
||
12 years ago
|
* @property array|null $result the check results, this property is for internal usage only.
|
||
12 years ago
|
*
|
||
12 years ago
|
* @author Paul Klimov <klimov.paul@gmail.com>
|
||
|
* @since 2.0
|
||
|
*/
|
||
|
class YiiRequirementChecker
|
||
|
{
|
||
12 years ago
|
/**
|
||
|
* Check the given requirements, collecting results into internal field.
|
||
|
* This method can be invoked several times checking different requirement sets.
|
||
12 years ago
|
* Use [[getResult()]] or [[render()]] to get the results.
|
||
12 years ago
|
* @param array|string $requirements requirements to be checked.
|
||
|
* If an array, it is treated as the set of requirements;
|
||
|
* If a string, it is treated as the path of the file, which contains the requirements;
|
||
12 years ago
|
* @return YiiRequirementChecker self instance.
|
||
|
*/
|
||
12 years ago
|
function check($requirements)
|
||
12 years ago
|
{
|
||
12 years ago
|
if (is_string($requirements)) {
|
||
|
$requirements = require($requirements);
|
||
|
}
|
||
12 years ago
|
if (!is_array($requirements)) {
|
||
12 years ago
|
$this->usageError('Requirements must be an array, "' . gettype($requirements) . '" has been given!');
|
||
12 years ago
|
}
|
||
12 years ago
|
if (!isset($this->result) || !is_array($this->result)) {
|
||
12 years ago
|
$this->result = array(
|
||
|
'summary' => array(
|
||
|
'total' => 0,
|
||
|
'errors' => 0,
|
||
|
'warnings' => 0,
|
||
|
),
|
||
|
'requirements' => array(),
|
||
|
);
|
||
|
}
|
||
12 years ago
|
foreach ($requirements as $key => $rawRequirement) {
|
||
|
$requirement = $this->normalizeRequirement($rawRequirement, $key);
|
||
12 years ago
|
$this->result['summary']['total']++;
|
||
12 years ago
|
if (!$requirement['condition']) {
|
||
|
if ($requirement['mandatory']) {
|
||
|
$requirement['error'] = true;
|
||
|
$requirement['warning'] = true;
|
||
12 years ago
|
$this->result['summary']['errors']++;
|
||
12 years ago
|
} else {
|
||
|
$requirement['error'] = false;
|
||
|
$requirement['warning'] = true;
|
||
12 years ago
|
$this->result['summary']['warnings']++;
|
||
12 years ago
|
}
|
||
|
} else {
|
||
|
$requirement['error'] = false;
|
||
|
$requirement['warning'] = false;
|
||
|
}
|
||
12 years ago
|
$this->result['requirements'][] = $requirement;
|
||
12 years ago
|
}
|
||
12 years ago
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
12 years ago
|
* Performs the check for the Yii core requirements.
|
||
|
* @return YiiRequirementChecker self instance.
|
||
|
*/
|
||
12 years ago
|
function checkYii()
|
||
12 years ago
|
{
|
||
12 years ago
|
return $this->check(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'requirements.php');
|
||
12 years ago
|
}
|
||
|
|
||
|
/**
|
||
12 years ago
|
* Return the check results.
|
||
12 years ago
|
* @return array|null check results in format:
|
||
|
* <code>
|
||
|
* array(
|
||
|
* 'summary' => array(
|
||
|
* 'total' => total number of checks,
|
||
|
* 'errors' => number of errors,
|
||
|
* 'warnings' => number of warnings,
|
||
|
* ),
|
||
|
* 'requirements' => array(
|
||
|
* array(
|
||
|
* ...
|
||
|
* 'error' => is there an error,
|
||
|
* 'warning' => is there a warning,
|
||
|
* ),
|
||
|
* ...
|
||
|
* ),
|
||
|
* )
|
||
|
* </code>
|
||
12 years ago
|
*/
|
||
12 years ago
|
function getResult()
|
||
12 years ago
|
{
|
||
|
if (isset($this->result)) {
|
||
|
return $this->result;
|
||
|
} else {
|
||
|
return null;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Renders the requirements check result.
|
||
|
* The output will vary depending is a script running from web or from console.
|
||
|
*/
|
||
12 years ago
|
function render()
|
||
12 years ago
|
{
|
||
12 years ago
|
if (!isset($this->result)) {
|
||
12 years ago
|
$this->usageError('Nothing to render!');
|
||
|
}
|
||
12 years ago
|
$baseViewFilePath = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'views';
|
||
12 years ago
|
if (!empty($_SERVER['argv'])) {
|
||
12 years ago
|
$viewFileName = $baseViewFilePath . DIRECTORY_SEPARATOR . 'console' . DIRECTORY_SEPARATOR . 'index.php';
|
||
12 years ago
|
} else {
|
||
12 years ago
|
$viewFileName = $baseViewFilePath . DIRECTORY_SEPARATOR . 'web' . DIRECTORY_SEPARATOR . 'index.php';
|
||
12 years ago
|
}
|
||
|
$this->renderViewFile($viewFileName, $this->result);
|
||
|
}
|
||
|
|
||
|
/**
|
||
12 years ago
|
* Checks if the given PHP extension is available and its version matches the given one.
|
||
|
* @param string $extensionName PHP extension name.
|
||
|
* @param string $version required PHP extension version.
|
||
|
* @param string $compare comparison operator, by default '>='
|
||
|
* @return boolean if PHP extension version matches.
|
||
|
*/
|
||
12 years ago
|
function checkPhpExtensionVersion($extensionName, $version, $compare = '>=')
|
||
12 years ago
|
{
|
||
|
if (!extension_loaded($extensionName)) {
|
||
|
return false;
|
||
|
}
|
||
|
$extensionVersion = phpversion($extensionName);
|
||
|
if (empty($extensionVersion)) {
|
||
|
return false;
|
||
|
}
|
||
|
return version_compare($extensionVersion, $version, $compare);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Checks if PHP configuration option (from php.ini) is on.
|
||
|
* @param string $name configuration option name.
|
||
|
* @return boolean option is on.
|
||
|
*/
|
||
12 years ago
|
function checkPhpIniOn($name)
|
||
12 years ago
|
{
|
||
|
$value = ini_get($name);
|
||
|
if (empty($value)) {
|
||
|
return false;
|
||
|
}
|
||
12 years ago
|
return ((integer)$value == 1 || strtolower($value) == 'on');
|
||
12 years ago
|
}
|
||
|
|
||
|
/**
|
||
|
* Checks if PHP configuration option (from php.ini) is off.
|
||
|
* @param string $name configuration option name.
|
||
|
* @return boolean option is off.
|
||
|
*/
|
||
12 years ago
|
function checkPhpIniOff($name)
|
||
12 years ago
|
{
|
||
|
$value = ini_get($name);
|
||
|
if (empty($value)) {
|
||
|
return true;
|
||
|
}
|
||
|
return (strtolower($value) == 'off');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Compare byte sizes of values given in the verbose representation,
|
||
|
* like '5M', '15K' etc.
|
||
|
* @param string $a first value.
|
||
|
* @param string $b second value.
|
||
|
* @param string $compare comparison operator, by default '>='.
|
||
|
* @return boolean comparison result.
|
||
|
*/
|
||
12 years ago
|
function compareByteSize($a, $b, $compare = '>=')
|
||
12 years ago
|
{
|
||
12 years ago
|
$compareExpression = '(' . $this->getByteSize($a) . $compare . $this->getByteSize($b) . ')';
|
||
12 years ago
|
return $this->evaluateExpression($compareExpression);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Gets the size in bytes from verbose size representation.
|
||
|
* For example: '5K' => 5*1024
|
||
|
* @param string $verboseSize verbose size representation.
|
||
|
* @return integer actual size in bytes.
|
||
|
*/
|
||
12 years ago
|
function getByteSize($verboseSize)
|
||
12 years ago
|
{
|
||
|
if (empty($verboseSize)) {
|
||
|
return 0;
|
||
|
}
|
||
|
if (is_numeric($verboseSize)) {
|
||
|
return (integer)$verboseSize;
|
||
|
}
|
||
|
$sizeUnit = trim($verboseSize, '0123456789');
|
||
|
$size = str_replace($sizeUnit, '', $verboseSize);
|
||
|
$size = trim($size);
|
||
|
if (!is_numeric($size)) {
|
||
|
return 0;
|
||
|
}
|
||
|
switch (strtolower($sizeUnit)) {
|
||
|
case 'kb':
|
||
|
case 'k': {
|
||
12 years ago
|
return $size * 1024;
|
||
12 years ago
|
}
|
||
|
case 'mb':
|
||
|
case 'm': {
|
||
12 years ago
|
return $size * 1024 * 1024;
|
||
12 years ago
|
}
|
||
|
case 'gb':
|
||
|
case 'g': {
|
||
12 years ago
|
return $size * 1024 * 1024 * 1024;
|
||
12 years ago
|
}
|
||
|
default: {
|
||
|
return 0;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Checks if upload max file size matches the given range.
|
||
|
* @param string|null $min verbose file size minimum required value, pass null to skip minimum check.
|
||
|
* @param string|null $max verbose file size maximum required value, pass null to skip maximum check.
|
||
|
* @return boolean success.
|
||
|
*/
|
||
12 years ago
|
function checkUploadMaxFileSize($min = null, $max = null)
|
||
12 years ago
|
{
|
||
|
$postMaxSize = ini_get('post_max_size');
|
||
|
$uploadMaxFileSize = ini_get('upload_max_filesize');
|
||
12 years ago
|
if ($min !== null) {
|
||
12 years ago
|
$minCheckResult = $this->compareByteSize($postMaxSize, $min, '>=') && $this->compareByteSize($uploadMaxFileSize, $min, '>=');
|
||
|
} else {
|
||
|
$minCheckResult = true;
|
||
|
}
|
||
12 years ago
|
if ($max !== null) {
|
||
12 years ago
|
var_dump($postMaxSize, $uploadMaxFileSize, $max);
|
||
|
$maxCheckResult = $this->compareByteSize($postMaxSize, $max, '<=') && $this->compareByteSize($uploadMaxFileSize, $max, '<=');
|
||
|
} else {
|
||
|
$maxCheckResult = true;
|
||
|
}
|
||
|
return ($minCheckResult && $maxCheckResult);
|
||
|
}
|
||
|
|
||
|
/**
|
||
12 years ago
|
* Renders a view file.
|
||
|
* This method includes the view file as a PHP script
|
||
|
* and captures the display result if required.
|
||
|
* @param string $_viewFile_ view file
|
||
|
* @param array $_data_ data to be extracted and made available to the view file
|
||
|
* @param boolean $_return_ whether the rendering result should be returned as a string
|
||
|
* @return string the rendering result. Null if the rendering result is not required.
|
||
|
*/
|
||
12 years ago
|
function renderViewFile($_viewFile_, $_data_ = null, $_return_ = false)
|
||
12 years ago
|
{
|
||
|
// we use special variable names here to avoid conflict when extracting data
|
||
|
if (is_array($_data_)) {
|
||
|
extract($_data_, EXTR_PREFIX_SAME, 'data');
|
||
|
} else {
|
||
|
$data = $_data_;
|
||
|
}
|
||
|
if ($_return_) {
|
||
|
ob_start();
|
||
|
ob_implicit_flush(false);
|
||
|
require($_viewFile_);
|
||
|
return ob_get_clean();
|
||
|
} else {
|
||
|
require($_viewFile_);
|
||
|
}
|
||
12 years ago
|
}
|
||
|
|
||
|
/**
|
||
|
* Normalizes requirement ensuring it has correct format.
|
||
|
* @param array $requirement raw requirement.
|
||
|
* @param int $requirementKey requirement key in the list.
|
||
|
* @return array normalized requirement.
|
||
|
*/
|
||
12 years ago
|
function normalizeRequirement($requirement, $requirementKey = 0)
|
||
12 years ago
|
{
|
||
|
if (!is_array($requirement)) {
|
||
|
$this->usageError('Requirement must be an array!');
|
||
|
}
|
||
|
if (!array_key_exists('condition', $requirement)) {
|
||
|
$this->usageError("Requirement '{$requirementKey}' has no condition!");
|
||
|
} else {
|
||
|
$evalPrefix = 'eval:';
|
||
12 years ago
|
if (is_string($requirement['condition']) && strpos($requirement['condition'], $evalPrefix) === 0) {
|
||
12 years ago
|
$expression = substr($requirement['condition'], strlen($evalPrefix));
|
||
|
$requirement['condition'] = $this->evaluateExpression($expression);
|
||
|
}
|
||
|
}
|
||
|
if (!array_key_exists('name', $requirement)) {
|
||
12 years ago
|
$requirement['name'] = is_numeric($requirementKey) ? 'Requirement #' . $requirementKey : $requirementKey;
|
||
12 years ago
|
}
|
||
|
if (!array_key_exists('mandatory', $requirement)) {
|
||
|
if (array_key_exists('required', $requirement)) {
|
||
|
$requirement['mandatory'] = $requirement['required'];
|
||
|
} else {
|
||
|
$requirement['mandatory'] = false;
|
||
|
}
|
||
|
}
|
||
|
if (!array_key_exists('by', $requirement)) {
|
||
|
$requirement['by'] = 'Unknown';
|
||
|
}
|
||
|
if (!array_key_exists('memo', $requirement)) {
|
||
|
$requirement['memo'] = '';
|
||
|
}
|
||
|
return $requirement;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Displays a usage error.
|
||
|
* This method will then terminate the execution of the current application.
|
||
|
* @param string $message the error message
|
||
|
*/
|
||
12 years ago
|
function usageError($message)
|
||
12 years ago
|
{
|
||
|
echo "Error: $message\n\n";
|
||
|
exit(1);
|
||
|
}
|
||
12 years ago
|
|
||
12 years ago
|
/**
|
||
|
* Evaluates a PHP expression under the context of this class.
|
||
|
* @param string $expression a PHP expression to be evaluated.
|
||
|
* @return mixed the expression result.
|
||
|
*/
|
||
12 years ago
|
function evaluateExpression($expression)
|
||
12 years ago
|
{
|
||
12 years ago
|
return eval('return ' . $expression . ';');
|
||
12 years ago
|
}
|
||
12 years ago
|
|
||
|
/**
|
||
|
* Returns the server information.
|
||
|
* @return string server information.
|
||
|
*/
|
||
12 years ago
|
function getServerInfo()
|
||
12 years ago
|
{
|
||
|
$info = isset($_SERVER['SERVER_SOFTWARE']) ? $_SERVER['SERVER_SOFTWARE'] : '';
|
||
|
return $info;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns the now date if possible in string representation.
|
||
|
* @return string now date.
|
||
|
*/
|
||
12 years ago
|
function getNowDate()
|
||
12 years ago
|
{
|
||
|
$nowDate = @strftime('%Y-%m-%d %H:%M', time());
|
||
|
return $nowDate;
|
||
|
}
|
||
12 years ago
|
}
|