[PP-1] NodeRouteProvider should extend DefaultHtmlRouteProvider

Created on 11 May 2016, almost 9 years ago
Updated 30 January 2023, about 2 years ago

Problem/Motivation

NodeRouteProvider does not extend DefaultHtmlRouteProvider. Thus, it contains duplicated logic.

Proposed resolution

Make NodeRouteProvider extend DefaultHtmlRouteProvider.

Remaining tasks

Review.

User interface changes

None.

API changes

The 'node.add' and 'node.add_page' routes are deprecated and replaced by 'entity.node.add_form' and 'entity.node.add_page' routes without any BC break.

[
'node.add_page' => 'entity.node.add_page',
'node.add' => 'entity.node.add_form',
];

If someone has a route provider that extends NodeRouteProvider and has e.g. a getCanonicalRoute() with different parameters than DefaultHtmlRouteProvider this could break. I think that is something we can get away with in a minor version but I guess we could write a change notice to be nice.

Data model changes

None.

Blocked on

On

πŸ“Œ Task
Status

Needs work

Version

10.1 ✨

Component
Node systemΒ  β†’

Last updated 2 days ago

No maintainer
Created by

πŸ‡©πŸ‡ͺGermany tstoeckler Essen, Germany

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

Merge Requests

Comments & Activities

