1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-21 22:47:43 +00:00
Files
matomo/core/Http/ControllerResolver.php
Michal Kleiner 9a3ef94df6 [Coding Style] Enable rule PSR12.Files.FileHeader + unify file headers (#22132)
* [Coding Style] Enable rule PSR12.Files.FileHeader

* Apply CS

* Replace Piwik with Matomo in file headers

* Unify file headers (position, no. of lines, https links)

* Rebuild dist files

* Apply CS

* Fix system test that relies on line numbers in a file that had the file header updated

---------

Co-authored-by: Stefan Giehl <stefan@matomo.org>
2024-04-20 20:50:47 +02:00

117 خطوط
2.9 KiB
PHP

<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\Http;
use DI\FactoryInterface;
use Exception;
use Piwik\Plugin\ReportsProvider;
use Piwik\Plugin\WidgetsProvider;
/**
* Resolves the controller that will handle the request.
*
* A controller is a PHP callable.
*/
class ControllerResolver
{
/**
* @var FactoryInterface
*/
private $abstractFactory;
/**
* @var WidgetsProvider
*/
private $widgets;
public function __construct(FactoryInterface $abstractFactory, WidgetsProvider $widgets)
{
$this->abstractFactory = $abstractFactory;
$this->widgets = $widgets;
}
/**
* @param string $module
* @param string|null $action
* @param array $parameters
* @throws Exception Controller not found.
* @return callable The controller is a PHP callable.
*/
public function getController($module, $action, array &$parameters)
{
$controller = $this->createPluginController($module, $action);
if ($controller) {
return $controller;
}
$controller = $this->createWidgetController($module, $action, $parameters);
if ($controller) {
return $controller;
}
$controller = $this->createReportController($module, $action, $parameters);
if ($controller) {
return $controller;
}
throw new Exception(sprintf("Action '%s' not found in the module '%s'", $action, $module));
}
private function createPluginController($module, $action)
{
$controllerClass = "Piwik\\Plugins\\$module\\Controller";
if (!class_exists($controllerClass)) {
return null;
}
/** @var $controller Controller */
$controller = $this->abstractFactory->make($controllerClass);
$action = $action ?: $controller->getDefaultAction();
if (!is_callable(array($controller, $action)) || !in_array($action, get_class_methods($controller))) {
return null;
}
return array($controller, $action);
}
private function createWidgetController($module, $action, array &$parameters)
{
$widget = $this->widgets->factory($module, $action);
if (!$widget) {
return;
}
$parameters['widget'] = $widget;
return array($this->createCoreHomeController(), 'renderWidget');
}
private function createReportController($module, $action, array &$parameters)
{
$report = ReportsProvider::factory($module, $action);
if (!$report) {
return null;
}
$parameters['report'] = $report;
return array($this->createCoreHomeController(), 'renderReportWidget');
}
private function createCoreHomeController()
{
return $this->abstractFactory->make('Piwik\Plugins\CoreHome\Controller');
}
}