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.
80 lines
2.7 KiB
80 lines
2.7 KiB
<?php
|
|
|
|
/**
|
|
* Validation object
|
|
*
|
|
* Standard: PSR-2
|
|
*
|
|
* @link http://www.php-fig.org/psr/psr-2 Full Documentation
|
|
*
|
|
* @package SC\DUPX\U
|
|
*/
|
|
|
|
defined('ABSPATH') || defined('DUPXABSPATH') || exit;
|
|
|
|
use Duplicator\Installer\Core\Params\PrmMng;
|
|
|
|
class DUPX_Validation_test_db_user_perms extends DUPX_Validation_abstract_item
|
|
{
|
|
protected $perms = array();
|
|
protected $errorMessages = array();
|
|
|
|
protected function runTest()
|
|
{
|
|
if (DUPX_Validation_database_service::getInstance()->skipDatabaseTests()) {
|
|
return self::LV_SKIP;
|
|
}
|
|
|
|
return DUPX_Validation_database_service::getInstance()->dbCheckUserPerms($this->perms, $this->errorMessages);
|
|
}
|
|
|
|
public function getTitle()
|
|
{
|
|
return 'Privileges: User Table Access';
|
|
}
|
|
|
|
protected function failContent()
|
|
{
|
|
return dupxTplRender('parts/validation/database-tests/db-user-perms', array(
|
|
'testResult' => self::LV_FAIL,
|
|
'perms' => $this->perms,
|
|
'failedPerms' => array_keys($this->perms, false, true),
|
|
'dbname' => PrmMng::getInstance()->getValue(PrmMng::PARAM_DB_NAME),
|
|
'dbuser' => PrmMng::getInstance()->getValue(PrmMng::PARAM_DB_USER),
|
|
'errorMessages' => $this->errorMessages
|
|
), false);
|
|
}
|
|
|
|
protected function passContent()
|
|
{
|
|
return dupxTplRender('parts/validation/database-tests/db-user-perms', array(
|
|
'testResult' => self::LV_PASS,
|
|
'perms' => $this->perms,
|
|
'dbname' => PrmMng::getInstance()->getValue(PrmMng::PARAM_DB_NAME),
|
|
'dbuser' => PrmMng::getInstance()->getValue(PrmMng::PARAM_DB_USER),
|
|
'errorMessages' => $this->errorMessages
|
|
), false);
|
|
}
|
|
|
|
protected function swarnContent()
|
|
{
|
|
return dupxTplRender('parts/validation/database-tests/db-user-perms', array(
|
|
'testResult' => self::LV_HARD_WARNING,
|
|
'perms' => $this->perms,
|
|
'dbname' => PrmMng::getInstance()->getValue(PrmMng::PARAM_DB_NAME),
|
|
'dbuser' => PrmMng::getInstance()->getValue(PrmMng::PARAM_DB_USER),
|
|
'errorMessages' => $this->errorMessages
|
|
), false);
|
|
}
|
|
|
|
protected function hwarnContent()
|
|
{
|
|
return dupxTplRender('parts/validation/database-tests/db-user-perms', array(
|
|
'testResult' => self::LV_HARD_WARNING,
|
|
'perms' => $this->perms,
|
|
'dbname' => PrmMng::getInstance()->getValue(PrmMng::PARAM_DB_NAME),
|
|
'dbuser' => PrmMng::getInstance()->getValue(PrmMng::PARAM_DB_USER),
|
|
'errorMessages' => $this->errorMessages
|
|
), false);
|
|
}
|
|
}
|
|
|