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

Cache.php « Config « core - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aa0bf80e9ed09d7977375f0737768816a5b82354 (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
<?php
/**
 * Piwik - free/libre analytics platform
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

namespace Piwik\Config;

use Piwik\Cache\Backend\File;
use Piwik\Common;
use Piwik\Filesystem;
use Piwik\Piwik;
use Piwik\Url;

/**
 * Exception thrown when the config file doesn't exist.
 */
class Cache extends File
{
    private $host = '';

    public function __construct()
    {
        $this->host = $this->getHost();

        // because the config is not yet loaded we cannot identify the instanceId...
        // need to use the hostname
        $dir = $this->makeCacheDir($this->host);

        parent::__construct($dir);
    }

    private function makeCacheDir($host)
    {
        return PIWIK_INCLUDE_PATH . '/tmp/' . $host . '/cache/tracker';
    }

    public function isValidHost($mergedConfigSettings)
    {
        if (!isset($mergedConfigSettings['General']['trusted_hosts']) || !is_array($mergedConfigSettings['General']['trusted_hosts'])) {
            return false;
        }
        // note: we do not support "enable_trusted_host_check" to keep things secure
        return in_array($this->host, $mergedConfigSettings['General']['trusted_hosts'], true);
    }

    private function getHost()
    {
        $host = Url::getHost($checkIfTrusted = false);
        $host = Url::getHostSanitized($host); // Remove any port number to get actual hostname
        $host = Common::sanitizeInputValue($host);

        if (empty($host)
            || strpos($host, '..') !== false
            || strpos($host, '\\') !== false
            || strpos($host, '/') !== false) {
            throw new \Exception('Unsupported host');
        }

        $this->host = $host;

        return $host;
    }

    public function doDelete($id)
    {
        // when the config changes, we need to invalidate the config caches for all configured hosts as well, not only
        // the currently trusted host
        $hosts = Url::getTrustedHosts();
        $initialDir = $this->directory;

        foreach ($hosts as $host)
        {
            $dir = $this->makeCacheDir($host);
            if (@is_dir($dir)) {
                $this->directory = $dir;
                $success = parent::doDelete($id);
                if ($success) {
                    Piwik::postEvent('Core.configFileDeleted', array($this->getFilename($id)));
                }
            }
        }

        $this->directory = $initialDir;
    }

}