-
-
Notifications
You must be signed in to change notification settings - Fork 939
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
Sessions cookie changes to support persistent cookies and partitioned cookies #2527
base: master
Are you sure you want to change the base?
Sessions cookie changes to support persistent cookies and partitioned cookies #2527
Conversation
- Issues encode#2019 Added same_site for CHIPS cookie support - Discussion encode#2441 Updated Documentation Updated Unit Test
Too many changes here, and no previous discussions about this implementation. We need a bit more granularity on those changes. |
@Kludex I linked an issue and a discussion for the two changes submitted for this PR. When I say there's two changes, there's two changes including their associated test updates and documentation. First the sessions middleware generates a brand new cookie on every single request made so the large change adds cookie persistence. If a page makes multiple requests the middle ware will set a new cookie on every single response. #2019. Second issue the cookies do not support CHIPS partitioned cookies that Chromium started enforcing in December for 3rd party cookies causing the cookies to be rejected when it's the 3rd party cookie. #2441 Would it be better to submit two PR's? |
Yes, please. |
|
This PR #2501 appears to be for the responses module, the Sessions Middleware isn't currently using the responses module for cookie handling or http.cookies. It is somewhat unfortunate that there's an inconsistency here. The sessions middleware is pretty basic building a string for the cookie's attributes and setting it using the datastructures MutableHeaders by way of appending a "Set-Cookie" header in the message. It is maybe unfortunate that there's an inconsistency here with cookie handling. The discussion on python/cpython#112714 is rather interesting, the PR is on hold until the feature is ratified. Browser compatibility for the experimental feature looks to be just Chromium based browsers, WebKit and FireFox are not listed as supporting it, although it doesn't appear to be an issue if the value is present. I'll split up the PR and submit the persistence first. Having read the discussion on the cpython stdlib discussion, It makes sense they have opted to refrain from implementing a pending standard. The change to the sessions middleware to add it is minor if adding it as an option makes sense now, or if the sessions middleware should be updated to use the stdlib for its cookie handling and add the feature once it also supports it. |
Updated Documentation for changes
Updated Unit Test to include both new SessionsMiddleware features.
Summary
Added cookie persistence to the sessions middleware so the cookie isn't refreshed on every request for issue #2019
Clarified the security regarding the session cookie, that it is not encrypted and not considered private but is not modifiable.
Added the partitioned cookies flag for the cookies to support CHIPS (Cookies Having Independent Partitioned State) to support cookies being set in iframes if the middleware being used to set a 3rd party cookie for a different top level site. Discussion #2441
Checklist