When changing recurrance, identical date combinations should not be deleted & recreated.

Created on 16 August 2024, 8 months ago
Updated 17 September 2024, 7 months ago

Let's assume you have an eventseries, with 3 custom dates:

- 1st of april, 2024, 10:00 - 12:00
- 2nd of april 2024, 10:00 - 12:00
- 3rd of april 2024, 10:00 - 12:00

Now, let's say that we want to add a 4th of april.
If an editor goes to the series edit page, they and add the 4th of april, the 3 existing instances will be deleted, and re-created.

This is a problem for anything that uses APIs, as the instances will get new IDs.
It is also a problem if any of the existing instances have had custom values added.

I can see in the code that we have a "events_to_create" array. I'd expect this array to loop through, and check that if any date combination already exists, we should not delete that - and should not create it again.

The same concept also applies for non-custom - if you update an series that only happened on tuesdays, to also happen on wednesdays.

I have a merge request ready, that I will attach. It also cleans up some of the related code, as it was duplicated.

πŸ“Œ Task
Status

Needs work

Version

2.0

Component

Recurring Events (Main module)

Created by

πŸ‡©πŸ‡°Denmark ras-ben Copenhagen

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

Merge Requests

Comments & Activities

  • Issue created by @ras-ben
  • Pipeline finished with Failed
    8 months ago
    Total: 216s
    #255745
  • Pipeline finished with Failed
    8 months ago
    #255752
  • Pipeline finished with Success
    8 months ago
    Total: 149s
    #259982
  • πŸ‡ΊπŸ‡¦Ukraine abramm Lutsk

    The MR doesn't correctly account included and excluded dates; that's likely because include/exclude logic is handled in the recurring_events_event_instances_pre_create hook implementation (recurring_events_recurring_events_event_instances_pre_create_alter). This causes an issue with the removal of instances that are no longer in the range.

    The proposed code change calls this hook only for events instances to be created while originally it was called for *all* instances.

    Steps to reproduce:

    1) Create the weekly event series, starting from e.g. the beginning of the year and ending at the end of the year.
    2) Observe 51 instances (or whatever the number of weeks is in range) created.
    3) Change the included date range to include only one month from the range, save the series.

    Expected: all instances except those in the included range are deleted.
    Actual: none of the instances are deleted.

    Note: I'm talking about the Excluded dates and Included dates fields, which are below the normal range selection.

  • Status changed to Needs work 7 months ago
  • πŸ‡ΊπŸ‡¦Ukraine abramm Lutsk
  • Pipeline finished with Success
    7 months ago
    Total: 165s
    #272276
  • πŸ‡ΊπŸ‡¦Ukraine abramm Lutsk

    I've pushed a fix for the issue outlined in #3 (hope @ras-ben doesn't mind; otherwise, feel free to remove/squash my commit),
    Attaching a patch to apply via composer.json.

  • Pipeline finished with Success
    7 months ago
    Total: 189s
    #280980
  • πŸ‡©πŸ‡°Denmark kasperg

    > The MR doesn't correctly account included and excluded dates.

    I tested the updated MR by creating a weekly event over a year and excluding 11 of the 12 months. This resulted in removal of the expected events while the others were left untouched.

  • Pipeline finished with Success
    7 months ago
    Total: 136s
    #286086
  • πŸ‡§πŸ‡¬Bulgaria pfrenssen Sofia

    Bumping this to major since it can cause unexpected data loss.

    Let's add some test coverage for this so we can ascertain that this works as expected.

  • πŸ‡§πŸ‡¬Bulgaria pfrenssen Sofia

    I had a quick look at the patch but in its current form it is not yet taking advantage of the EventInstanceCreator plugin system that was added in ✨ By updating a series, it deletes all the eventinstances and recreates them, which deletes all information stored on the instance. Active with the specific intent to make this use case possible in a flexible way.

    We should definitely make use of this, and add a new plugin like an UnchangedDateRangePreservingEventInstanceCreator that users can opt-in to.

    Assigning to do an in-depth review.

  • πŸ‡§πŸ‡¬Bulgaria pfrenssen Sofia
  • πŸ‡©πŸ‡°Denmark ras-ben Copenhagen

    I think your comments are excellent @pfrenssen, but I dont know if I'll have the time this month to look into fixing them - so, if anyone has the time and expertise, you are very welcome :)

  • πŸ‡ΊπŸ‡ΈUnited States awolfey

    Should this bug be critical? It's on the edge, but it does cause loss of existing data in custom fields added to the instance entity.

  • πŸ‡§πŸ‡¬Bulgaria pfrenssen Sofia

    @awolfey, no this is not critical. It is also not a bug, this is just how it was originally designed. There is a very clear warning shown to the user that the data loss will occur and they have to confirm it.

    This is a known shortcoming. The groundwork for solving this has been laid in ✨ By updating a series, it deletes all the eventinstances and recreates them, which deletes all information stored on the instance. Active . There is also very interesting prior discussion in that issue.

    There is also ✨ Provide an EventInstanceCreator plugin that does nothing Active which has a simple but very effective solution that can be implemented as a hook and is waiting for review.

Production build 0.71.5 2024