Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Referer.php « Tracker « core - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1c8469f3f0717f5eb639fe93c54deac24c32fd03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
<?php
/**
 * Piwik - Open source web analytics
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 *
 * @category Piwik
 * @package Piwik
 */
use Piwik\Core\Common;

/**
 * @package Piwik
 * @subpackage Piwik_Tracker
 */
class Piwik_Tracker_Referer
{
    // @see detect*() referer methods
    protected $typeRefererAnalyzed;
    protected $nameRefererAnalyzed;
    protected $keywordRefererAnalyzed;
    protected $refererHost;
    protected $refererUrl;
    protected $refererUrlParse;
    protected $currentUrlParse;
    protected $idsite;

    // Used to prefix when a adsense referer is detected
    const LABEL_PREFIX_ADSENSE_KEYWORD = '(adsense) ';


    /**
     * Returns an array containing the following information:
     * - referer_type
     *        - direct            -- absence of referer URL OR referer URL has the same host
     *        - site                -- based on the referer URL
     *        - search_engine        -- based on the referer URL
     *        - campaign            -- based on campaign URL parameter
     *
     * - referer_name
     *         - ()
     *         - piwik.net            -- site host name
     *         - google.fr            -- search engine host name
     *         - adwords-search    -- campaign name
     *
     * - referer_keyword
     *         - ()
     *         - ()
     *         - my keyword
     *         - my paid keyword
     *         - ()
     *         - ()
     *
     * - referer_url : the same for all the referer types
     *
     * @param $refererUrl must be URL Encoded
     * @param $currentUrl
     * @param $idSite
     * @return array
     */
    public function getRefererInformation($refererUrl, $currentUrl, $idSite)
    {
        $this->idsite = $idSite;

        // default values for the referer_* fields
        $refererUrl = Common::unsanitizeInputValue($refererUrl);
        if (!empty($refererUrl)
            && !Common::isLookLikeUrl($refererUrl)
        ) {
            $refererUrl = '';
        }

        $currentUrl = Piwik_Tracker_Action::cleanupUrl($currentUrl);

        $this->refererUrl = $refererUrl;
        $this->refererUrlParse = @parse_url($this->refererUrl);
        $this->currentUrlParse = @parse_url($currentUrl);
        $this->typeRefererAnalyzed = Common::REFERER_TYPE_DIRECT_ENTRY;
        $this->nameRefererAnalyzed = '';
        $this->keywordRefererAnalyzed = '';
        $this->refererHost = '';

        if (isset($this->refererUrlParse['host'])) {
            $this->refererHost = $this->refererUrlParse['host'];
        }

        $refererDetected = false;

        if (!empty($this->currentUrlParse['host'])
            && $this->detectRefererCampaign()
        ) {
            $refererDetected = true;
        }

        if (!$refererDetected) {
            if ($this->detectRefererDirectEntry()
                || $this->detectRefererSearchEngine()
            ) {
                $refererDetected = true;
            }
        }

        if (!empty($this->refererHost)
            && !$refererDetected
        ) {
            $this->typeRefererAnalyzed = Common::REFERER_TYPE_WEBSITE;
            $this->nameRefererAnalyzed = mb_strtolower($this->refererHost, 'UTF-8');
        }

        $refererInformation = array(
            'referer_type'    => $this->typeRefererAnalyzed,
            'referer_name'    => $this->nameRefererAnalyzed,
            'referer_keyword' => $this->keywordRefererAnalyzed,
            'referer_url'     => $this->refererUrl,
        );

        return $refererInformation;
    }

    /**
     * Search engine detection
     * @return bool
     */
    protected function detectRefererSearchEngine()
    {
        $searchEngineInformation = Common::extractSearchEngineInformationFromUrl($this->refererUrl);
        Piwik_PostEvent('Tracker.detectRefererSearchEngine', array(&$searchEngineInformation, $this->refererUrl));
        if ($searchEngineInformation === false) {
            return false;
        }
        $this->typeRefererAnalyzed = Common::REFERER_TYPE_SEARCH_ENGINE;
        $this->nameRefererAnalyzed = $searchEngineInformation['name'];
        $this->keywordRefererAnalyzed = $searchEngineInformation['keywords'];
        return true;
    }

