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

Refactor ProxyHttpEventArgsBase to move throttled requests to pluginData #507

Closed
waldekmastykarz opened this issue Jan 19, 2024 · 4 comments · Fixed by #523
Closed

Refactor ProxyHttpEventArgsBase to move throttled requests to pluginData #507

waldekmastykarz opened this issue Jan 19, 2024 · 4 comments · Fixed by #523
Assignees

Comments

@waldekmastykarz
Copy link
Collaborator

As we've introduced pluginData in ProxyEngine in #506, let's see if we can refactor ProxyHttpEventArgsBase and move throttled requests from its constructor into pluginData. Throttling belongs to plugins and shouldn't be explicitly exposed in the engine or event args.

@waldekmastykarz waldekmastykarz self-assigned this Jan 19, 2024
@waldekmastykarz
Copy link
Collaborator Author

Moving information about the throttled requests to pluginData wouldn't be natural. Right now, plugin data is tied to session (single request+response). On the other hand, throttled requests apply as long as proxy is running. As such, it would be clearer to:

  1. Rename pluginData to sessionData, to clearly indicate that the data is tied to a single session
  2. Add globalData (or choose a more suitable name), for storing data that span multiple sessions.

Thoughts @garrytrinder?

@waldekmastykarz waldekmastykarz added the needs peer review Issue needs review from other team members label Jan 20, 2024
@garrytrinder
Copy link
Contributor

I agree with the approach.

In terms of naming, in the HTTP spec a request\response is referred to as an exchange, see https://www.rfc-editor.org/rfc/rfc2616#section-1.4

How about we use exchangeData, to store data for request/response exchanges and sessionData which refers to the Proxy session itself.

@waldekmastykarz
Copy link
Collaborator Author

To be honest, without knowing the spec, if I just looked at exchangeData, I'd have no idea what it's referring to. So I suggest we consider a different name. As for sessionData, Titanium uses it for a request session, so I suggest we align with it, because if we use it for proxy session it'll be confusing for others who don't have this background.

@waldekmastykarz waldekmastykarz removed the needs peer review Issue needs review from other team members label Jan 25, 2024
@garrytrinder
Copy link
Contributor

Let's go with your original suggestions then, sessionData and globalData.

waldekmastykarz added a commit to waldekmastykarz/dev-proxy that referenced this issue Jan 26, 2024
Fixes bug in handling dynamic retry-after
Fixes bug in removing expired throttlers
waldekmastykarz added a commit that referenced this issue Jan 26, 2024
Fixes bug in handling dynamic retry-after
Fixes bug in removing expired throttlers
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants