2017 © Pedro PelĂĄez
 

silex-service-provider rabbitmq-service-provider

Silex service provider for RabbitMQ. Integrates php-amqplib/rabbitmq-bundle into Silex.

image

millerp/rabbitmq-service-provider

Silex service provider for RabbitMQ. Integrates php-amqplib/rabbitmq-bundle into Silex.

  • Wednesday, December 7, 2016
  • by millerp
  • Repository
  • 1 Watchers
  • 0 Stars
  • 412 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 25 Forks
  • 0 Open issues
  • 5 Versions
  • 1 % Grown

The README.md

RabbitMq Service Provider for Silex

About

This Silex service provider incorporates the awesome RabbitMqBundle into your Silex Application. Installing this bundle created by Alvaro Videla you can use RabbitMQ messaging features in your application, using the php-amqplib library., (*1)

This is a fork of fiunchinho's rabbitmq-service-provider, the original maintainer does not continue maintenance. Original namespaces have been kept for easy upgrading., (*2)

After installing this service provider, sending messages from a controller would be something like, (*3)


$app->post('/message', function(Request $request) use ($app){ $producer = $app['rabbit.producer']['my_exchange_name']; $producer->publish('Some message'); return new Response($msg_body); });

Later when you want to consume 50 messages out of the queue names 'my_queue', you just run on the CLI:, (*4)


$ ./app/console rabbitmq:consumer -m 50 my_queue

To learn what you can do with the bundle, please read the bundle's README., (*5)

Installation

Require the library with Composer:, (*6)

$ composer require fiunchinho/rabbitmq-service-provider

Then, to activate the service, register the service provider after creating your Silex Application:, (*7)


use Silex\Application; use fiunchinho\Silex\Provider\RabbitServiceProvider; $app = new Application(); $app->register(new RabbitServiceProvider());

Start sending messages ;), (*8)

Usage

In the README file from the Symfony bundle you can see all the available options. For example, to configure our service with two different connections and a couple of producers, and one consumer, we will pass the following configuration:, (*9)

$app->register(new RabbitServiceProvider(), [
    'rabbit.connections' => [
        'default' => [
            'host'      => 'localhost',
            'port'      => 5672,
            'user'      => 'guest',
            'password'  => 'guest',
            'vhost'     => '/'
        ],
        'another' => [
            'host'      => 'another_host',
            'port'      => 5672,
            'user'      => 'guest',
            'password'  => 'guest',
            'vhost'     => '/'
        ]
    ],
    'rabbit.producers' => [
        'first_producer' => [
            'connection'        => 'another',
            'exchange_options'  => ['name' => 'a_exchange', 'type' => 'topic']
        ],
        'second_producer' => [
            'connection'        => 'default',
            'exchange_options'  => ['name' => 'a_exchange', 'type' => 'topic']
        ],
    ],
    'rabbit.consumers' => [
        'a_consumer' => [
            'connection'        => 'default',
            'exchange_options'  => ['name' => 'a_exchange','type' => 'topic'],
            'queue_options'     => ['name' => 'a_queue', 'routing_keys' => ['foo.#']],
            'callback'          => 'your_consumer_service'
        ]
    ]
]);

Keep in mind that the callback that you choose in the consumer needs to be a service that has been registered in the Pimple container. Consumer services implement the ConsumerInterface, which has a execute() public method., (*10)

Consumers in the command line

We recommend you to use the Consumer command to consume messages from the queues. To use this command, just create the executable for console (as in any console applicaiton), (*11)

#!/usr/bin/env php
<?php

require_once 'vendor/autoload.php';

use Silex\Application;
use fiunchinho\Silex\Provider\RabbitServiceProvider;
use fiunchinho\Silex\Command\Consumer;
use Ivoba\Silex\Provider\ConsoleServiceProvider;

$app = new Application();
require __DIR__.'/config/dev.php';

$app->register(new RabbitServiceProvider(), array(
    'rabbit.consumers' => [
        'my_consumer' => [
            'connection'        => 'default',
            'exchange_options'  => ['name' => 'my_exchange_name','type' => 'topic'],
            'queue_options'     => ['name' => 'a_queue', 'routing_keys' => ['foo.#']],
            'callback'          => 'my_service'
        ]
    ]
));

$app->register(new ConsoleServiceProvider(), array(
    'console.name'              => 'MyApplication',
    'console.version'           => '1.0.0',
    'console.project_directory' => __DIR__
));

$application = $app['console'];
$application->add(new Consumer());
$application->run();

We rely on the Ivoba\Silex\Provider\ConsoleServiceProvider to make things easier, so you have to register it too. You can create new commands by inheriting from the example Consumer, and adding them as the example above., (*12)

Credits

The Versions

07/12 2016

dev-master

9999999-dev https://github.com/e-sixt/rabbitmq-service-provider

Silex service provider for RabbitMQ. Integrates php-amqplib/rabbitmq-bundle into Silex.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Anton Stöckl
by Miller P. MagalhĂŁes

rabbitmq silex queue message provider amqp

07/12 2016

2.0.1

2.0.1.0 https://github.com/e-sixt/rabbitmq-service-provider

Silex service provider for RabbitMQ. Integrates php-amqplib/rabbitmq-bundle into Silex.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Anton Stöckl
by Miller P. MagalhĂŁes

rabbitmq silex queue message provider amqp

15/05 2016

2.0.0

2.0.0.0 https://github.com/e-sixt/rabbitmq-service-provider

Silex service provider for RabbitMQ. Integrates php-amqplib/rabbitmq-bundle into Silex.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Anton Stöckl

rabbitmq silex queue message provider amqp

06/05 2016

1.1.x-dev

1.1.9999999.9999999-dev https://github.com/e-sixt/rabbitmq-service-provider

Silex service provider for RabbitMQ. Integrates php-amqplib/rabbitmq-bundle into Silex.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Anton Stöckl

rabbitmq silex queue message provider amqp

06/05 2016

1.1.0

1.1.0.0 https://github.com/e-sixt/rabbitmq-service-provider

Silex service provider for RabbitMQ. Integrates php-amqplib/rabbitmq-bundle into Silex.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Anton Stöckl

rabbitmq silex queue message provider amqp