friendica/src/Factory/DependencyFactory.php

40 lines
1.3 KiB
PHP
Raw Normal View History

2019-02-12 20:12:25 +01:00
<?php
namespace Friendica\Factory;
use Friendica\App;
use Friendica\Factory;
use Friendica\Util\BasePath;
use Friendica\Util\Config;
2019-02-12 20:12:25 +01:00
class DependencyFactory
{
/**
* Setting all default-dependencies of a friendica execution
*
* @param string $channel The channel of this execution
* @param string $directory The base directory
* @param bool $isBackend True, if it's a backend execution, otherwise false (Default true)
*
* @return App The application
*
* @throws \Exception
*/
public static function setUp($channel, $directory, $isBackend = true)
{
$basePath = BasePath::create($directory, $_SERVER);
2019-03-14 02:36:49 +01:00
$mode = new App\Mode($basePath);
$configLoader = new Config\ConfigCacheLoader($basePath, $mode);
2019-02-12 20:12:25 +01:00
$configCache = Factory\ConfigFactory::createCache($configLoader);
$profiler = Factory\ProfilerFactory::create($configCache);
Factory\DBFactory::init($basePath, $configCache, $profiler, $_SERVER);
2019-02-12 20:12:25 +01:00
$config = Factory\ConfigFactory::createConfig($configCache);
// needed to call PConfig::init()
Factory\ConfigFactory::createPConfig($configCache);
2019-02-28 09:41:31 +01:00
$logger = Factory\LoggerFactory::create($channel, $config, $profiler);
2019-03-14 02:36:49 +01:00
Factory\LoggerFactory::createDev($channel, $config, $profiler);
2019-02-12 20:12:25 +01:00
2019-03-14 02:36:49 +01:00
return new App($basePath, $config, $mode, $logger, $profiler, $isBackend);
2019-02-12 20:12:25 +01:00
}
}