1
0
mirror of synced 2024-11-25 06:16:06 +03:00
service-bundle/Resources/doc/Security.md

69 lines
2.1 KiB
Markdown
Raw Normal View History

2021-03-31 11:00:48 +03:00
### Authentication
Example security configuration:
```yaml
security:
2022-07-19 16:27:00 +03:00
hide_user_not_found: false
2021-03-31 11:00:48 +03:00
providers:
2022-07-19 16:27:00 +03:00
connection:
entity: { class: App\Entity\Connection, property: clientId }
2021-03-31 11:00:48 +03:00
firewalls:
2022-07-19 16:27:00 +03:00
dev:
pattern: ^/(_(profiler|wdt)|css|images|js)/
security: false
simple-connection:
pattern: ^/simple-connection
stateless: true
security: false
2021-03-31 11:00:48 +03:00
callback:
pattern: ^/callback
2022-07-19 16:27:00 +03:00
provider: connection
2021-03-31 11:00:48 +03:00
stateless: true
2022-07-19 16:27:00 +03:00
custom_authenticators:
- RetailCrm\ServiceBundle\Security\CallbackClientAuthenticator
front:
pattern: ^/auth
2022-07-19 16:27:00 +03:00
provider: connection
stateless: false
remember_me:
secret: '%kernel.secret%'
lifetime: 604800 # 1 week in seconds
signature_properties: ['clientId']
2022-07-19 16:27:00 +03:00
always_remember_me: true
custom_authenticators:
- RetailCrm\ServiceBundle\Security\FrontApiClientAuthenticator
2021-03-31 11:00:48 +03:00
main:
2022-07-19 16:27:00 +03:00
pattern: ^/
2021-03-31 11:00:48 +03:00
lazy: true
access_control:
2022-07-19 16:27:00 +03:00
- { path: ^/front, roles: IS_AUTHENTICATED_REMEMBERED }
- { path: ^/simple-connection, roles: PUBLIC_ACCESS }
2021-03-31 11:00:48 +03:00
```
Login controller will be called after the authenticator successfully authenticates the user. You can get the authenticated user, generate a token (or whatever you need to return) and return response:
2021-03-31 11:00:48 +03:00
```php
use App\Entity\User;
use Symfony\Component\Security\Http\Attribute\CurrentUser;
2021-03-31 11:00:48 +03:00
class ApiLoginController extends AbstractController
2022-07-19 16:27:00 +03:00
{
#[Route('/auth', name: 'auth')]
public function auth(#[CurrentUser] ?User $user): Response
{
$token = ...; // somehow create an API token for $user
return $this->json([
'user' => $user->getUserIdentifier(),
'token' => $token,
]);
2022-07-19 16:27:00 +03:00
}
2021-03-31 11:00:48 +03:00
}
```
The <code>#[CurrentUser]</code> can only be used in controller arguments to retrieve the authenticated user. In services, you would use getUser().