Use the standard entity handler pattern

Created on 17 July 2024, 9 months ago

Problem/Motivation

Registration uses this pattern:

$handler = $this->entityTypeManager->getHandler('registration', 'host_entity');
$host_entity = $handler->createHostEntity($entity);

This means there is only ever one host_entity handler, that defined for the registration entity type.

It should use this pattern:

$this->entityTypeManager->getHandler($entity->getEntityTypeId(), 'registration_host');
$host_entity = $handler->createHostEntity($entity);

This would allow sites to define different handlers (and thuse host entity wrappers) for different entity types. Which is the whole point of using a handler AFAIK.

Additionally, by namespacing the handler id as registration_host we prevent collision with a module that has its own idea of host entity.

Steps to reproduce

Handlers are documented here:
https://www.drupal.org/docs/drupal-apis/entity-api/handlers β†’

The method signature is:

     * @param string $entity_type_id
     *   The entity type ID for this handler.
     * @param string $handler_type
     *   The handler type to create an instance for.
     *
     * @return object
     *   A handler instance.
     *
     * @throws \Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException
     */
    public function getHandler($entity_type_id, $handler_type);

Proposed resolution

1. Create a LegacyRegistrationHostEntityHandler class that extends RegistrationHostEntityHandler, and trigger a deprecation error when this class is used. Define this class as the handler in the registration entity annotation.

2. Use hook_entity_type_build to set RegistrationHostEntityHandler as the default registration_host handler on all entity types.

3. Update all handler uses to use the new pattern.

Remaining tasks

User interface changes

None.

API changes

Using the provided handler for the registration entity type is deprecated.

Data model changes

None.

πŸ“Œ Task
Status

Active

Version

3.1

Component

Registration Core

Created by

πŸ‡¬πŸ‡§United Kingdom jonathanshaw Stroud, UK

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

Merge Requests

Comments & Activities

  • Issue created by @jonathanshaw
  • Status changed to Needs review 9 months ago
  • πŸ‡¬πŸ‡§United Kingdom jonathanshaw Stroud, UK
  • πŸ‡¬πŸ‡§United Kingdom jonathanshaw Stroud, UK
  • Pipeline finished with Failed
    9 months ago
    Total: 351s
    #226906
  • Pipeline finished with Failed
    9 months ago
    Total: 297s
    #226956
  • Pipeline finished with Canceled
    9 months ago
    Total: 124s
    #226971
  • πŸ‡¬πŸ‡§United Kingdom jonathanshaw Stroud, UK
  • Pipeline finished with Canceled
    9 months ago
    Total: 324s
    #226975
  • Pipeline finished with Failed
    9 months ago
    #226977
  • Pipeline finished with Failed
    9 months ago
    #226987
  • Pipeline finished with Failed
    9 months ago
    Total: 235s
    #226996
  • Pipeline finished with Success
    9 months ago
    Total: 326s
    #227117
  • Pipeline finished with Success
    9 months ago
    Total: 423s
    #227149
  • πŸ‡¬πŸ‡§United Kingdom jonathanshaw Stroud, UK
  • πŸ‡ΊπŸ‡ΈUnited States john.oltman

    Thanks @jonathanshaw, good catch and what you have looks right to me. There are many instances of "getHandler('registration', 'host_entity')" in the module beyond wait list - I am thinking we should correct those to use the new pattern "getHandler($entity->getEntityTypeId(), 'registration_host_entity');" rather than using the deprecated example.

  • Pipeline finished with Failed
    8 months ago
    Total: 328s
    #236505
  • Pipeline finished with Failed
    8 months ago
    Total: 418s
    #236537
  • Status changed to RTBC 8 months ago
  • πŸ‡¬πŸ‡§United Kingdom jonathanshaw Stroud, UK

    I wonder if there's also value in adding a static helper to HostEntity:

    public static function create(Entity interface $entity) {
     $handler = \Drupal::entityTypeManager()->getHander($entity->getEntityTypeId(), 'registration_host_entity');
      return $hander->createHostEntity($entity);
    }
    
    
  • Status changed to Needs work 8 months ago
  • πŸ‡ΊπŸ‡ΈUnited States john.oltman

    Added a commit and tests are now passing. I will try to add a new test this week that proves that the old method triggers a deprecation warning and the new method doesn't. Then I can merge it.

  • Pipeline finished with Failed
    6 months ago
    Total: 309s
    #301630
  • Pipeline finished with Success
    6 months ago
    Total: 318s
    #301657
  • Pipeline finished with Canceled
    6 months ago
    Total: 208s
    #301660
  • Pipeline finished with Success
    6 months ago
    Total: 483s
    #301661
  • Pipeline finished with Failed
    6 months ago
    Total: 422s
    #301740
  • πŸ‡¬πŸ‡§United Kingdom jonathanshaw Stroud, UK

    I am having a lot of trouble getting the deprecation test to work on both D10 and D11.

  • Pipeline finished with Success
    6 months ago
    Total: 498s
    #304017
  • Pipeline finished with Success
    6 months ago
    Total: 344s
    #304045
  • Pipeline finished with Success
    6 months ago
    Total: 452s
    #304054
  • Pipeline finished with Success
    6 months ago
    Total: 444s
    #304070
  • πŸ‡¬πŸ‡§United Kingdom jonathanshaw Stroud, UK

    I finally got the deprecation tests working.

  • πŸ‡ΊπŸ‡ΈUnited States john.oltman

    This is really close. Left a couple of comments which may result in code changes. Once those comments are addressed we're good. Thanks for adding the deprecation tests.

  • πŸ‡¬πŸ‡§United Kingdom jonathanshaw Stroud, UK

    Answered on the MR, the code is all good AFAICS.

  • πŸ‡ΊπŸ‡ΈUnited States john.oltman

    Ah, makes sense, and I do now recall you mentioning this earlier. Will merge shortly.

  • πŸ‡ΊπŸ‡ΈUnited States john.oltman
  • Automatically closed - issue fixed for 2 weeks with no activity.

Production build 0.71.5 2024