1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-14 03:25:37 +02:00
php-phpbb/phpBB/phpbb/storage/adapter_factory.php
Máté Bartus d69ba0a5f3 [ticket/16671] Code style fixes
PHPBB3-16671
2020-12-31 15:54:22 +01:00

94 lines
2.0 KiB
PHP

<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/
namespace phpbb\storage;
use phpbb\config\config;
use phpbb\di\service_collection;
use phpbb\storage\exception\exception;
class adapter_factory
{
/**
* @var config
*/
protected $config;
/**
* @var service_collection
*/
protected $adapters;
/**
* @var service_collection
*/
protected $providers;
/**
* Constructor
*
* @param config $config
* @param service_collection $adapters
* @param service_collection $providers
*/
public function __construct(config $config, service_collection $adapters, service_collection $providers)
{
$this->config = $config;
$this->adapters = $adapters;
$this->providers = $providers;
}
/**
* Obtains a configured adapters for a given storage
*
* @param string $storage_name
*
* @return \phpbb\storage\adapter\adapter_interface
*/
public function get($storage_name)
{
$provider_class = $this->config['storage\\' . $storage_name . '\\provider'];
$provider = $this->providers->get_by_class($provider_class);
if (!$provider->is_available())
{
throw new exception('STORAGE_ADAPTER_NOT_AVAILABLE');
}
$adapter = $this->adapters->get_by_class($provider->get_adapter_class());
$adapter->configure($this->build_options($storage_name, $provider->get_options()));
return $adapter;
}
/**
* Obtains configuration for a given storage
*
* @param string $storage_name
* @param array $definitions
*
* @return array Returns storage configuration values
*/
public function build_options($storage_name, array $definitions)
{
$options = [];
foreach (array_keys($definitions) as $definition)
{
$options[$definition] = $this->config['storage\\' . $storage_name . '\\config\\' . $definition];
}
return $options;
}
}