standardize property name of HTTP Kernel in Middleware classes

Created on 13 December 2024, 4 months ago

Problem/Motivation

Middleware classes such as ReverseProxyMiddleware, BanMiddleware all form a stack of decorated classes. Each one gets an HttpKernelInterface as its first constructor parameter.

However, this isn't always the same variable name which makes it confusing when looking at these classes.

Steps to reproduce

Do `ag -G Middleware __construct` and compare the parameter and property name for the http kernel:

> __construct(HttpKernelInterface $kernel

Confusing because there's also DrupalKernel.

> __construct(HttpKernelInterface $app) {

Also confusing.

Proposed resolution

Change all classes to be:

> this->httpKernel = $http_kernel

There is no need to BC handling as these are internal.

Remaining tasks

User interface changes

Introduced terminology

API changes

Data model changes

Release notes snippet

πŸ“Œ Task
Status

Active

Version

11.0 πŸ”₯

Component

other

Created by

πŸ‡¬πŸ‡§United Kingdom joachim

Live updates comments and jobs are added and updated live.
  • Novice

    It would make a good project for someone who is new to the Drupal contribution process. It's preferred over Newbie.

Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @joachim
  • First commit to issue fork.
  • πŸ‡¬πŸ‡§United Kingdom joachim

    @jvbrian You've made a fork and it says there's a commit you've made, but I don't see anything on the feature branch?

  • I have created the patch please review it

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

    You seem to have replaced $kernel wit $http_kernel everywhere, not just in the classes concerned in this issue, and also lots of places where it's actually the DrupalKernel!

    This issue is only about middleware classes.

    Also, please can you make a MR rather than a patch?

  • First commit to issue fork.
  • Pipeline finished with Failed
    3 months ago
    Total: 304s
    #379360
  • Pipeline finished with Success
    3 months ago
    #379367
  • πŸ‡΅πŸ‡ͺPeru heilop

    @joachim, I've created a Merge Request (MR) for your review.

    Please check the MR description for all the relevant details and changes I've made. Let me know if you need any updates.

  • πŸ‡¬πŸ‡§United Kingdom joachim
  • Pipeline finished with Failed
    3 months ago
    Total: 99s
    #379815
  • Pipeline finished with Success
    3 months ago
    Total: 974s
    #379818
  • πŸ‡¬πŸ‡§United Kingdom joachim

    Did

    `ag -G Middleware -Q 'HttpKernelInterface $'`

    to check the construct parameters, and

    `ag -G Middleware -Q '= $http_kernel'`

    to check the names of the properties, and it all looks good.

    Thanks!

  • πŸ‡³πŸ‡ΏNew Zealand quietone

    I read the IS, comments and the MR. I didn't find any unanswered questions.

    Is there a grep command to confirm that all instances have been changed?

    And what about tests? For example. this changes the name in core/lib/Drupal/Core/StackMiddleware/NegotiationMiddleware.php but not in the associated test, core/tests/Drupal/Tests/Core/StackMiddleware/NegotiationMiddlewareTest.php. That seems odd, at least to me. I think it would be better to change standardize them all. Is there a plan to do this in tests? I am not one to expand scope but it might make sense here.

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

    > $this->app = $this->prophesize(HttpKernelInterface::class);

    Good point about tests. I can see 3 tests in core/tests/Drupal/Tests/Core/StackMiddleware that mock an http kernel, and they get stacked with other kernels.

    It's highly unlikely someone would be doing step debugging here -- IIRC it all goes haywire with mocks -- but let's change it for consistency.

    > Is there a grep command to confirm that all instances have been changed?

    I came up with this when I posted the issue:

    > `ag -G Middleware __construct`

  • Status changed to Needs work 10 days ago
  • πŸ‡ΊπŸ‡ΈUnited States mradcliffe USA

    I performed Novice Triage on this issue. I am leaving the Novice tag on this issue because I think the requested changes from @quietone and confirmed by @joachim are clear. As well, we can confirm the uses again and update the issue summary to clarify how we found the changes.

  • I'll look into this issue at DrupalCon Atlanta 2025, probably until the end of the day.

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

    #Atlanta2025 working on this issue with @igorgoncalves

  • Pipeline finished with Success
    8 days ago
    Total: 397s
    #459022
  • Pipeline finished with Success
    8 days ago
    Total: 544s
    #459045
  • Pushed a few commits to update variable names in Middleware test files and resolve the merge conflict in `NegotiationMiddleware.php`.

  • πŸ‡²πŸ‡½Mexico dalin πŸ‡¨πŸ‡¦, πŸ‡²πŸ‡½, 🌍

    I've been mentoring @kwolford121 throughout the day. All the remaining names related to middleware are renamed. @kwolford121 is creating a follow-up issue for non-middleware renaming.

Production build 0.71.5 2024