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

filters/builtin: drop specified header value #3457

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

Conversation

AlexanderYastrebov
Copy link
Member

Extend dropRequestHeader and dropResponseHeader to support optional second value argument and drop only this value when specified.

@AlexanderYastrebov AlexanderYastrebov added enhancement major moderate risk, for example new API, small filter changes that have no risk like refactoring or logs labels Mar 24, 2025
@AlexanderYastrebov AlexanderYastrebov marked this pull request as draft March 24, 2025 19:45
header.Del(f.key)
} else {
k := textproto.CanonicalMIMEHeaderKey(f.key)
header[k] = slices.DeleteFunc(header[k], func(v string) bool { return v == f.value })
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think value should also be case insensitive.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My idea was to have a low-level primitive to drop a specific value.
For setting and adding header we do not do any modification to the value.

To support regexp we may consider changing modRequestHeader such that it deletes the matching header if "the replacement (string)" parameter is empty (or absent) or maybe add a whole new filter.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we should add another filter dropRequestHeaderRegexp maybe?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, but I'd wait until we have a usecase for regexp value.
This change is useful to mitigate #3456

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could a third boolean parameter to enable case-insensitive comparison be an alternative to regex?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It could be done like that of course but lets wait for the usecase.

I initially considered to add a new filter dropRequestHeaderValue then decided to extend existing one but we should wary about how much logic we cram into it.

These header filters are basic primitives and building blocks and I think we should keep them simple. For higher-level or interesting logic we can always add new filters.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we should add another filter dropRequestHeaderRegexp maybe?

Indeed, thanks, a new dropRequestHeaderRegexp would be better because exact value match is a very simple regexp (foo -> ^foo$ ), stdlib handles it as a special case of fast prefix check, we already use it e.g. in HeaderRegexp and it covers many other usecases.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could a third boolean parameter to enable case-insensitive comparison be an alternative to regex?

This could be achieved by regexp flags (e.g. ^(?i)foo$)

Extend `dropRequestHeader` and `dropResponseHeader` to support
optional second value argument and drop only this value when specified.

Signed-off-by: Alexander Yastrebov <[email protected]>
@AlexanderYastrebov AlexanderYastrebov force-pushed the filters/builtin/drop-header-value branch from 17cabc6 to fc717bb Compare March 28, 2025 12:40
@AlexanderYastrebov AlexanderYastrebov marked this pull request as ready for review March 28, 2025 12:40
@AlexanderYastrebov AlexanderYastrebov marked this pull request as draft April 2, 2025 16:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement major moderate risk, for example new API, small filter changes that have no risk like refactoring or logs
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants