Entity Usage not respecting configured settings

Created on 7 March 2025, 28 days ago

Problem/Motivation

The existing entity_usage_entity_presave() hook is recording entities in some cases when it should not.

The code is currently grabbing an ImmutableConfig object and treating as if were an array. The hook is written such that if the returned object is not an array, it will always proceed to record the entity. Since it is getting an ImmutableConfig passed to it, it will always record the entity regardless of configuration.

/**
 * Implements hook_entity_presave().
 */
function entity_usage_entity_presave(EntityInterface $entity): void {
  if (!$entity->isNew() && ($entity->hasLinkTemplate('canonical') || $entity->hasLinkTemplate('edit-form'))) {
    $enabled_target_entity_types = \Drupal::config('track_enabled_target_entity_types');
    // Every entity type is tracked if not set.
    if (!is_array($enabled_target_entity_types) || in_array($entity->getEntityTypeId(), $enabled_target_entity_types, TRUE)) {
      \Drupal::service(PreSaveUrlRecorder::class)->recordEntity($entity);
    }
  }
}

Steps to reproduce

Proposed resolution

/**
 * Implements hook_entity_presave().
 */
function entity_usage_entity_presave(EntityInterface $entity): void {
  if (!$entity->isNew() && ($entity->hasLinkTemplate('canonical') || $entity->hasLinkTemplate('edit-form'))) {
    $config = \Drupal::config('entity_usage.settings');
    $enabled_target_entity_types = $config->get('track_enabled_target_entity_types');
    // Every entity type is tracked if not set.
    if (!is_array($enabled_target_entity_types) || in_array($entity->getEntityTypeId(), $enabled_target_entity_types, TRUE)) {
      \Drupal::service(PreSaveUrlRecorder::class)->recordEntity($entity);
    }
  }
}

Remaining tasks

Review

User interface changes

None

API changes

None

Data model changes

None

πŸ› Bug report
Status

Active

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States daceej

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Production build 0.71.5 2024