* @link https://www.oxidmodule.com */ namespace D3\GoogleAnalytics4\Modules\Core; use OxidEsales\Eshop\Application\Controller\FrontendController; use OxidEsales\Eshop\Core\Config; use OxidEsales\Eshop\Core\Registry; use OxidEsales\EshopCommunity\Internal\Container\ContainerFactory; use OxidEsales\EshopCommunity\Internal\Framework\Module\Configuration\Bridge\ModuleSettingBridgeInterface; class ViewConfig extends ViewConfig_parent { // Google Tag Manager Container ID private $sContainerId = null; private $sCookieManagerType = null; public function getGtmContainerId() { if ($this->sContainerId === null) { $this->sContainerId = ContainerFactory::getInstance() ->getContainer() ->get(ModuleSettingBridgeInterface::class) ->get('d3_gtm_sContainerID', 'd3googleanalytics4'); } return $this->sContainerId; } public function getModuleConsentmanagerSettingSelectValue() :bool { return Registry::getConfig()->getConfigParam('d3_gtm_settings_HAS_CONSENTMANAGER') === 'YES'; } public function getCookieManagerType() { if ($this->sCookieManagerType === null) { $this->sCookieManagerType = false; $allowedManagerTypes = [ 'net_cookie_manager', 'agcookiecompliance', 'oxps_usercentrics' ]; foreach ($allowedManagerTypes as $type) { if ($this->isModuleActive($type)) { $this->sCookieManagerType = $type; break; } } } if ($this->sCookieManagerType === false and $this->getModuleConsentmanagerSettingSelectValue()){ return "consentmanager"; } return $this->sCookieManagerType; } /** * @return bool */ public function D3blShowGtmScript() { /** @var Config $oConfig */ $oConfig = Registry::getConfig(); // No Cookie Manager in use if (!$oConfig->getConfigParam('d3_gtm_settings_hasOwnCookieManager')) { return true; } $sCookieID = $oConfig->getConfigParam('d3_gtm_settings_cookieName'); // Netensio Cookie Manager if ($this->getCookieManagerType() == "net_cookie_manager") { $oSession = Registry::getSession(); $aCookies = $oSession->getVariable("aCookieSel"); return (!is_null($aCookies) && is_array($aCookies) && array_key_exists($sCookieID, $aCookies) && $aCookies[$sCookieID] == "1"); } // Aggrosoft Cookie Consent if ($this->getCookieManagerType() == "agcookiecompliance") { if (method_exists($this, "isCookieCategoryEnabled")) { return $this->isCookieCategoryEnabled($sCookieID); } } // UserCentrics if ($this->getCookieManagerType() === "oxps_usercentrics" or $this->getCookieManagerType() === 'consentmanager') { // Always needs the script-tags delivered to the DOM. return true; } // Cookie Manager not (yet) supported return false; } /** * Get additional attributes for script tags. * This is especially important for UserCentrics. * @return string */ public function getGtmScriptAttributes() { $oConfig = Registry::getConfig(); if ($this->getCookieManagerType() == "oxps_usercentrics") { $sCookieId = $oConfig->getConfigParam('d3_gtm_settings_cookieName'); if ($sCookieId) { return 'type="text/plain" data-usercentrics="' . $sCookieId . '"'; } } if ($this->getCookieManagerType() == "consentmanager") { $sCookieId = $oConfig->getConfigParam('d3_gtm_settings_cookieName'); if ($sCookieId) { return 'async type="text/plain" data-cmp-src="https://www.googletagmanager.com/gtm.js?id='.$this->getGtmContainerId().'" class="cmplazyload" data-cmp-vendor="s905" '; } } return ""; } private $blGA4enabled = null; public function isGA4enabled() { if ($this->blGA4enabled === null) { $this->sContainerId = ContainerFactory::getInstance() ->getContainer() ->get(ModuleSettingBridgeInterface::class) ->get('d3_gtm_blEnableGA4', 'd3googleanalytics4'); } return $this->blGA4enabled; } public function getGtmDataLayer() { if (!$this->getGtmContainerId()) return "[]"; $oConfig = Registry::getConfig(); $oView = $oConfig->getTopActiveView(); /** @var FrontendController $oShop */ $oUser = $oConfig->getUser(); $cl = $this->getTopActiveClassName(); $aPageTypes = [ "content" => "cms", "details" => "product", "alist" => "listing", "search" => "listing", "basket" => "checkout", "user" => "checkout", "payment" => "checkout", "order" => "checkout", "thankyou" => "checkout", "start" => "start", ]; $dataLayer = [ 'page' => [ 'type' => $aPageTypes[$cl] ?? "unknown", 'title' => $oView->getTitle(), 'cl' => $cl, ], 'userid' => ($oUser ? $oUser->getId() : false), 'sessionid' => session_id() ?? false, //'httpref' => $_SERVER["HTTP_REFERER"] ?? "unknown" ]; return json_encode([$dataLayer], JSON_PRETTY_PRINT); } public function isPromotionList($listId) { $oConfig = Registry::getConfig(); $aPromotionListIds = $oConfig->getConfigParam("") ?? ['bargainItems', 'newItems', 'topBox', 'alsoBought', 'accessories', 'cross']; } }