]> git.mxchange.org Git - friendica.git/blob - src/Core/Config/Factory/ConfigFactory.php
Restructure (P)Config to follow new paradigm
[friendica.git] / src / Core / Config / Factory / ConfigFactory.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, 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\Config\Factory;
23
24 use Exception;
25 use Friendica\Core\Config;
26 use Friendica\Core\Config\Cache\Cache;
27 use Friendica\Core\Config\Model\Config as ConfigModel;
28 use Friendica\Core\Config\Cache\ConfigFileLoader;
29
30 class ConfigFactory
31 {
32         /**
33          * The key of the $_SERVER variable to override the config directory
34          *
35          * @var string
36          */
37         const CONFIG_DIR_ENV = 'FRIENDICA_CONFIG_DIR';
38
39         /**
40          * The Sub directory of the config-files
41          *
42          * @var string
43          */
44         const CONFIG_DIR = 'config';
45
46         /**
47          * The Sub directory of the static config-files
48          *
49          * @var string
50          */
51         const STATIC_DIR = 'static';
52
53         /**
54          * @param string $basePath The basepath of FRIENDICA
55          * @param array $serer the $_SERVER array
56          *
57          * @return \Friendica\Core\Config\Cache\ConfigFileLoader
58          */
59         public function createConfigFileLoader(string $basePath, array $server = [])
60         {
61                 if (!empty($server[self::CONFIG_DIR_ENV]) && is_dir($server[self::CONFIG_DIR_ENV])) {
62                         $configDir = $server[self::CONFIG_DIR_ENV];
63                 } else {
64                         $configDir = $basePath . DIRECTORY_SEPARATOR . self::CONFIG_DIR;
65                 }
66                 $staticDir = $basePath . DIRECTORY_SEPARATOR . self::STATIC_DIR;
67
68                 return new ConfigFileLoader($basePath, $configDir, $staticDir);
69         }
70
71         /**
72          * @param \Friendica\Core\Config\Cache\ConfigFileLoader $loader The Config Cache loader (INI/config/.htconfig)
73          *
74          * @return Cache
75          *
76          * @throws Exception
77          */
78         public function createCache(ConfigFileLoader $loader, array $server = [])
79         {
80                 $configCache = new Cache();
81                 $loader->setupCache($configCache, $server);
82
83                 return $configCache;
84         }
85
86         /**
87          * @param \Friendica\Core\Config\Cache\Cache $configCache The config cache of this adapter
88          * @param ConfigModel                        $configModel The configuration model
89          *
90          * @return Config\IConfig
91          */
92         public function create(Cache $configCache, ConfigModel $configModel)
93         {
94                 if ($configCache->get('system', 'config_adapter') === 'preload') {
95                         $configuration = new Config\Type\PreloadConfig($configCache, $configModel);
96                 } else {
97                         $configuration = new Config\Type\JitConfig($configCache, $configModel);
98                 }
99
100
101                 return $configuration;
102         }
103 }