Reset service to initial state

Created on 15 February 2025, about 2 months ago

Problem/Motivation

I have a use case that requires sending separate emails to different GovDelivery topics at the same time. However, I've discovered that when I call \Drupal::service('govdelivery_bulletins.add_bulletin_to_queue')->addTopic() for the second email, that the service still remembers the topic from the first email and therefore queues up an email with two topics.

There doesn't appear to be any way to erase the previous topic or otherwise reset the service back to its initial state prior to sending the second email.

Steps to reproduce

  foreach ($topics as $topic) {
    // Add an email to the GovDelivery queue
    \Drupal::service('govdelivery_bulletins.add_bulletin_to_queue')
      ->setFlag('dedupe', TRUE)
      ->setQueueUid($node->id() . "_" . $topic)
      ->setSubject($node->getTitle())
      ->setBody($body)
      ->addTopic($topic)
      ->addToQueue();
  }

Proposed resolution

Add a reset() function that re-initializes all of the private variables that only have public addVariable() functions that append values to the existing variable's value.

Remaining tasks

User interface changes

API changes

Data model changes

✨ Feature request
Status

Active

Version

1.10

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States RichardDavies Portland, Oregon

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

Merge Requests

Comments & Activities

  • Issue created by @RichardDavies
  • πŸ‡ΊπŸ‡ΈUnited States RichardDavies Portland, Oregon
  • πŸ‡ΊπŸ‡ΈUnited States swirt Florida

    Hi richarddavies I think your use case is exactly what this module was built for. So it ought to do what you want. It should not keep state from message to the next, however your telling it to dedupe the queue may be the cause of the problem you are seeing. When you set the dedupe flag to TRUE it will overwrite any time in the queue that matches the uuid you have assigned. WHen deduping the queue, the last one in wins.

    for example if you tried to queue up
    queueUid: 12_color title:green
    queueUid: 12_color title:blue
    queueUid: 12_color title:yellow

    Only the yellow one would exist in the queue and be sent to GovDelivery. If you set dedupeQueue to FALSE you would have all three in your queue to be sent to GovDelivery. Depending on your use case you might need to turn off deduping or make your queueUid more unique.

    Let me know if any of that might explain what you are seeing. I will also double check the code to make sure there is nothing keeping state, but I am fairly sure this would have surfaced long before now if that had been happening.

  • πŸ‡ΊπŸ‡ΈUnited States swirt Florida

    I should also point out that deduping the queue can be incredibly time consuming if you are adding a lot of items and should only be done in cases where you absolutely do not want multiple possibly conflicting messages being sent.

  • πŸ‡ΊπŸ‡ΈUnited States swirt Florida

    I see it now. It is accidentally keeping state on the add* methods and failing to reset them as part of addiToQueue()

    I am still a bit dumbfounded how this never surfaced on VA.gov but I suspect it is because we never changed category mid phhp session instance. I will get this resolved in the next few days.

    Thank you for reporting this.

  • πŸ‡ΊπŸ‡ΈUnited States swirt Florida

    richarddavies I took your patch and added a new method that does both the addToQueue and the reset. I preserved the original call the way it was so that if there were users of the module that set the categories, email addresses or topics outside of the loop and then looped through things to set the addToQueue we would not break their code by forcibly calling reset().

    It would be great if you could test this merge request out by just changing your code from addToQueue() to addToQueueAndReset()

  • πŸ‡ΊπŸ‡ΈUnited States RichardDavies Portland, Oregon

    Thank you for the quick response. Yes, I tested addToQueueAndReset() and it worked as expected.

  • πŸ‡ΊπŸ‡ΈUnited States swirt Florida

    This is fixed. I will release it shortly

  • πŸ‡ΊπŸ‡ΈUnited States swirt Florida

    This has been released with 8.x-1.11 β†’

    Thanks again @richarddavies for your contribution.

  • πŸ‡ΊπŸ‡ΈUnited States RichardDavies Portland, Oregon

    Thanks. You should also consider updating the example code on the module homepage to use the new method.

  • πŸ‡ΊπŸ‡ΈUnited States swirt Florida

    Good catch. I updated the README but forgot to click the little button that imports it to the project page. Doing that now.

Production build 0.71.5 2024