Merge pull request #6934 from MrPetovan/task/6924-limit-term-index-size
[friendica.git/.git] / src / Factory / DependencyFactory.php
1 <?php
2
3 namespace Friendica\Factory;
4
5 use Friendica\App;
6 use Friendica\Factory;
7 use Friendica\Util\BasePath;
8 use Friendica\Util\Config;
9
10 class DependencyFactory
11 {
12         /**
13          * Setting all default-dependencies of a friendica execution
14          *
15          * @param string $channel   The channel of this execution
16          * @param string $directory The base directory
17          * @param bool   $isBackend True, if it's a backend execution, otherwise false (Default true)
18          *
19          * @return App The application
20          *
21          * @throws \Exception
22          */
23         public static function setUp($channel, $directory, $isBackend = true)
24         {
25                 $basePath = BasePath::create($directory, $_SERVER);
26                 $mode = new App\Mode($basePath);
27                 $configLoader = new Config\ConfigFileLoader($basePath, $mode);
28                 $configCache = Factory\ConfigFactory::createCache($configLoader);
29                 $profiler = Factory\ProfilerFactory::create($configCache);
30                 Factory\DBFactory::init($basePath, $configCache, $profiler, $_SERVER);
31                 $config = Factory\ConfigFactory::createConfig($configCache);
32                 // needed to call PConfig::init()
33                 Factory\ConfigFactory::createPConfig($configCache);
34                 $logger = Factory\LoggerFactory::create($channel, $config, $profiler);
35                 Factory\LoggerFactory::createDev($channel, $config, $profiler);
36
37                 return new App($config, $mode, $logger, $profiler, $isBackend);
38         }
39 }