Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow param middleware to access param name #133

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

cableray
Copy link

@cableray cableray commented Nov 9, 2021

Change this binding of param handler call to the middleware itself, allowing access to param name. This allows for generic param middleware that can be re-used for multiple params.

Background

Express (used to) support a param call signature that included the param name, and this allowed for param middleware that could be applied to multiple params, and act accordingly. That has been changed, but this feature is useful, and it is annoying that there is no easy access to the param name metadata from inside the param middleware.

Alternatives do exist, such as a factory that takes the param name to construct the middleware:

function createParamMiddleware(paramName) {
  return function(ctx, next) {
    // from in here, the param name can be accessed
  };
};

router.param('foo', createParamMiddleware('foo'));

However, that duplicates the param name parameter. This can be worked around like this:

function createParamMiddleware(paramName) {
  return [paramName, function(ctx, next) {
    // from in here, the param name can be accessed
  }];
};

router.param(...createParamMiddleware('foo'));

But this is a bit too fancy for my preferences. It also makes the factory function have to know about the arguments param takes.

If the param name was somehow exposed to the middleware callback, this would be much easier. One option (as implemented) is passing the "middleware" object as the "this" binding:

function genericParamMiddleware(ctx, next) {
  // from in here, the param name can be accessed on `this`
  this.param; // => the param name
};


router.param('foo', genericParamMiddleware); // has access to the param name, 'foo'

An alternative would be to pass the param name (as express once did):

function genericParamMiddleware(ctx, next, paramName) {
  // the param name can be accessed as the third argument
  paramName; // => the param name
};


router.param('foo', genericParamMiddleware); // has access to the param name, 'foo'

This is a bit more explicit, but the drawback here is maintaining the argument order. If later more metadata about the middleware was desired, that would also need to be added to the arguments list. However, the "explicitness" might be worth it...

Feedback welcome, I hope to start productive discussion about this. :)

Change "this" binding of param handler call to the middleware itself,
allowing access to param name. This allows for generic param middlewares
that can be re-used for multiple params.
@etroynov
Copy link
Contributor

@cableray Hi can you check it?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants