- Introduce route.config.php structure - Adding config loader for routes - Adapt Module class (separation of duties) - Add tests
		
			
				
	
	
		
			176 lines
		
	
	
	
		
			4.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			176 lines
		
	
	
	
		
			4.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
use Dice\Dice;
 | 
						|
use Friendica\App;
 | 
						|
use Friendica\Core\Cache;
 | 
						|
use Friendica\Core\Config;
 | 
						|
use Friendica\Core\Lock\ILock;
 | 
						|
use Friendica\Database\Database;
 | 
						|
use Friendica\Factory;
 | 
						|
use Friendica\Util;
 | 
						|
use Psr\Log\LoggerInterface;
 | 
						|
 | 
						|
/**
 | 
						|
 * The configuration defines "complex" dependencies inside Friendica
 | 
						|
 * So this classes shouldn't be simple or their dependencies are already defined here.
 | 
						|
 *
 | 
						|
 * This kind of dependencies are NOT required to be defined here:
 | 
						|
 *   - $a = new ClassA(new ClassB());
 | 
						|
 *   - $a = new ClassA();
 | 
						|
 *   - $a = new ClassA(Configuration $configuration);
 | 
						|
 *
 | 
						|
 * This kind of dependencies SHOULD be defined here:
 | 
						|
 *   - $a = new ClassA();
 | 
						|
 *     $b = $a->create();
 | 
						|
 *
 | 
						|
 *   - $a = new ClassA($creationPassedVariable);
 | 
						|
 *
 | 
						|
 */
 | 
						|
