-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
UserValueResolver and SecurityUserValueResolver improvement #26971
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,7 +40,7 @@ public function __construct(TokenStorageInterface $tokenStorage) | |
public function supports(Request $request, ArgumentMetadata $argument) | ||
{ | ||
// only security user implementations are supported | ||
if (UserInterface::class !== $argument->getType()) { | ||
if (!$argument->getType() || !$this->implementsCorrectInterface($argument->getType())) { | ||
return false; | ||
} | ||
|
||
|
@@ -59,4 +59,14 @@ public function resolve(Request $request, ArgumentMetadata $argument) | |
{ | ||
yield $this->tokenStorage->getToken()->getUser(); | ||
} | ||
|
||
/** | ||
* @param string $type | ||
* | ||
* @return bool | ||
*/ | ||
private function implementsCorrectInterface($type) | ||
{ | ||
return UserInterface::class === $type || array_key_exists(UserInterface::class, class_implements($type)); | ||
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. Let's inline this logic in the calling condition 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. isn't this what 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. Didn't know 😳thanks! |
||
} | ||
} |
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.
Should be in
Symfony\Component\Security\Http\Controller\UserValueResolver
instead (see deprecation notice above)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.
It's in both classes :)
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.
Deprecated classes are frozen until they are suppressed, it should not get new features.