]> git.mxchange.org Git - friendica.git/blob - src/Core/Addon/Model/AddonLoader.php
Merge remote-tracking branch 'upstream/develop' into restricted-access
[friendica.git] / src / Core / Addon / Model / AddonLoader.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Core\Addon\Model;
23
24 use Friendica\Core\Addon\Capabilities\ICanLoadAddons;
25 use Friendica\Core\Addon\Exception\AddonInvalidConfigFileException;
26 use Friendica\Core\Config\Capability\IManageConfigValues;
27 use Friendica\Util\Strings;
28
29 class AddonLoader implements ICanLoadAddons
30 {
31         const STATIC_PATH = 'static';
32         /** @var string */
33         protected $basePath;
34         /** @var IManageConfigValues */
35         protected $config;
36
37         public function __construct(string $basePath, IManageConfigValues $config)
38         {
39                 $this->basePath = $basePath;
40                 $this->config   = $config;
41         }
42
43         /** {@inheritDoc} */
44         public function getActiveAddonConfig(string $configName): array
45         {
46                 $addons       = array_keys(array_filter($this->config->get('addons') ?? []));
47                 $returnConfig = [];
48
49                 foreach ($addons as $addon) {
50                         $addonName = Strings::sanitizeFilePathItem(trim($addon));
51
52                         $configFile = $this->basePath . '/addon/' . $addonName . '/' . static::STATIC_PATH . '/' . $configName . '.config.php';
53
54                         if (!file_exists($configFile)) {
55                                 // Addon unmodified, skipping
56                                 continue;
57                         }
58
59                         $config = include $configFile;
60
61                         if (!is_array($config)) {
62                                 throw new AddonInvalidConfigFileException('Error loading config file ' . $configFile);
63                         }
64
65                         $returnConfig = array_merge_recursive($returnConfig, $config);
66                 }
67
68                 return $returnConfig;
69         }
70 }