-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
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
[FrameworkBundle][HttpKernel] Add session usage reporting in stateless mode #35732
Conversation
One thing I'm wondering, should we need the |
dbc297b
to
d75d786
Compare
The request attribute is a nice idea. |
Yes it could be great, I'll give it a try |
I had tried this approach but something came up to me. |
d75d786
to
5b83906
Compare
@nicolas-grekas I updated code according to your approach. But what should we do when session is used in a stateless mode ? Should we throw an exception ? Just log it ? Or even make that behavior configurable ? |
Throw when no logger is passed, log when one is - and pass one when kernel.debug=false in the DI extension? |
5b83906
to
d815189
Compare
Ok, so now if debug is enabled, this will throw an exception. If not, it'll log a warning. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, don't miss adding some tests and a CHANGELOG entry.
f5d6f6c
to
b8e83bb
Compare
src/Symfony/Component/HttpKernel/EventListener/AbstractSessionListener.php
Outdated
Show resolved
Hide resolved
b8e83bb
to
5ff2f30
Compare
@Stateless
annotation9a9e4dd
to
85a6a10
Compare
src/Symfony/Component/HttpKernel/EventListener/AbstractSessionListener.php
Outdated
Show resolved
Hide resolved
85a6a10
to
33ed3e8
Compare
33ed3e8
to
bc48db2
Compare
Thank you @mtarld. |
This PR was merged into the 5.1-dev branch. Discussion ---------- [Routing] Add stateless route attribute | Q | A | ------------- | --- | Branch? | master | Bug fix? | no | New feature? | yes | Deprecations? | no | Ticket | https://github.com/orgs/symfony/projects/1#card-30506005 | License | MIT | Doc PR | TODO On top of #35732 Add a stateless attribute for: Routes in annotations ``` @route(stateless=true) ``` Yaml ```yml route: stateless: true ``` Xml ```xml <route stateless="true" /> ``` PHP configurator ```php $route->stateless(true); ``` That stateless attribute is a shortcut for setting `_stateless` default attribute in route. Commits ------- 2da68ba [Routing] Add stateless route attribute
https://github.com/orgs/symfony/projects/1#card-30506005
Provide a
stateless
attribute that forbid session usage.Implementations
v1
New session proxy that allows session to be marked as disabledNew default route attribute:_stateless
(automatically set by@Stateless
)On kernel controller event, if_stateless
istrue
, session is marked as disabledSession listener is able to check if the session is disabled and prevent its creationv2
New default route attribute:_stateless
(automatically set by@Stateless
)On kernel response, check the session usage and if session was used when_stateless
attribute is set totrue
: Either throw an exception (debug enabled) or log a warning (debug disabled)v3
_stateless
(automatically set bystateless
route attribute)_stateless
attribute is set totrue
: Either throw an exception (debug enabled) or log a warning (debug disabled)