Not all content is available!

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

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

    Apart from a re-roll or rebase, this issue may need more work to address feedback in the issue or MR comments. To progress an issue, incorporate this feedback as part of the process of updating the issue. This helps other contributors to know what is outstanding.

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

  • First commit to issue fork.
  • πŸ‡¦πŸ‡ΊAustralia acbramley

    Did my best to reroll #94 onto 11.x but the deprecation stuff is a bit new to me. It all changed in #3272779: [Symfony 6.1] Replace deprecationListenerTrait with PHPUnitBridge ignoreFile β†’ so hopefully I've done it right.

  • Pipeline finished with Failed
    over 1 year ago
    Total: 754s
    #43604
  • Pipeline finished with Failed
    about 1 year ago
    Total: 630s
    #134871
  • First commit to issue fork.
  • Pipeline finished with Canceled
    8 months ago
    Total: 170s
    #234413
  • Pipeline finished with Failed
    8 months ago
    Total: 855s
    #234414
  • First commit to issue fork.
  • Pipeline finished with Failed
    8 months ago
    Total: 89s
    #244340
  • πŸ‡³πŸ‡ΏNew Zealand quietone

    This needed a rebase, which I did, and then updated the deprecation messages. That should help the Kernel tests to pass. I ran ManageFieldsFunctionalTest::testHelpDescriptions locally and it failed with access denied.

  • Pipeline finished with Failed
    8 months ago
    Total: 95s
    #244352
  • Status changed to Needs review 8 months ago
  • πŸ‡¬πŸ‡§United Kingdom joachim

    The problem was the requirements on the routes, which were keys which didn't exist any more -- probably from an older version of this MR, referring to requirements handlers which have been removed since.

    ( ✨ add a way to manually use the test site from a Functional test Needs review was useful here for debugging!)

  • Pipeline finished with Failed
    8 months ago
    Total: 153s
    #244655
  • Pipeline finished with Success
    8 months ago
    Total: 1486s
    #245016
  • Pipeline finished with Success
    8 months ago
    Total: 592s
    #245040
  • Status changed to Needs work 8 months ago
  • πŸ‡¬πŸ‡§United Kingdom joachim

    Oh yes -- should we move most of core/modules/node/src/RouteProcessor/NodeDeprecatedRouteProcessor.php to a common class and leave just the $routeMap & the deprecation message in that class, so it can be reused in future route deprecations?

  • Status changed to Postponed 4 months ago
  • πŸ‡·πŸ‡΄Romania amateescu

    I think it would be better if we do this after πŸ“Œ Support route aliasing (Symfony 5.4) and allow deprecating the route name Needs work , with the benefit of having a lot less BC code and test coverage to maintain.

  • πŸ‡¦πŸ‡ΊAustralia acbramley
  • Pipeline finished with Failed
    2 months ago
    Total: 421s
    #404147
  • πŸ‡·πŸ‡΄Romania amateescu

    Updated the MR to use the new route deprecation mechanism.

  • Pipeline finished with Success
    2 months ago
    Total: 4426s
    #404157
  • πŸ‡«πŸ‡·France andypost

    Thank you! looks ready

  • πŸ‡¨πŸ‡­Switzerland berdir Switzerland

    Updated the change record a bit, removed a suggestion to create those route through a node entity by creating it, that just isn't a good idea because creating a content entity is slow.

    I think it might also be useful to have a route match check as an example, because that part does _not_ have BC layer still, the current route is just the current route, it won't support the old path.

    I'm also not not sure about the added ignored deprecations. I assume there's no easy way around that with update functions and what not, but that means contrib will actually not see this and it's mostly hidden. We usually only use this for third party deprecations that we don't control.

  • πŸ‡¬πŸ‡§United Kingdom longwave UK

    Yeah I don't think we can add those deprecations to .deprecation-ignore.txt, otherwise they will also get ignored by contrib and custom modules? What happens if we just remove that - we can hopefully work around any deprecations that are triggered at update time, and the idea is we shouldn't see any at runtime.

  • Pipeline finished with Failed
    2 months ago
    Total: 900s
    #405018
  • Pipeline finished with Success
    2 months ago
    Total: 864s
    #407074
  • πŸ‡·πŸ‡΄Romania amateescu

    Removed those ignored deprecations and all the usages of the deprecated route names. Also updated the CR to mention route match checks :)

  • πŸ‡·πŸ‡΄Romania amateescu

    I've searched contrib usage for the node.add and node.add_page routes, and it seems they're quite popular. Should we keep them around until Drupal 13 to give folks more time to update?

  • πŸ‡¨πŸ‡­Switzerland berdir Switzerland

    Nice, seems like that was less problematic than I assumed, no update problems because it's still in a database or something. And lots of outdated uses that were hidden.

    IMHO, D12 deprecation is not a huge deal, I'm much more concerned about all the cases that check the current route, because we have no BC for $routeMatch->getRouteName() == 'node.add', that's just not possible (e.g. http://codcontrib.hank.vps-private.net/node/35562366#line-138). That specific example should check if the node is new or not, but there are tons of them, in breadcrumb builders, block and alter hooks and they will all break.

  • πŸ‡¬πŸ‡§United Kingdom catch

    because we have no BC for $routeMatch->getRouteName() == 'node.add', that's just not possible

    This could probably be a Drupal phpstan rule - look for that call with a long list of deprecated routes and warn people to update.

  • πŸ‡¬πŸ‡§United Kingdom longwave UK

    @berdir ah yeah I bet that is going to hit a bunch of things. Not sure if this is possible but I wonder if we can teach PHPStan about route name strings (e.g. the return value of getRouteName()) and then find uses of deprecated route names?

  • πŸ‡¬πŸ‡§United Kingdom catch

    Crossposted with @longwave in an amusing way. Let's open an issue against https://github.com/mglaman/phpstan-drupal - is that the right place?

  • πŸ‡·πŸ‡΄Romania amateescu

    Another option would be to load _all_ route aliases in the route match service, then in getRouteName() trigger the deprecation if the passed-in route name is an alias (and deprecated).

  • πŸ‡¬πŸ‡§United Kingdom longwave UK

    @catch I think that would be a place to start, we could and should also start adding these rules directly to core where it makes sense but @mglaman might have good ideas first.

  • πŸ‡¨πŸ‡­Switzerland berdir Switzerland

    a phpstan rule won't prevent that code breaks, it will just assist in updating it. But it's better than nothing.

    There are lots of variations on this. If you look through the matches, there's also stuff like

    $route_name = \Drupal::routeMatch()->getRouteName();
    if (in_array($route_name, ['node.add', ...]))

    there are switch statements with that and so on.

  • πŸ‡¬πŸ‡§United Kingdom longwave UK

    That's what I mean about teaching PHPStan, I don't know how far you can go but if you can tell it that the return type of getRouteName() is specifically a route-name-string (similar to how it handles class-string), if it later gets compared against a fixed set of deprecated route-name-strings can it report on that?

  • πŸ‡¬πŸ‡§United Kingdom catch

    Discussed this a bit more in slack with @amateescu and @longwave.

    We could add RouteMatch::isRouteName($route_name) or RouteMatch::isRoute($route_name), and then deprecate RouteMatch::getRouteName() altogether.

    In RouteMatch::isRoute($route_name); if the route name is an alias and deprecated, we can make it work so it returns TRUE for aliased routes, but also issues a deprecation if the route is an alias and deprecated.

    If we do that, we don't need a phpstan rule. Obviously the new method would only work for modules that have updated to use the new method.

    I think we should open a new issue for that, and postpone this issue on that one. If we decide not to do it, we could come back here and do the phpstan rule, but it seems like a more robust way to go about things.

  • πŸ‡¬πŸ‡§United Kingdom longwave UK

    FWIW from Symfony 6.4 they allow autogenerated route names based on class/method names, which avoids the magic strings that we currently use: https://symfony.com/blog/new-in-symfony-6-4-fqcn-based-routes

  • πŸ‡¬πŸ‡§United Kingdom oily Greater London

    Can we please provide more info on the DRY violation. How many methods are repeated and roughly what % of the code is repeated?

  • πŸ‡¬πŸ‡§United Kingdom oily Greater London

    Reviewed the code. No comments added. Test-only test fails as it should. All green

  • πŸ‡·πŸ‡΄Romania amateescu

    Opened the issue that was proposed in #129, but I quickly found out that we can't deprecate \Drupal\Core\Routing\RouteMatchInterface::getRouteName() because there are many legitimate use cases for it, as mentioned in that issue's summary.

    Which leaves us with the PHPStan rule :) Since https://github.com/mglaman/phpstan-drupal is not managed by the core team, I think that rule can't be a hard blocker for this issue..

  • Pipeline finished with Failed
    about 2 months ago
    Total: 543s
    #425896
  • Pipeline finished with Success
    about 2 months ago
    #425901
  • Status changed to Needs review 24 days ago
  • First commit to issue fork.
  • Pipeline finished with Success
    24 days ago
    Total: 762s
    #447768
  • πŸ‡ΊπŸ‡ΈUnited States smustgrave

    From what I can tell all open threads are open and the follow up for checking the route opened already.

    Tests appear to be passing but going to rebase as it's 100+ commits back and seems like a big shift, still passes!

    Should this be highlighted 11.2 priority if it gets in?

    Don't see any open threads or conversations on the MR and deprecations seem correct. Going to go on a limb and mark it

Production build 0.71.5 2024