HEX
Server: Microsoft-IIS/10.0
System: Windows NT ITPWINWEBSVR22 10.0 build 20348 (Windows Server 2022) AMD64
User: www.conferencesearch.co.uk (0)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: D:/web/matomo.vdk/plugins/Referrers/VisitorDetails.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\Plugins\Referrers;

use Piwik\Common;
use Piwik\Plugins\Live\VisitorDetailsAbstract;
use Piwik\UrlHelper;
use Piwik\View;

class VisitorDetails extends VisitorDetailsAbstract
{
    public function extendVisitorDetails(&$visitor)
    {
        $visitor['referrerType']              = $this->getReferrerType();
        $visitor['referrerTypeName']          = $this->getReferrerTypeName();
        $visitor['referrerName']              = $this->getReferrerName();
        $visitor['referrerKeyword']           = $this->getKeyword();
        $visitor['referrerKeywordPosition']   = $this->getKeywordPosition();
        $visitor['referrerUrl']               = $this->getReferrerUrl();
        $visitor['referrerSearchEngineUrl']   = $this->getSearchEngineUrl();
        $visitor['referrerSearchEngineIcon']  = $this->getSearchEngineIcon();
        $visitor['referrerSocialNetworkUrl']  = $this->getSocialNetworkUrl();
        $visitor['referrerSocialNetworkIcon'] = $this->getSocialNetworkIcon();
        $visitor['referrerAIAssistantUrl'] = $this->getAIAssistantUrl();
        $visitor['referrerAIAssistantIcon'] = $this->getAIAssistantIcon();
    }

    public function renderVisitorDetails($visitorDetails)
    {
        $view            = new View('@Referrers/_visitorDetails.twig');
        $view->sendHeadersWhenRendering = false;
        $view->visitInfo = $visitorDetails;
        return [[ 10, $view->render() ]];
    }

    public function renderActionTooltip($action, $visitInfo)
    {
        if (
            empty($action['type'])
            || ($action['type'] !== 'goal' && $action['type'] !== 'ecommerceOrder')
            || empty($action['referrerType'])
        ) {
            return [];
        }

        // Attribution information for goals
        $view         = new View('@Referrers/_actionTooltip');
        $view->sendHeadersWhenRendering = false;
        $view->action = $action;
        return [[ 10, $view->render() ]];
    }

    protected function getReferrerType()
    {
        try {
            $referrerType = getReferrerTypeFromShortName($this->details['referer_type']);
        } catch (\Exception $e) {
            $referrerType = '';
        }

        return $referrerType;
    }

    protected function getReferrerTypeName()
    {
        return getReferrerTypeLabel($this->details['referer_type']);
    }

    protected function getKeyword()
    {
        $keyword = Common::unsanitizeInputValue($this->details['referer_keyword']);

        if ($this->getReferrerType() == 'search') {
            $keyword = API::getCleanKeyword($keyword);
        }

        return urldecode($keyword);
    }

    protected function getReferrerUrl()
    {
        if (UrlHelper::isLookLikeUrl($this->details['referer_url'])) {
            return $this->details['referer_url'];
        }

        return null;
    }

    protected function getKeywordPosition()
    {
        if (
            $this->getReferrerType() == 'search'
            && strpos($this->getReferrerName(), 'Google') !== false
        ) {
            $url = @parse_url($this->details['referer_url']);
            if (empty($url['query'])) {
                return null;
            }

            $position = UrlHelper::getParameterFromQueryString($url['query'], 'cd');
            if (!empty($position)) {
                return $position;
            }
        }

        return null;
    }

    protected function getReferrerName(): string
    {
         return html_entity_decode(($this->details['referer_name'] ?? ''), ENT_QUOTES, "UTF-8");
    }

    protected function getSearchEngineUrl()
    {
        if (
            $this->getReferrerType() == 'search'
            && !empty($this->details['referer_name'])
        ) {
            return SearchEngine::getInstance()->getUrlFromName($this->details['referer_name']);
        }

        return null;
    }

    protected function getSearchEngineIcon()
    {
        $searchEngineUrl = $this->getSearchEngineUrl();

        if (!is_null($searchEngineUrl)) {
            return SearchEngine::getInstance()->getLogoFromUrl($searchEngineUrl);
        }

        return null;
    }

    protected function getSocialNetworkUrl()
    {
        if (
            $this->getReferrerType() == 'social'
            && !empty($this->details['referer_name'])
        ) {
            return Social::getInstance()->getMainUrl($this->details['referer_url']);
        }

        return null;
    }

    protected function getSocialNetworkIcon()
    {
        $socialNetworkUrl = $this->getSocialNetworkUrl();

        if (!is_null($socialNetworkUrl)) {
            return Social::getInstance()->getLogoFromUrl($socialNetworkUrl);
        }

        return null;
    }

    protected function getAIAssistantUrl(): ?string
    {
        if (
            $this->getReferrerType() === 'ai'
            && !empty($this->details['referer_name'])
        ) {
            return AIAssistant::getInstance()->getMainUrl($this->details['referer_url']);
        }

        return null;
    }

    protected function getAIAssistantIcon(): ?string
    {
        $aiAssistantUrl = $this->getAIAssistantUrl();

        if (!is_null($aiAssistantUrl)) {
            return AIAssistant::getInstance()->getLogoFromUrl($aiAssistantUrl);
        }

        return null;
    }
}