ICanBoogie/bind-message-bus master
  • Namespace
  • Class

Namespaces

  • ICanBoogie
    • Binding
      • MessageBus

Classes

  • Hooks

Interfaces

  • MessageBusConfig

Traits

  • ApplicationBindings
  • ControllerBindings
 1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 
<?php

/*
 * This file is part of the ICanBoogie package.
 *
 * (c) Olivier Laviale <olivier.laviale@gmail.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace ICanBoogie\Binding\MessageBus;

use ICanBoogie\Application;
use ICanBoogie\Binding\PrototypedBindings;
use ICanBoogie\MessageBus\Message;
use ICanBoogie\MessageBus\MessageBus;
use ICanBoogie\MessageBus\MessageHandlerProvider;
use ICanBoogie\MessageBus\SimpleMessageBus;
use ICanBoogie\MessageBus\SimpleMessageHandlerProvider;
use ICanBoogie\Routing\Controller;

class Hooks
{
    /*
     * Config
     */

    /**
     * @param array $fragments
     *
     * @return array
     */
    static public function synthesize_handlers_config(array $fragments)
    {
        $handler_collection = [];

        foreach ($fragments as $fragment)
        {
            if (empty($fragment[MessageBusConfig::HANDLERS]))
            {
                continue; // @codeCoverageIgnore
            }

            $handler_collection[] = $fragment[MessageBusConfig::HANDLERS];
        }

        return array_merge(...$handler_collection);
    }

    /*
     * Prototype
     */

    /**
     * @param Application $app
     *
     * @return MessageBus
     */
    static public function get_message_bus(Application $app)
    {
        return new SimpleMessageBus($app->message_handler_provider, $app->message_pusher);
    }

    /**
     * @param Application $app
     *
     * @return MessageHandlerProvider
     */
    static public function get_message_handler_provider(Application $app)
    {
        return new SimpleMessageHandlerProvider($app->configs[MessageBusConfig::HANDLERS_CONFIG_NAME]);
    }

    /**
     * @param Application $app
     *
     * @return null
     */
    static public function get_message_pusher(Application $app)
    {
        // don't know how to push messages yet

        return null;
    }

    /**
     * @param Controller|PrototypedBindings $controller
     * @param Message $message
     *
     * @return mixed
     */
    static public function dispatch_message(Controller $controller, Message $message)
    {
        return $controller->app->message_bus->dispatch($message);
    }
}
ICanBoogie/bind-message-bus master API documentation generated by ApiGen