    /**
     * @param string $string
     * @return bool
     */
    protected function detectCampaignFromString($string)
    {
        foreach ($this->campaignNames as $campaignNameParameter) {
            $campaignName = trim(urldecode(Common::getParameterFromQueryString($string, $campaignNameParameter)));
            if (!empty($campaignName)) {
                break;
            }
        }

        if (!empty($campaignName)) {
            $this->typeRefererAnalyzed = Common::REFERER_TYPE_CAMPAIGN;
            $this->nameRefererAnalyzed = $campaignName;

            foreach ($this->campaignKeywords as $campaignKeywordParameter) {
                $campaignKeyword = Common::getParameterFromQueryString($string, $campaignKeywordParameter);
                if (!empty($campaignKeyword)) {
                    $this->keywordRefererAnalyzed = trim(urldecode($campaignKeyword));
                    break;
                }
            }

            // if the campaign keyword is empty, try to get a keyword from the referrer URL
            if (empty($this->keywordRefererAnalyzed)) {
                // Set the Campaign keyword to the keyword found in the Referer URL if any
                $referrerUrlInfo = Common::extractSearchEngineInformationFromUrl($this->refererUrl);
                if (!empty($referrerUrlInfo['keywords'])) {
                    $this->keywordRefererAnalyzed = $referrerUrlInfo['keywords'];
                }

                // Set the keyword, to the hostname found, in a Adsense Referer URL '&url=' parameter
                if (empty($this->keywordRefererAnalyzed)
                    && !empty($this->refererUrlParse['query'])
                    && !empty($this->refererHost)
                    && (strpos($this->refererHost, 'google') !== false || strpos($this->refererHost, 'doubleclick') !== false)
                ) {
                    // This parameter sometimes is found & contains the page with the adsense ad bringing visitor to our site
                    $adsenseReferrerParameter = 'url';
                    $value = trim(urldecode(Common::getParameterFromQueryString($this->refererUrlParse['query'], $adsenseReferrerParameter)));
                    if (!empty($value)) {
                        $parsedAdsenseReferrerUrl = parse_url($value);
                        if (!empty($parsedAdsenseReferrerUrl['host'])) {
                            $this->keywordRefererAnalyzed = self::LABEL_PREFIX_ADSENSE_KEYWORD . $parsedAdsenseReferrerUrl['host'];
                        }
                    }
                }

                // or we default to the referrer hostname otherwise
                if (empty($this->keywordRefererAnalyzed)) {
                    $this->keywordRefererAnalyzed = $this->refererHost;
                }
            }

            return true;
        }
        return false;
    }

    /**
     * Campaign analysis
     * @return bool
     */
    protected function detectRefererCampaign()
    {
        if (!isset($this->currentUrlParse['query'])
            && !isset($this->currentUrlParse['fragment'])
        ) {
            return false;
        }
        $campaignParameters = Common::getCampaignParameters();
        $this->campaignNames = $campaignParameters[0];
        $this->campaignKeywords = $campaignParameters[1];

        $found = false;

        // 1) Detect campaign from query string
        if (isset($this->currentUrlParse['query'])) {
            $found = $this->detectCampaignFromString($this->currentUrlParse['query']);
        }

        // 2) Detect from fragment #hash
        if (!$found
            && isset($this->currentUrlParse['fragment'])
        ) {
            $found = $this->detectCampaignFromString($this->currentUrlParse['fragment']);
        }
        return $found;
    }

    /**
     * We have previously tried to detect the campaign variables in the URL
     * so at this stage, if the referer host is the current host,
     * or if the referer host is any of the registered URL for this website,
     * it is considered a direct entry
     * @return bool
     */
    protected function detectRefererDirectEntry()
    {
        if (!empty($this->refererHost)) {
            // is the referer host the current host?
            if (isset($this->currentUrlParse['host'])) {
                $currentHost = mb_strtolower($this->currentUrlParse['host'], 'UTF-8');
                if ($currentHost == mb_strtolower($this->refererHost, 'UTF-8')) {
                    $this->typeRefererAnalyzed = Common::REFERER_TYPE_DIRECT_ENTRY;
                    return true;
                }
            }
            if (Piwik_Tracker_Visit::isHostKnownAliasHost($this->refererHost, $this->idsite)) {
                $this->typeRefererAnalyzed = Common::REFERER_TYPE_DIRECT_ENTRY;
                return true;
            }
        }
        return false;
    }
}