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

Loader.php « core - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6e33987f1932488c020d1bfdc4a059d2ace63546 (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
<?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;

use Exception;

/**
 * Piwik auto loader
 *
 */
class Loader
{
    // our class search path; current directory is intentionally excluded
    protected static $dirs = array('/core/', '/plugins/');

    /**
     * Get class file name
     *
     * @param string $class Class name
     * @return string Class file name
     * @throws Exception if class name is invalid
     */
    protected static function getClassFileName($class)
    {
        if (!preg_match('/^[A-Za-z0-9_\\\\]+$/D', $class)) {
            throw new Exception("Invalid class name \"$class\".");
        }

        // prefixed class
        $class = str_replace('_', '/', $class);

        // namespace \Piwik\Common
        $class = str_replace('\\', '/', $class);

        if ($class == 'Piwik') {
            return $class;
        }

        $class = self::removeFirstMatchingPrefix($class, array('/Piwik/', 'Piwik/'));
        $class = self::removeFirstMatchingPrefix($class, array('/Plugins/', 'Plugins/'));

        return $class;
    }

    protected static function removeFirstMatchingPrefix($class, $vendorPrefixesToRemove)
    {
        foreach ($vendorPrefixesToRemove as $prefix) {
            if (strpos($class, $prefix) === 0) {
                return substr($class, strlen($prefix));
            }
        }

        return $class;
    }

    private static function isPluginClass($class)
    {
        return 0 === strpos($class, 'Piwik\Plugins') || 0 === strpos($class, '\Piwik\Plugins');
    }

    private static function usesPiwikNamespace($class)
    {
        return 0 === strpos($class, 'Piwik\\') || 0 === strpos($class, '\Piwik\\');
    }

    /**
     * Load class by name
     *
     * @param string $class Class name
     * @throws Exception if class not found
     */
    public static function loadClass($class)
    {
        $classPath = self::getClassFileName($class);

        if (static::isPluginClass($class)) {
            static::tryToLoadClass($class, '/plugins/', $classPath);
        } elseif (static::usesPiwikNamespace($class)) {
            static::tryToLoadClass($class, '/core/', $classPath);
        } else {
            // non-Piwik classes (e.g., Zend Framework) are in libs/
            static::tryToLoadClass($class, '/libs/', $classPath);
        }
    }

    private static function tryToLoadClass($class, $dir, $classPath)
    {
        $path = PIWIK_INCLUDE_PATH . $dir . $classPath . '.php';

        if (file_exists($path)) {
            require_once $path; // prefixed by PIWIK_INCLUDE_PATH

            return class_exists($class, false) || interface_exists($class, false);
        }

        return false;
    }

    /**
     * Autoloader
     *
     * @param string $class Class name
     */
    public static function autoload($class)
    {
        try {
            self::loadClass($class);
        } catch (Exception $e) {
        }
    }
}

// use the SPL autoload stack
spl_autoload_register(array('Piwik\Loader', 'autoload'));

// preserve any existing __autoload
if (function_exists('__autoload')) {
    spl_autoload_register('__autoload');
}