fiser/microservices-internal-authentication

Symfony MicroservicesInternalAuthenticationBundle

1.4.2 2018-03-22 23:24 UTC

This package is not auto-updated.

Last update: 2024-05-12 03:01:40 UTC


README

Description

The purpose of this bundle is solved the internal comunications between symfony microservices for the authentification based in solved JWT.

If you have one microservice that generate the JWT and the clients send this to another microservices, this bundle is for the communication of the another microservice with the session microservice.

This system integrates the microservices authentication with a symfony system authentication.

Configuration

Installation

The code is in packagist hosted: https://packagist.org/packages/fiser/microservices-internal-authentication

For install you can do:

composer require fiser/microservices-internal-authentication

Configuration files

Paste in your security file of symfony this:

security:
    providers:
        user_api_provider:
            id: "fiser.microservices_internal_authentication.security.user_provider"

    firewalls:
        main:
            anonymous: ~
            guard:
                authenticators:
                    - "fiser.microservices_internal_authentication.security.authenticator"
            provider: user_api_provider

    access_control:
        - { path: ^/recipes/, roles: ROLE_USER }

In your config.yml you need to define this elements for configure the bundle The config values are not necessary if you not put this are the default values:

microservices_internal_authentication:
    cookie_name: Authorization
    uri: http://nginx/session/user/decode
    token-api: secret