| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <?php
- declare(strict_types=1);
- /**
- * MINZ - Copyright 2011 Marien Fressinaud
- * Sous licence AGPL3 <http://www.gnu.org/licenses/>
- */
- /**
- * The Minz_ActionController class is a controller in the MVC paradigm
- */
- abstract class Minz_ActionController {
- /** @var array<string,string> */
- private static array $csp_default = [
- 'default-src' => "'self'",
- 'frame-ancestors' => "'none'",
- ];
- /** @var array<string,string> */
- private array $csp_policies;
- /** @var Minz_View */
- protected $view;
- /**
- * Gives the possibility to override the default view model type.
- * @var class-string
- * @deprecated Use constructor with view type instead
- * @access private
- * @internal
- */
- public static string $defaultViewType = Minz_View::class;
- /**
- * @phpstan-param class-string|'' $viewType
- * @param string $viewType Name of the class (inheriting from Minz_View) to use for the view model
- */
- public function __construct(string $viewType = '') {
- $this->csp_policies = self::$csp_default;
- $view = null;
- if ($viewType !== '' && class_exists($viewType)) {
- $view = new $viewType();
- if (!($view instanceof Minz_View)) {
- $view = null;
- }
- }
- if ($view === null && class_exists(self::$defaultViewType)) { /// @phpstan-ignore staticProperty.deprecated
- $view = new self::$defaultViewType(); // @phpstan-ignore staticProperty.deprecated
- if (!($view instanceof Minz_View)) {
- $view = null;
- }
- }
- $this->view = $view ?? new Minz_View();
- $view_path = Minz_Request::controllerName() . '/' . Minz_Request::actionName() . '.phtml';
- $this->view->_path($view_path);
- $this->view->attributeParams();
- }
- /**
- * Getteur
- */
- public function view(): Minz_View {
- return $this->view;
- }
- /**
- * Set default CSP policies.
- * @param array<string,string> $policies An array where keys are directives and values are sources.
- */
- public static function _defaultCsp(array $policies): void {
- if (!isset($policies['default-src']) || !isset($policies['frame-ancestors'])) {
- Minz_Log::warning('Default CSP policy is not declared', ADMIN_LOG);
- }
- self::$csp_default = $policies;
- }
- /**
- * Set CSP policies.
- *
- * default-src and frame-ancestors directives should always be given.
- *
- * References:
- * - https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/CSP
- * - https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Content-Security-Policy/default-src
- * - https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Content-Security-Policy/frame-ancestors
- *
- * @param array<string,string> $policies An array where keys are directives and values are sources.
- */
- protected function _csp(array $policies): void {
- if (!isset($policies['default-src']) || !isset($policies['frame-ancestors'])) {
- $action = Minz_Request::controllerName() . '#' . Minz_Request::actionName();
- Minz_Log::warning(
- "Default CSP policy is not declared for action {$action}.",
- ADMIN_LOG
- );
- }
- $this->csp_policies = $policies;
- }
- /**
- * Send HTTP Content-Security-Policy header based on declared policies.
- */
- public function declareCspHeader(): void {
- $policies = [];
- foreach (Minz_ExtensionManager::listExtensions(true) as $extension) {
- $extension->amendCsp($this->csp_policies);
- }
- foreach ($this->csp_policies as $directive => $sources) {
- $policies[] = $directive . ' ' . $sources;
- }
- header('Content-Security-Policy: ' . implode('; ', $policies));
- }
- /**
- * Méthodes à redéfinir (ou non) par héritage
- * firstAction est la première méthode exécutée par le Dispatcher
- * lastAction est la dernière
- */
- public function init(): void { }
- public function firstAction(): void { }
- public function lastAction(): void { }
- }
|