2017 © Pedro Peláez
 

library stepup-middleware-client-bundle

Symfony2 bundle for consuming the Step-up Middleware API.

image

surfnet/stepup-middleware-client-bundle

Symfony2 bundle for consuming the Step-up Middleware API.

  • Thursday, April 12, 2018
  • by joostd
  • Repository
  • 10 Watchers
  • 0 Stars
  • 3,535 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 31 Versions
  • 1 % Grown

The README.md

Step-up Middleware Client Bundle

Build status, (*1)

A Symfony 6 bundle to consume the Step-up Middleware API. See Stepup-Deploy for an overview., (*2)

Requirements

Installation

  • Add the package to your Composer file, (*3)

    composer require surfnet/stepup-middleware-client-bundle
    
  • Add the bundle to your kernel in app/AppKernel.php, (*4)

    public function registerBundles()
    {
        // ...
        $bundles[] = new Surfnet\StepupMiddlewareClientBundle\SurfnetStepupMiddlewareClientBundle;
    }
    

Configuration

surfnet_stepup_middleware_client:
    authorisation:
        username: john
        password: doe
    url:
        command_api: http://middleware.tld/command

Usage

Executing commands

# In the context of a Symfony2 controller action
$command = new \Surfnet\StepupMiddlewareClientBundle\Identity\Command\CreateIdentityCommand();
$command->id = \Surfnet\StepupMiddlewareClientBundle\Uuid\Uuid::generate();
$command->nameId = \Surfnet\StepupMiddlewareClientBundle\Uuid\Uuid::generate();

/** @var \Surfnet\StepupMiddlewareClientBundle\Service\CommandService $service */
$service = $this->get('surfnet_stepup_middleware_client.service.command');
$result = $service->execute($command);

Reading DTOs

/** @var \Surfnet\StepupMiddlewareClientBundle\Identity\Service\IdentityService $service */
$service = $container->get('surfnet_stepup_middleware_client.identity.service.identity');
/** @var null|\Surfnet\StepupMiddlewareClientBundle\Identity\Dto\Identity */
$identity = $service->get($id);

Release strategy

Please read: https://github.com/OpenConext/Stepup-Deploy/wiki/Release-Management for more information on the release strategy used in Stepup projects., (*5)

The Versions