HookEventDispatcherInterface::USER_CANCEL does not get invoked for "user_cancel_delete"

Created on 13 August 2021, over 3 years ago
Updated 20 October 2024, 6 months ago

Problem/Motivation

With the "User Event Dispatcher" module enabled, event subscribers for HookEventDispatcherInterface::USER_CANCEL do not get invoked if the deletion method is "user_cancel_delete". This appears to be because core does not invoke hook_user_cancel for this deletion method, per the docs for that hook; looks like this was changed in #705306: user_cancel_delete method calls into a "standard" user_delete_multiple API . Though this explains the root cause of the behavior, it's a bit counter-intuitive if you intend to fire something when an account is canceled by any means.

Steps to reproduce

  1. Install "User Event Dispatcher".
  2. Implement an event subscriber that subscribes to HookEventDispatcherInterface::USER_CANCEL.
  3. Create a user on the site.
  4. Delete the user, selecting the option to "Delete the account and its content".

Proposed resolution

I would recommend either:

  1. That this module ensure that HookEventDispatcherInterface::USER_CANCEL gets called for a "user_cancel_delete" cancellation method by implementing hook_user_delete to synthetically trigger the event;
    OR
  2. That this module provide a separate event called something like HookEventDispatcherInterface::USER_CANCEL_DELETE that is invoked for this particular event so that an implementer can choose to listen to that event separately from the normal cancellation hook.

Remaining tasks

User interface changes

API changes

Data model changes

🐛 Bug report
Status

Closed: works as designed

Version

4.0

Component

Code

Created by

🇺🇸United States GuyPaddock

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

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • 🇮🇩Indonesia el7cosmos 🇮🇩 GMT+7
    /**
     * This hook is NOT invoked for the 'user_cancel_delete' account cancellation
     * method. To react to that method, implement hook_ENTITY_TYPE_predelete() or
     * hook_ENTITY_TYPE_delete() for user entities instead.
     */
    

    This can be achieved by subscribing to:

    • \Drupal\core_event_dispatcher\EntityHookEvents::ENTITY_PRE_DELETE
    • \Drupal\core_event_dispatcher\EntityHookEvents::ENTITY_DELETE
Production build 0.71.5 2024