class FlysystemFactory in Flysystem 8
Same name and namespace in other branches
- 7 src/FlysystemFactory.php \Drupal\flysystem\FlysystemFactory
- 3.x src/FlysystemFactory.php \Drupal\flysystem\FlysystemFactory
- 2.0.x src/FlysystemFactory.php \Drupal\flysystem\FlysystemFactory
- 3.0.x src/FlysystemFactory.php \Drupal\flysystem\FlysystemFactory
A factory for Flysystem filesystems.
Hierarchy
- class \Drupal\flysystem\FlysystemFactory uses SerializationStopperTrait
Expanded class hierarchy of FlysystemFactory
8 files declare their use of FlysystemFactory
- ConfigForm.php in src/
Form/ ConfigForm.php - ConfigFormTest.php in tests/
src/ Unit/ Form/ ConfigFormTest.php - FlysystemBridgeTest.php in tests/
src/ Unit/ FlysystemBridgeTest.php - FlysystemFactoryTest.php in tests/
src/ Unit/ FlysystemFactoryTest.php - FlysystemRoutes.php in src/
Routing/ FlysystemRoutes.php
1 string reference to 'FlysystemFactory'
1 service uses FlysystemFactory
File
- src/
FlysystemFactory.php, line 20
Namespace
Drupal\flysystemView source
class FlysystemFactory {
use SerializationStopperTrait;
/**
* Default settings.
*
* @var array
*/
protected $defaults = [
'driver' => '',
'config' => [],
'replicate' => FALSE,
'cache' => FALSE,
'name' => '',
'description' => '',
];
/**
* The cache backend.
*
* @var \Drupal\Core\Cache\CacheBackendInterface
*/
protected $cacheBackend;
/**
* The event dispatcher.
*
* @var \Symfony\Component\EventDispatcher\EventDispatcherInterface
*/
protected $eventDispatcher;
/**
* A cache of filesystems.
*
* @var \League\Flysystem\FilesystemInterface[]
*/
protected $filesystems = [];
/**
* The Flysystem plugin manager.
*
* @var \Drupal\Component\Plugin\PluginManagerInterface
*/
protected $pluginManager;
/**
* Created plugins.
*
* @var \Drupal\flysystem\Plugin\FlysystemPluginInterface[]
*/
protected $plugins = [];
/**
* Settings for stream wrappers.
*
* @var array
*/
protected $settings = [];
/**
* Constructs a FlysystemFactory object.
*
* @param \Drupal\Component\Plugin\PluginManagerInterface $plugin_manager
* The plugin manager.
* @param \Drupal\Core\File\FileSystemInterface $filesystem
* The Drupal filesystem service.
* @param \Drupal\Core\Cache\CacheBackendInterface $cache
* The cache backend.
* @param \Symfony\Component\EventDispatcher\EventDispatcherInterface $event_dispatcher
* The event dispatcher.
*/
public function __construct(PluginManagerInterface $plugin_manager, FileSystemInterface $filesystem, CacheBackendInterface $cache, EventDispatcherInterface $event_dispatcher) {
$this->pluginManager = $plugin_manager;
$this->cacheBackend = $cache;
$this->eventDispatcher = $event_dispatcher;
// Apply defaults and validate registered services.
foreach (Settings::get('flysystem', []) as $scheme => $configuration) {
// The settings.php file could be changed before rebuilding the container.
if (!$filesystem
->validScheme($scheme)) {
continue;
}
$this->settings[$scheme] = $configuration + $this->defaults;
}
}
/**
* Returns the filesystem for a given scheme.
*
* @param string $scheme
* The scheme.
*
* @return \League\Flysystem\FilesystemInterface
* The filesystem for the scheme.
*/
public function getFilesystem($scheme) {
if (!isset($this->filesystems[$scheme])) {
$this->filesystems[$scheme] = new Filesystem($this
->getAdapter($scheme));
}
return $this->filesystems[$scheme];
}
/**
* Returns the plugin for a scheme.
*
* @param string $scheme
* The scheme.
*
* @return \Drupal\flysystem\Plugin\FlysystemPluginInterface
* The plugin.
*/
public function getPlugin($scheme) {
if (!isset($this->plugins[$scheme])) {
$settings = $this
->getSettings($scheme);
$this->plugins[$scheme] = $this->pluginManager
->createInstance($settings['driver'], $settings['config']);
}
return $this->plugins[$scheme];
}
/**
* Returns a list of valid schemes.
*
* @return string[]
* The list of valid schemes.
*/
public function getSchemes() {
return array_keys($this->settings);
}
/**
* Finds the settings for a given scheme.
*
* @param string $scheme
* The scheme.
*
* @return array
* The settings array from settings.php.
*/
public function getSettings($scheme) {
return isset($this->settings[$scheme]) ? $this->settings[$scheme] : $this->defaults;
}
/**
* Calls FlysystemPluginInterface::ensure() on each plugin.
*
* @param bool $force
* (optional) Wheter to force the insurance. Defaults to false.
*
* @return array
* Errors keyed by scheme.
*/
public function ensure($force = FALSE) {
$errors = [];
foreach ($this
->getSchemes() as $scheme) {
foreach ($this
->getPlugin($scheme)
->ensure($force) as $error) {
$event = new EnsureEvent($scheme, $error['severity'], $error['message'], $error['context']);
$this->eventDispatcher
->dispatch(FlysystemEvents::ENSURE, $event);
$errors[$scheme][] = $error;
}
}
return $errors;
}
/**
* Returns the adapter for a scheme.
*
* @param string $scheme
* The scheme to find an adapter for.
*
* @return \League\Flysystem\AdapterInterface
* The correct adapter from settings.
*/
protected function getAdapter($scheme) {
$settings = $this
->getSettings($scheme);
$adapter = $this
->getPlugin($scheme)
->getAdapter();
if ($settings['replicate']) {
$replica = $this
->getAdapter($settings['replicate']);
$adapter = new ReplicateAdapter($adapter, $replica);
}
if ($settings['cache']) {
$cache_item_backend = new CacheItemBackend($scheme, $this->cacheBackend);
$adapter = new DrupalCacheAdapter($scheme, $adapter, $cache_item_backend);
}
return $adapter;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
FlysystemFactory:: |
protected | property | The cache backend. | |
FlysystemFactory:: |
protected | property | Default settings. | |
FlysystemFactory:: |
protected | property | The event dispatcher. | |
FlysystemFactory:: |
protected | property | A cache of filesystems. | |
FlysystemFactory:: |
protected | property | The Flysystem plugin manager. | |
FlysystemFactory:: |
protected | property | Created plugins. | |
FlysystemFactory:: |
protected | property | Settings for stream wrappers. | |
FlysystemFactory:: |
public | function | Calls FlysystemPluginInterface::ensure() on each plugin. | |
FlysystemFactory:: |
protected | function | Returns the adapter for a scheme. | |
FlysystemFactory:: |
public | function | Returns the filesystem for a given scheme. | |
FlysystemFactory:: |
public | function | Returns the plugin for a scheme. | |
FlysystemFactory:: |
public | function | Returns a list of valid schemes. | |
FlysystemFactory:: |
public | function | Finds the settings for a given scheme. | |
FlysystemFactory:: |
public | function | Constructs a FlysystemFactory object. | |
SerializationStopperTrait:: |
public | function | Prevents the class from being serialized. |