symftony / rabbitmq-auth-backend-http-php
Implementation of RabbitMQ http auth backend
Installs: 1 623
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 3
Open Issues: 0
Requires
- php: >=5.3
- psr/log: ^1.0
- symfony/http-foundation: ^2.1|^3.4|^4.0
- symfony/security: ^2.6|^3.0|^4.0
Requires (Dev)
- monolog/monolog: ^1.23
- phpunit/phpunit: ^4.5|^5.0
This package is not auto-updated.
Last update: 2024-11-15 21:18:56 UTC
README
PHP implementation of HTTP-based authorisation and authentication for RabbitMQ
Installation
The recommended way to install is through Composer. Require the symftony/rabbitmq-auth-backend-http-php package:
$ composer require symftony/rabbitmq-auth-backend-http-php
Usage
You can check the example folder.
Use as lib
To use as simple library you must create some service to provide a fully configurable authentication and authorization
Authentication
First of all you need to choose/configure your user provider
$userProvider = new InMemoryUserProvider(array( 'admin' => array( 'password' => 'password', 'roles' => array('Administrator'), ), 'user1' => array( 'password' => 'user_pass', ), ));
You need a authentication checker in order to compare the TokenInterface
with user
.
$authenticationChecker = new ChainAuthenticationChecker(array( new UserPasswordTokenChecker(), // Check the username AND the password, during the authentication process new UserTokenChecker(), // Check only username, append with topic, vhost, resource action ));
The authenticator is use UserProvider
to find the user and the AuthenticationChecker
to know if the token is authenticate.
$authenticator = new Authenticator( $userProvider, $authenticationChecker ); $authenticationManager = new AuthenticationProviderManager(array($authenticator));
Now the Token
is authenticated
Authorization
After authenticate, we need to authorize the token to access a resource.
First of all you need a Voter
to check the token authorization.
The DefaultVoter use the same logic than internal rabbitmq authorization.
You can configure each user in each vhost with 4 regular expression that must match to grant access.
$defaultVoter = new DefaultVoter(array( 'admin' => array( 'isAdmin' => true, ), 'user-1' => array( '/' => array( 'ip' => '.*', // to control the vhost ip access 'read' => '.*', // to control the resource/topic read access 'write' => '.*', // to control the resource/topic write access 'configure' => '.*', // to control the resource/topic configure access ), ), ));
AccessDecisionManager
is use to allow/deny the token access. AccessDecisionManager
need an array of VoterInterface
to do the check.
You need to implement your own voter, in order to choose if the token is granted or not.
$accessDecisionManager = new AccessDecisionManager(array($defaultVoter));
AuthorizationChecker
is the manager of authorization process
$tokenStorage = new TokenStorage(); $authorizationChecker = new AuthorizationChecker( $tokenStorage, $authenticationManager, $accessDecisionManager );
Now you have all services to authenticate and authorize a token to access a resource.
In order to simplify the RabbitMQ auth check you can use the Security
class.
$security = new Security($authenticationManager, $authorizationChecker); // $isAuthenticate = $this->security->authenticate($token); // $hasAccess = $this->security->vhost($token, {IP}); // $hasAccess = $this->security->resource($token, {RESOURCE}, {NAME}, {PERMISSION}); // $hasAccess = $this->security->topic($token, {RESOURCE},{NAME},{PERMISSION},{ROUTING_KEY},{VARIABLE_MAP_USERNAME},{VARIABLE_MAP_VHOST});
Use in Symfony framework
You need to create the Security
service and register the controller as service
You can check the Symfony documentation about security
# app/config/services.yml services: RabbitMQAuth\Security: arguments: - '@security.authentication.manager' - '@security.authorization_checker' RabbitMQAuth\Controller\AuthController: arguments: - '@security.token_storage' - '@RabbitMQAuth\Security'
Define the 4 routes.
# app/config/routing.yml auth_user: path: /auth_user defaults: { _controller: RabbitMQAuth\Controller\AuthController::userAction } auth_topic: path: /auth_topic defaults: { _controller: RabbitMQAuth\Controller\AuthController::topicAction } auth_resource: path: /auth_resource defaults: { _controller: RabbitMQAuth\Controller\AuthController::resourceAction } auth_vhost: path: /auth_vhost defaults: { _controller: RabbitMQAuth\Controller\AuthController::vhostAction }