You are here

public function ExtensionsDuplicate::calculateScore in Site Audit 8.3

.

Overrides SiteAuditCheckBase::calculateScore

File

src/Plugin/SiteAuditCheck/ExtensionsDuplicate.php, line 95

Class

ExtensionsDuplicate
Provides the ExtensionsDuplicate Check.

Namespace

Drupal\site_audit\Plugin\SiteAuditCheck

Code

public function calculateScore() {
  $extension_list = \Drupal::service('extension.list.module');
  $this->registry->extensions_dupe = [];
  $drupal_root = 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, [
      '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] = [];
    }
    $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][] = [
      'path' => $path,
      'version' => $version,
    ];
  }

  // Review the detected extensions.
  $moduleHandler = \Drupal::service('module_handler');
  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.
    if ($paths_in_profile > 0 && count($instances) - $paths_in_profile == 1 && $moduleHandler
      ->moduleExists($extension) && $extension_list
      ->getExtensionInfo($extension)['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 SiteAuditCheckBase::AUDIT_CHECK_SCORE_WARN;
  }
  return SiteAuditCheckBase::AUDIT_CHECK_SCORE_PASS;
}