Change the filter in the details page for migration messages to a condition object

Created on 24 December 2024, 3 months ago
Updated 4 March 2025, about 1 month ago

Problem/Motivation

The filters in Drupal\migrate\Controller\MigrateMessageController are modeled on the code in the dblog module, so make the same changes as in πŸ“Œ Change the filter in the overview page of the dblog module to a condition object Active .

The details page for migration messages has a filter functionality. Currently is the filter creating a SQL string and that is add to the query with the $query->where(). The problem is that MongoDB does not support SQL strings. For MongoDB, the SQL string needs to be replaced with a condition object.

Proposed resolution

Replace the filter in the details page for migration messages to a condition object.

Remaining tasks

TBD

User interface changes

None

Introduced terminology

None

API changes

None

Data model changes

None

Release notes snippet

TBD

πŸ“Œ Task
Status

Active

Version

11.0 πŸ”₯

Component

dblog.module

Created by

πŸ‡ΊπŸ‡ΈUnited States benjifisher Boston area

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

Merge Requests

Comments & Activities

  • Issue created by @benjifisher
  • First commit to issue fork.
  • Pipeline finished with Failed
    about 1 month ago
    Total: 1927s
    #439940
  • Pipeline finished with Success
    about 1 month ago
    Total: 363s
    #439996
  • πŸ‡³πŸ‡±Netherlands daffie

    Changed the migration message filter to a condition object.

  • πŸ‡¦πŸ‡·Argentina dagmar Argentina

    Even when the code seems similar to dblog, this is a migration system related code. Moving to the right component. Maybe some tests?

  • πŸ‡³πŸ‡±Netherlands daffie

    @dagmar: There is already testing for this, see: Drupal\Tests\migrate\Functional\MigrateMessageFormTest.

  • πŸ‡ΊπŸ‡ΈUnited States benjifisher Boston area

    @dagmar: Thanks for fixing the component. I think I cloned the other issue and forgot to update that.

    I agree with @daffie in #6: we are refactoring the code, so the existing test coverage should be enough.

    I think there is room for simplification, so back to NW. See my comments on the MR.

  • Pipeline finished with Success
    28 days ago
    Total: 775s
    #441929
  • πŸ‡³πŸ‡±Netherlands daffie

    @benjifisher: Thank you for the great review. I think I have addressed all your remarks.

  • The Needs Review Queue Bot β†’ tested this issue. It no longer applies to Drupal core. Therefore, this issue status is now "Needs work".

    This does not mean that the patch necessarily needs to be re-rolled or the MR rebased. Read the Issue Summary, the issue tags and the latest discussion here to determine what needs to be done.

    Consult the Drupal Contributor Guide β†’ to find step-by-step guides for working with issues.

  • πŸ‡³πŸ‡±Netherlands daffie

    Everything is green.

  • The Needs Review Queue Bot β†’ tested this issue. It no longer applies to Drupal core. Therefore, this issue status is now "Needs work".

    This does not mean that the patch necessarily needs to be re-rolled or the MR rebased. Read the Issue Summary, the issue tags and the latest discussion here to determine what needs to be done.

    Consult the Drupal Contributor Guide β†’ to find step-by-step guides for working with issues.

  • πŸ‡ΊπŸ‡ΈUnited States benjifisher Boston area

    I think the testbot is doing a test merge of the feature branch from the MR into 11.x, and it finds merge conflicts. I do not have time right now to confirm that.

    I did notice, when I was reviewing, that another issue made the same changes to the performance test as this issue. That may or may not be the cause of the conflict. If not, then the MR should probably be updated to increment those two counts again.

  • Pipeline finished with Success
    27 days ago
    Total: 1162s
    #442568
  • πŸ‡³πŸ‡±Netherlands daffie

    @benjifisher: I think we have 1 open remark left and that is the one for not passing the database query by reference. As you are one of the subsystem maintainer of the migrate system, you may decide how you want this solved. Could you give a code example how you would like it solved, then I will implement it that way. I have now: $this->addFilterToQuery($request, $query);

  • πŸ‡ΊπŸ‡ΈUnited States benjifisher Boston area

    @daffie:

    You do not have to change how the method is called. Just change the declaration: instead of

      protected function addFilterToQuery(Request $request, SelectInterface &$query): void {
    

    make it

      protected function addFilterToQuery(Request $request, SelectInterface $query): void {
    

    Reminder to self: remember the T in RTBC.

  • πŸ‡ΊπŸ‡ΈUnited States benjifisher Boston area

    I notice that the current MR does not change the performance test. I notice that πŸ“Œ Remove cache tag checksum assertions from performance tests Active is now RTBC, so maybe we will not run into that problem in the future.

  • Pipeline finished with Success
    24 days ago
    Total: 1831s
    #444506
  • πŸ‡³πŸ‡±Netherlands daffie

    I have removed the by reference part of the $query parameter. The CI pipeline stays green.

    @benjifisher: Could you maybe explain why the by reference is not needed the $query parameter. We are changing the query in the method and we need those changes. Only it works without the by reference part. ???

  • πŸ‡ΊπŸ‡ΈUnited States benjifisher Boston area

    @daffie:

    I am sorry to be so slow in responding.

    It is kind of crazy, but true: as I said on the MR, "you almost never have to pass an object by reference." It is pretty well explained in the PHP manual. From the Introduction to Classes and Objects page (https://www.php.net/manual/en/oop5.intro.php):

    PHP treats objects in the same way as references or handles, meaning that each variable contains an object reference rather than a copy of the entire object. See Objects and References

    Follow that link to see an explanation and some examples.

    I will have a look now at the updates to the MR.

  • πŸ‡ΊπŸ‡ΈUnited States benjifisher Boston area

    I made 3 more comments on the MR (and resolved all the existing threads). Two are minor, but using an AND condition group instead of an OR condition group is important.

    I also considered whether the user input is handled securely. It is: all session data ends up inside $condition_or->condition(...), so it should be safe.

    I still need to do some manual testing once the AND condition is restored.

  • Pipeline finished with Success
    13 days ago
    Total: 1548s
    #453808
  • πŸ‡³πŸ‡±Netherlands daffie

    I am sorry to be so slow in responding.

    @benjifisher: No worries, I am very happy that you review.

    I have addressed all remarks from @benjifisher.

  • πŸ‡ΊπŸ‡ΈUnited States benjifisher Boston area

    @daffie:

    Even better: you removed the condition group completely. Good idea, I wish I had thought of it.

    The code looks great. I have resolved all the threads on the MR.

    Testing

    I hacked core/modules/node/migrations/d7_node_complete.yml to generate some messages:

    title:
        - plugin: log
          source: title
    

    I have a D7 site that I use for migration testing, with 100 nodes from devel_generate. On my D11 site, I enabled migrate_drupal_ui and imported the content from that site.

    Then another hack: I used SQL queries to change the level of several messages (10 each for level 2, 3, 4).

    After those hacks, I tested the filters: filtering on one or two levels (severity), filtering on "qu" in the message, filtering on both the level and the message. Everything worked as expected.

  • πŸ‡³πŸ‡±Netherlands daffie

    @benjifisher: Thank you for reviewing the issue. It is very much appreciated.

Production build 0.71.5 2024