EventRelayerGroup.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php
  2. /**
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License as published by
  5. * the Free Software Foundation; either version 2 of the License, or
  6. * (at your option) any later version.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License along
  14. * with this program; if not, write to the Free Software Foundation, Inc.,
  15. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  16. * http://www.gnu.org/copyleft/gpl.html
  17. *
  18. * @file
  19. */
  20. /**
  21. * Factory class for spawning EventRelayer objects using configuration
  22. *
  23. * @since 1.27
  24. */
  25. class EventRelayerGroup {
  26. /** @var array[] */
  27. protected $configByChannel = [];
  28. /** @var EventRelayer[] */
  29. protected $relayers = [];
  30. /**
  31. * @param array[] $config Channel configuration
  32. */
  33. public function __construct( array $config ) {
  34. $this->configByChannel = $config;
  35. }
  36. /**
  37. * @param string $channel
  38. * @return EventRelayer Relayer instance that handles the given channel
  39. */
  40. public function getRelayer( $channel ) {
  41. $channelKey = isset( $this->configByChannel[$channel] )
  42. ? $channel
  43. : 'default';
  44. if ( !isset( $this->relayers[$channelKey] ) ) {
  45. if ( !isset( $this->configByChannel[$channelKey] ) ) {
  46. throw new UnexpectedValueException( "No config for '$channelKey'" );
  47. }
  48. $config = $this->configByChannel[$channelKey];
  49. $class = $config['class'];
  50. $this->relayers[$channelKey] = new $class( $config );
  51. }
  52. return $this->relayers[$channelKey];
  53. }
  54. }