Localisation updates from https://translatewiki.net.
[mediawiki.git] / includes / libs / eventrelayer / EventRelayerGroup.php
blob53005c187af3d32510dedfb51591ea003eef6155
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.
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.
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
18 * @file
21 namespace Wikimedia\EventRelayer;
23 use UnexpectedValueException;
25 /**
26 * Factory class for spawning EventRelayer objects using configuration
28 * @since 1.27
30 class EventRelayerGroup {
31 /** @var array[] */
32 protected $configByChannel = [];
34 /** @var EventRelayer[] */
35 protected $relayers = [];
37 /**
38 * @param array[] $config Channel configuration
40 public function __construct( array $config ) {
41 $this->configByChannel = $config;
44 /**
45 * @param string $channel
46 * @return EventRelayer Relayer instance that handles the given channel
48 public function getRelayer( $channel ) {
49 $channelKey = isset( $this->configByChannel[$channel] )
50 ? $channel
51 : 'default';
53 if ( !isset( $this->relayers[$channelKey] ) ) {
54 if ( !isset( $this->configByChannel[$channelKey] ) ) {
55 throw new UnexpectedValueException( "No config for '$channelKey'" );
58 $config = $this->configByChannel[$channelKey];
59 $class = $config['class'];
61 $this->relayers[$channelKey] = new $class( $config );
64 return $this->relayers[$channelKey];
68 /** @deprecated class alias since 1.41 */
69 class_alias( EventRelayerGroup::class, 'EventRelayerGroup' );