-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
Fix bad method call with guard authentication + session migration #27581
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
Closed
weaverryan
wants to merge
4
commits into
symfony:2.8
from
weaverryan:fix-guard-auth-session-migration
Closed
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next
Next commit
Fixing guard authentication + session migration
The original setter was put onto the wrong class. The handler is a bit more difficult, as there is one handler only. So, we need to pass in a statelessFirewalls array so we know whether or not to migrate the session
- Loading branch information
commit cd73af26d416612113dfa3df2930c7cf419f5ac3
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,19 +35,26 @@ class GuardAuthenticatorHandler | |
private $tokenStorage; | ||
private $dispatcher; | ||
private $sessionStrategy; | ||
private $statelessProviderKeys; | ||
|
||
public function __construct(TokenStorageInterface $tokenStorage, EventDispatcherInterface $eventDispatcher = null) | ||
/** | ||
* @param TokenStorageInterface $tokenStorage | ||
* @param EventDispatcherInterface|null $eventDispatcher | ||
* @param array $statelessProviderKeys An array of provider/firewall keys that are "stateless" and so do not need the session migrated on success | ||
*/ | ||
public function __construct(TokenStorageInterface $tokenStorage, EventDispatcherInterface $eventDispatcher = null, array $statelessProviderKeys = array()) | ||
{ | ||
$this->tokenStorage = $tokenStorage; | ||
$this->dispatcher = $eventDispatcher; | ||
$this->statelessProviderKeys = $statelessProviderKeys; | ||
} | ||
|
||
/** | ||
* Authenticates the given token in the system. | ||
*/ | ||
public function authenticateWithToken(TokenInterface $token, Request $request) | ||
public function authenticateWithToken(TokenInterface $token, Request $request, $providerKey = null) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. even optional, this would break a child (signature mismatch). |
||
{ | ||
$this->migrateSession($request, $token); | ||
$this->migrateSession($request, $token, $providerKey); | ||
$this->tokenStorage->setToken($token); | ||
|
||
if (null !== $this->dispatcher) { | ||
|
@@ -98,7 +105,7 @@ public function authenticateUserAndHandleSuccess(UserInterface $user, Request $r | |
// create an authenticated token for the User | ||
$token = $authenticator->createAuthenticatedToken($user, $providerKey); | ||
// authenticate this in the system | ||
$this->authenticateWithToken($token, $request); | ||
$this->authenticateWithToken($token, $request, $providerKey); | ||
|
||
// return the success metric | ||
return $this->handleAuthenticationSuccess($token, $request, $authenticator, $providerKey); | ||
|
@@ -140,9 +147,9 @@ public function setSessionAuthenticationStrategy(SessionAuthenticationStrategyIn | |
$this->sessionStrategy = $sessionStrategy; | ||
} | ||
|
||
private function migrateSession(Request $request, TokenInterface $token) | ||
private function migrateSession(Request $request, TokenInterface $token, $providerKey) | ||
{ | ||
if (!$this->sessionStrategy || !$request->hasSession() || !$request->hasPreviousSession()) { | ||
if (!$this->sessionStrategy || !$request->hasSession() || !$request->hasPreviousSession() || in_array($providerKey, $this->statelessProviderKeys)) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. \in_array(..., true) |
||
return; | ||
} | ||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
We're ok with partial docblocks, so these 2 above lines can be removed.