Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork5.3k
[Security] Replace deprecatedPassportInterface occurrences byPassport#15594
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -300,7 +300,7 @@ method that fits most use-cases:: | ||
| use Symfony\Component\Security\Core\Exception\CustomUserMessageAuthenticationException; | ||
| use Symfony\Component\Security\Http\Authenticator\AbstractAuthenticator; | ||
| use Symfony\Component\Security\Http\Authenticator\Passport\Badge\UserBadge; | ||
| use Symfony\Component\Security\Http\Authenticator\Passport\Passport; | ||
| use Symfony\Component\Security\Http\Authenticator\Passport\SelfValidatingPassport; | ||
| class ApiKeyAuthenticator extends AbstractAuthenticator | ||
| @@ -315,7 +315,7 @@ method that fits most use-cases:: | ||
| return $request->headers->has('X-AUTH-TOKEN'); | ||
| } | ||
| public function authenticate(Request $request):Passport | ||
| { | ||
| $apiToken = $request->headers->get('X-AUTH-TOKEN'); | ||
| if (null === $apiToken) { | ||
| @@ -474,7 +474,7 @@ using :ref:`the user provider <security-user-providers>`:: | ||
| $this->userRepository = $userRepository; | ||
| } | ||
| public function authenticate(Request $request):Passport | ||
| { | ||
| // ... | ||
| @@ -570,11 +570,11 @@ would initialize the passport like this:: | ||
| use Symfony\Component\Security\Http\Authenticator\Passport\Badge\CsrfTokenBadge; | ||
| use Symfony\Component\Security\Http\Authenticator\Passport\Badge\UserBadge; | ||
| use Symfony\Component\Security\Http\Authenticator\Passport\Passport; | ||
| use Symfony\Component\Security\Http\Authenticator\Passport\Passport; | ||
| class LoginAuthenticator extends AbstractAuthenticator | ||
| { | ||
| public function authenticate(Request $request):Passport | ||
| { | ||
| $password = $request->request->get('password'); | ||
| $username = $request->request->get('username'); | ||
| @@ -604,7 +604,7 @@ would initialize the passport like this:: | ||
| { | ||
| // ... | ||
| public function authenticate(Request $request):Passport | ||
| { | ||
| // ... process the request | ||
| @@ -616,7 +616,7 @@ would initialize the passport like this:: | ||
| return $passport; | ||
| } | ||
| public function createAuthenticatedToken(Passport $passport, string $firewallName): TokenInterface | ||
Member 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. The method should also be renamed, right? Member 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. I renamed while merging ... but I have a question. The new code is: publicfunctioncreateAuthenticatedToken(PassportInterface$passport,string$firewallName):TokenInterface{trigger_deprecation('symfony/ldap','5.4','Method "%s()" is deprecated, use "%s::createToken()" instead.',__METHOD__,__CLASS__);return$this->createToken($passport,$firewallName);}publicfunctioncreateToken(PassportInterface$passport,string$firewallName):TokenInterface{// @deprecated since Symfony 5.4, in 6.0 change to:// return $this->authenticator->createToken($passport, $firewallName);returnmethod_exists($this->authenticator,'createToken') ?$this->authenticator->createToken($passport,$firewallName) :$this->authenticator->createAuthenticatedToken($passport,$firewallName);} So, the method is Member 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. That is a typo in the LDAP authenticator indeed. Other authenticators (including the interface) use (and it's not a PHP error, as it's widening the scope of the interface, and thus allowed) | ||
| { | ||
| // read the attribute value | ||
| return new CustomOauthToken($passport->getUser(), $passport->getAttribute('scope')); | ||