return [
 | 
						|
	'*'                             => [
 | 
						|
		// marks all class result as shared for other creations, so there's just
 | 
						|
		// one instance for the whole execution
 | 
						|
		'shared' => true,
 | 
						|
	],
 | 
						|
	'$basepath'                     => [
 | 
						|
		'instanceOf'      => Util\BasePath::class,
 | 
						|
		'call'            => [
 | 
						|
			['getPath', [], Dice::CHAIN_CALL],
 | 
						|
		],
 | 
						|
		'constructParams' => [
 | 
						|
			dirname(__FILE__, 2),
 | 
						|
			$_SERVER
 | 
						|
		]
 | 
						|
	],
 | 
						|
	Util\BasePath::class            => [
 | 
						|
		'constructParams' => [
 | 
						|
			dirname(__FILE__, 2),
 | 
						|
			$_SERVER
 | 
						|
		]
 | 
						|
	],
 | 
						|
	Util\ConfigFileLoader::class    => [
 | 
						|
		'shared'          => true,
 | 
						|
		'constructParams' => [
 | 
						|
			[Dice::INSTANCE => '$basepath'],
 | 
						|
		],
 | 
						|
	],
 | 
						|
	Config\Cache\ConfigCache::class => [
 | 
						|
		'instanceOf' => Factory\ConfigFactory::class,
 | 
						|
		'call'       => [
 | 
						|
			['createCache', [], Dice::CHAIN_CALL],
 | 
						|
		],
 | 
						|
	],
 | 
						|
	App\Mode::class                 => [
 | 
						|
		'call' => [
 | 
						|
			['determineRunMode', [true, $_SERVER], Dice::CHAIN_CALL],
 | 
						|
			['determine', [], Dice::CHAIN_CALL],
 | 
						|
		],
 | 
						|
	],
 | 
						|
	Config\Configuration::class     => [
 | 
						|
		'instanceOf' => Factory\ConfigFactory::class,
 | 
						|
		'call'       => [
 | 
						|
			['createConfig', [], Dice::CHAIN_CALL],
 | 
						|
		],
 | 
						|
	],
 | 
						|
	Config\PConfiguration::class    => [
 | 
						|
		'instanceOf' => Factory\ConfigFactory::class,
 | 
						|
		'call'       => [
 | 
						|
			['createPConfig', [], Dice::CHAIN_CALL],
 | 
						|
		]
 | 
						|
	],
 | 
						|
	Database::class                 => [
 | 
						|
		'constructParams' => [
 | 
						|
			[DICE::INSTANCE => \Psr\Log\NullLogger::class],
 | 
						|
			$_SERVER,
 | 
						|
		],
 | 
						|
	],
 | 
						|
	/**
 | 
						|
	 * Creates the App\BaseURL
 | 
						|
	 *
 | 
						|
	 * Same as:
 | 
						|
	 *   $baseURL = new App\BaseURL($configuration, $_SERVER);
 | 
						|
	 */
 | 
						|
	App\BaseURL::class             => [
 | 
						|
		'constructParams' => [
 | 
						|
			$_SERVER,
 | 
						|
		],
 | 
						|
	],
 | 
						|
	App\Page::class => [
 | 
						|
		'constructParams' => [
 | 
						|
			[Dice::INSTANCE => '$basepath'],
 | 
						|
		],
 | 
						|
	],
 | 
						|
	/**
 | 
						|
	 * Create a Logger, which implements the LoggerInterface
 | 
						|
	 *
 | 
						|
	 * Same as:
 | 
						|
	 *   $loggerFactory = new Factory\LoggerFactory();
 | 
						|
	 *   $logger = $loggerFactory->create($channel, $configuration, $profiler);
 | 
						|
	 *
 | 
						|
	 * Attention1: We can use DICE for detecting dependencies inside "chained" calls too
 | 
						|
	 * Attention2: The variable "$channel" is passed inside the creation of the dependencies per:
 | 
						|
	 *    $app = $dice->create(App::class, [], ['$channel' => 'index']);
 | 
						|
	 *    and is automatically passed as an argument with the same name
 | 
						|
	 */
 | 
						|
	LoggerInterface::class          => [
 | 
						|
		'instanceOf' => Factory\LoggerFactory::class,
 | 
						|
		'constructParams' => [
 | 
						|
			'index',
 | 
						|
		],
 | 
						|
		'call'       => [
 | 
						|
			['create', ['index'], Dice::CHAIN_CALL],
 | 
						|
		],
 | 
						|
	],
 | 
						|
	'$devLogger'                    => [
 | 
						|
		'instanceOf' => Factory\LoggerFactory::class,
 | 
						|
		'constructParams' => [
 | 
						|
			'dev',
 | 
						|
		],
 | 
						|
		'call'       => [
 | 
						|
			['createDev', [], Dice::CHAIN_CALL],
 | 
						|
		]
 | 
						|
	],
 | 
						|
	Cache\ICache::class             => [
 | 
						|
		'instanceOf' => Factory\CacheFactory::class,
 | 
						|
		'call'       => [
 | 
						|
			['create', [], Dice::CHAIN_CALL],
 | 
						|
		],
 | 
						|
	],
 | 
						|
	Cache\IMemoryCache::class       => [
 | 
						|
		'instanceOf' => Factory\CacheFactory::class,
 | 
						|
		'call'       => [
 | 
						|
			['create', [], Dice::CHAIN_CALL],
 | 
						|
		],
 | 
						|
	],
 | 
						|
	ILock::class                    => [
 | 
						|
		'instanceOf' => Factory\LockFactory::class,
 | 
						|
		'call'       => [
 | 
						|
			['create', [], Dice::CHAIN_CALL],
 | 
						|
		],
 | 
						|
	],
 | 
						|
	App\Arguments::class => [
 | 
						|
		'instanceOf' => App\Arguments::class,
 | 
						|
		'call' => [
 | 
						|
			['determine', [$_SERVER, $_GET], Dice::CHAIN_CALL],
 | 
						|
		],
 | 
						|
	],
 | 
						|
	App\Module::class => [
 | 
						|
		'instanceOf' => App\Module::class,
 | 
						|
		'call' => [
 | 
						|
			['determineModule', [], Dice::CHAIN_CALL],
 | 
						|
		],
 | 
						|
	],
 | 
						|
	Friendica\Core\Process::class => [
 | 
						|
		'constructParams' => [
 | 
						|
			[Dice::INSTANCE => '$basepath'],
 | 
						|
		],
 | 
						|
	],
 | 
						|
	App\Router::class => [
 | 
						|
		'constructParams' => [
 | 
						|
			$_SERVER, null
 | 
						|
		],
 | 
						|
		'call' => [
 | 
						|
			['addRoutes', [include __DIR__ . '/routes.config.php'], Dice::CHAIN_CALL],
 | 
						|
		],
 | 
						|
	],
 | 
						|
];
 |