class SiteAuditCheckExtensionsDuplicate in Site Audit 8.2
Same name and namespace in other branches
- 7 Check/Extensions/Duplicate.php \SiteAuditCheckExtensionsDuplicate
Class SiteAuditCheckExtensionsDuplicate.
Hierarchy
- class \SiteAuditCheckAbstract
Expanded class hierarchy of SiteAuditCheckExtensionsDuplicate
File
- Check/
Extensions/ Duplicate.php, line 10 - Contains \SiteAudit\Check\Extensions\Duplicate.
View source
class SiteAuditCheckExtensionsDuplicate extends SiteAuditCheckAbstract {
/**
* Implements \SiteAudit\Check\Abstract\getLabel().
*/
public function getLabel() {
return dt('Duplicates');
}
/**
* Implements \SiteAudit\Check\Abstract\getDescription().
*/
public function getDescription() {
return dt('Check for duplicate extensions in the site codebase.');
}
/**
* Implements \SiteAudit\Check\Abstract\getResultFail().
*/
public function getResultFail() {
}
/**
* Implements \SiteAudit\Check\Abstract\getResultInfo().
*/
public function getResultInfo() {
}
/**
* Implements \SiteAudit\Check\Abstract\getResultPass().
*/
public function getResultPass() {
return dt('No duplicate extensions were detected.');
}
/**
* Implements \SiteAudit\Check\Abstract\getResultWarn().
*/
public function getResultWarn() {
$ret_val = dt('The following duplicate extensions were found:');
$paths = array();
foreach ($this->registry['extensions_dupe'] as $name => $instances) {
foreach ($instances as $instance) {
$paths[$name][] = $instance['path'];
}
}
if (drush_get_option('html')) {
$ret_val = '<p>' . $ret_val . '</p>';
$ret_val .= '<table class="table table-condensed">';
$ret_val .= '<thead><tr><th>' . dt('Name') . '</th><th>' . dt('Paths') . '</th></thead>';
$ret_val .= '<tbody>';
foreach ($this->registry['extensions_dupe'] as $name => $infos) {
$ret_val .= '<tr><td>' . $name . '</td>';
$ret_val .= '<td>' . implode('<br/>', $paths[$name]) . '</td></tr>';
}
$ret_val .= '</tbody>';
$ret_val .= '</table>';
}
else {
foreach ($this->registry['extensions_dupe'] as $name => $infos) {
$ret_val .= PHP_EOL;
if (!drush_get_option('json')) {
$ret_val .= str_repeat(' ', 6);
}
$ret_val .= $name . PHP_EOL;
$extension_list = '';
foreach ($paths[$name] as $path) {
$extension_list .= str_repeat(' ', 8) . $path . PHP_EOL;
}
$ret_val .= rtrim($extension_list);
}
}
return $ret_val;
}
/**
* Implements \SiteAudit\Check\Abstract\getAction().
*/
public function getAction() {
if ($this->score != SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_PASS) {
return dt('Prune your codebase to have only one copy of any given extension.');
}
}
/**
* Implements \SiteAudit\Check\Abstract\calculateScore().
*/
public function calculateScore() {
$this->registry['extensions_dupe'] = array();
$drupal_root = drush_get_context('DRUSH_SELECTED_DRUPAL_ROOT');
$settings = \Drupal::service('settings');
$kernel = \Drupal::service('kernel');
$command = "find {$drupal_root} -xdev -type f -name '*.info.yml' -o -path './" . $settings
->get('file_public_path', $kernel
->getSitePath() . '/files') . "' -prune";
exec($command, $result);
foreach ($result as $path) {
$path_parts = explode('/', $path);
$name = substr(array_pop($path_parts), 0, -9);
// Safe duplicates.
if (in_array($name, array(
'drupal_system_listing_compatible_test',
'drupal_system_listing_incompatible_test',
'aaa_update_test',
))) {
continue;
}
if (!isset($this->registry['extensions_dupe'][$name])) {
$this->registry['extensions_dupe'][$name] = array();
}
$path = substr($path, strlen($drupal_root) + 1);
$version = '';
$info = file($drupal_root . '/' . $path);
foreach ($info as $line) {
if (strpos($line, 'version') === 0) {
$version_split = explode(':', $line);
if (isset($version_split[1])) {
$version .= trim(str_replace("'", '', $version_split[1]));
$path = $path . ' (' . $version . ')';
}
}
}
$this->registry['extensions_dupe'][$name][] = array(
'path' => $path,
'version' => $version,
);
}
// Review the detected extensions.
foreach ($this->registry['extensions_dupe'] as $extension => $instances) {
// No duplicates.
if (count($instances) == 1) {
unset($this->registry['extensions_dupe'][$extension]);
continue;
}
$paths_in_profile = 0;
$non_profile_index = 0;
$test_extensions = 0;
foreach ($instances as $index => $instance) {
// Ignore if it is a test extension.
if (strpos($instance['path'], '/tests/') !== FALSE) {
$test_extensions++;
continue;
}
if (strpos($instance['path'], 'profiles/') === 0) {
$paths_in_profile++;
}
else {
$non_profile_index = $index;
}
}
// If every path is within an installation profile
// or is a test extension, ignore.
if ($paths_in_profile + $test_extensions == count($instances)) {
unset($this->registry['extensions_dupe'][$extension]);
continue;
}
// Allow versions that are greater than what's in an installation profile
// if that version is enabled.
$extension_object = $this->registry['extensions'][$extension];
if ($paths_in_profile > 0 && count($instances) - $paths_in_profile == 1 && drush_get_extension_status($extension_object) == 'enabled' && $extension_object->info['version'] == $instances[$non_profile_index]['version'] && $instances[$non_profile_index]['version'] != '') {
$skip = TRUE;
foreach ($instances as $index => $info) {
if ($index != $non_profile_index && $info['version'] != '') {
if (version_compare($instances[$non_profile_index]['version'], $info['version']) < 1) {
$skip = FALSE;
break;
}
}
elseif ($info['version'] == '') {
$skip = FALSE;
break;
}
}
if ($skip === TRUE) {
unset($this->registry['extensions_dupe'][$extension]);
}
}
}
// Determine score.
if (count($this->registry['extensions_dupe'])) {
return SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_WARN;
}
return SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_PASS;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
SiteAuditCheckAbstract:: |
protected | property | Indicate that no other checks should be run after this check. | |
SiteAuditCheckAbstract:: |
private static | property | Use for checking whether custom code paths have been validated. | |
SiteAuditCheckAbstract:: |
protected | property | User has opted out of this check in configuration. | |
SiteAuditCheckAbstract:: |
protected | property | If set, will override the Report's percentage. | |
SiteAuditCheckAbstract:: |
protected | property | Use for passing data between checks within a report. | |
SiteAuditCheckAbstract:: |
protected | property | Quantifiable number associated with result on a scale of 0 to 2. | |
SiteAuditCheckAbstract:: |
constant | |||
SiteAuditCheckAbstract:: |
constant | |||
SiteAuditCheckAbstract:: |
constant | |||
SiteAuditCheckAbstract:: |
constant | |||
SiteAuditCheckAbstract:: |
public | function | Returns an array containing custom code paths or AUDIT_CHECK_SCORE_INFO. | |
SiteAuditCheckAbstract:: |
public | function | Returns the path of the executable. | |
SiteAuditCheckAbstract:: |
public | function | Returns the values of the valid options for a command. | |
SiteAuditCheckAbstract:: |
public | function | Get the report percent override, if any. | |
SiteAuditCheckAbstract:: |
public | function | Get the check registry. | |
SiteAuditCheckAbstract:: |
public | function | Gives path relative to DRUPAL_ROOT of the path is inside Drupal. | |
SiteAuditCheckAbstract:: |
public | function | Determine the result message based on the score. | |
SiteAuditCheckAbstract:: |
public | function | Get a quantifiable number representing a check result; lazy initialization. | |
SiteAuditCheckAbstract:: |
public | function | Get the CSS class associated with a score. | |
SiteAuditCheckAbstract:: |
public | function | Get the Drush message level associated with a score. | |
SiteAuditCheckAbstract:: |
public | function | Get a human readable label for a score. | |
SiteAuditCheckAbstract:: |
public | function | Logs error if unable to parse XML output. | |
SiteAuditCheckAbstract:: |
public | function | Display action items for a user to perform. | |
SiteAuditCheckAbstract:: |
public | function | Determine whether the check failed so badly that the report must stop. | |
SiteAuditCheckAbstract:: |
public | function | Constructor. | |
SiteAuditCheckExtensionsDuplicate:: |
public | function |
Implements \SiteAudit\Check\Abstract\calculateScore(). Overrides SiteAuditCheckAbstract:: |
|
SiteAuditCheckExtensionsDuplicate:: |
public | function |
Implements \SiteAudit\Check\Abstract\getAction(). Overrides SiteAuditCheckAbstract:: |
|
SiteAuditCheckExtensionsDuplicate:: |
public | function |
Implements \SiteAudit\Check\Abstract\getDescription(). Overrides SiteAuditCheckAbstract:: |
|
SiteAuditCheckExtensionsDuplicate:: |
public | function |
Implements \SiteAudit\Check\Abstract\getLabel(). Overrides SiteAuditCheckAbstract:: |
|
SiteAuditCheckExtensionsDuplicate:: |
public | function |
Implements \SiteAudit\Check\Abstract\getResultFail(). Overrides SiteAuditCheckAbstract:: |
|
SiteAuditCheckExtensionsDuplicate:: |
public | function |
Implements \SiteAudit\Check\Abstract\getResultInfo(). Overrides SiteAuditCheckAbstract:: |
|
SiteAuditCheckExtensionsDuplicate:: |
public | function |
Implements \SiteAudit\Check\Abstract\getResultPass(). Overrides SiteAuditCheckAbstract:: |
|
SiteAuditCheckExtensionsDuplicate:: |
public | function |
Implements \SiteAudit\Check\Abstract\getResultWarn(). Overrides SiteAuditCheckAbstract:: |