mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-07 20:04:32 +02:00
86 lines
2.3 KiB
PHP
86 lines
2.3 KiB
PHP
<?php
|
|
|
|
// Copyright (C) 2010-2024, the Friendica project
|
|
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
namespace Friendica\Core\Hooks\Util;
|
|
|
|
use Friendica\Core\Addon\Capability\ICanLoadAddons;
|
|
use Friendica\Core\Hooks\Capability\ICanRegisterStrategies;
|
|
use Friendica\Core\Hooks\Exceptions\HookConfigException;
|
|
|
|
/**
|
|
* Manage all strategies.config.php files
|
|
*/
|
|
class StrategiesFileManager
|
|
{
|
|
/**
|
|
* The default hook-file-key of strategies
|
|
* -> it's an empty string to cover empty/missing config values
|
|
*/
|
|
const STRATEGY_DEFAULT_KEY = '';
|
|
const STATIC_DIR = 'static';
|
|
const CONFIG_NAME = 'strategies';
|
|
|
|
/** @var ICanLoadAddons */
|
|
protected $addonLoader;
|
|
/** @var array */
|
|
protected $config = [];
|
|
/** @var string */
|
|
protected $basePath;
|
|
|
|
public function __construct(string $basePath, ICanLoadAddons $addonLoader)
|
|
{
|
|
$this->basePath = $basePath;
|
|
$this->addonLoader = $addonLoader;
|
|
}
|
|
|
|
/**
|
|
* Loads all kinds of hooks and registers the corresponding instances
|
|
*
|
|
* @param ICanRegisterStrategies $instanceRegister The instance register
|
|
*
|
|
* @return void
|
|
*/
|
|
public function setupStrategies(ICanRegisterStrategies $instanceRegister)
|
|
{
|
|
foreach ($this->config as $interface => $strategy) {
|
|
foreach ($strategy as $dependencyName => $names) {
|
|
if (is_array($names)) {
|
|
foreach ($names as $name) {
|
|
$instanceRegister->registerStrategy($interface, $dependencyName, $name);
|
|
}
|
|
} else {
|
|
$instanceRegister->registerStrategy($interface, $dependencyName, $names);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Reloads all hook config files into the config cache for later usage
|
|
*
|
|
* Merges all hook configs from every addon - if present - as well
|
|
*
|
|
* @return void
|
|
*/
|
|
public function loadConfig()
|
|
{
|
|
// load core hook config
|
|
$configFile = $this->basePath . '/' . static::STATIC_DIR . '/' . static::CONFIG_NAME . '.config.php';
|
|
|
|
if (!file_exists($configFile)) {
|
|
throw new HookConfigException(sprintf('config file %s does not exist.', $configFile));
|
|
}
|
|
|
|
$config = include $configFile;
|
|
|
|
if (!is_array($config)) {
|
|
throw new HookConfigException(sprintf('Error loading config file %s.', $configFile));
|
|
}
|
|
|
|
$this->config = array_merge_recursive($config, $this->addonLoader->getActiveAddonConfig(static::CONFIG_NAME));
|
|
}
|
|
}
|