Your IP : 216.73.216.81


Current Path : /srv/web/sites/trentinoplant.it/httpdocs/vendor/magento/module-csp/Model/Mode/
Upload File :
Current File : /srv/web/sites/trentinoplant.it/httpdocs/vendor/magento/module-csp/Model/Mode/ConfigManager.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\Csp\Model\Mode;

use Magento\Framework\App\Request\Http;
use Magento\Framework\App\ObjectManager;
use Magento\Csp\Api\Data\ModeConfiguredInterface;
use Magento\Csp\Api\ModeConfigManagerInterface;
use Magento\Csp\Model\Mode\Data\ModeConfigured;
use Magento\Framework\App\Area;
use Magento\Framework\App\Config\ScopeConfigInterface;
use Magento\Framework\App\State;
use Magento\Store\Model\ScopeInterface;
use Magento\Store\Model\Store;

/**
 * @inheritDoc
 */
class ConfigManager implements ModeConfigManagerInterface
{
    /**
     * @var ScopeConfigInterface
     */
    private $config;

    /**
     * @var Store
     */
    private $storeModel;

    /**
     * @var State
     */
    private $state;

    /**
     * @var Http
     */
    private Http $request;

    /**
     * @param ScopeConfigInterface $config
     * @param Store $store
     * @param State $state
     * @param Http|null $request
     */
    public function __construct(
        ScopeConfigInterface $config,
        Store $store,
        State $state,
        ?Http $request = null
    ) {
        $this->config = $config;
        $this->storeModel = $store;
        $this->state = $state;

        $this->request = $request
            ?? ObjectManager::getInstance()->get(Http::class);
    }

    /**
     * @inheritDoc
     */
    public function getConfigured(): ModeConfiguredInterface
    {
        $area = $this->state->getAreaCode();

        if ($area === Area::AREA_ADMINHTML) {
            $configArea = 'admin';
        } elseif ($area === Area::AREA_FRONTEND) {
            $configArea = 'storefront';
        } else {
            throw new \RuntimeException(
                'CSP can only be configured for storefront or admin area'
            );
        }

        $reportOnly = $this->config->getValue(
            sprintf(
                'csp/mode/%s_%s/report_only',
                $configArea,
                $this->request->getFullActionName()
            ),
            ScopeInterface::SCOPE_STORE,
            $this->storeModel->getStore()
        );

        if ($reportOnly === null) {
            // Fallback to default configuration.
            $reportOnly = $this->config->getValue(
                'csp/mode/' . $configArea .'/report_only',
                ScopeInterface::SCOPE_STORE,
                $this->storeModel->getStore()
            );
        }

        $reportUri = $this->config->getValue(
            sprintf(
                'csp/mode/%s_%s/report_uri',
                $configArea,
                $this->request->getFullActionName()
            ),
            ScopeInterface::SCOPE_STORE,
            $this->storeModel->getStore()
        );

        if (empty($reportUri)) {
            // Fallback to default configuration.
            $reportUri = $this->config->getValue(
                'csp/mode/' . $configArea .'/report_uri',
                ScopeInterface::SCOPE_STORE,
                $this->storeModel->getStore()
            );
        }

        return new ModeConfigured(
            (bool) $reportOnly,
            !empty($reportUri) ? $reportUri : null
        );
    }
}