Skip to content
Extraits de code Groupes Projets
LocationProvider.php 1,68 ko
Newer Older
  • Learn to ignore specific revisions
  •  * Piwik - free/libre analytics platform
    
     *
     * @link http://piwik.org
     * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
     */
    
    use Piwik\Plugins\UserCountry\LocationProvider as CountryLocationProvider;
    
    class LocationProvider extends CountryLocationProvider
    
        public static $locations = array();
        private $currentLocation = 0;
    
    
        public function getLocation($info)
        {
            $ip = $info['ip'];
    
            if (isset($this->ipToLocations[$ip])) {
                $result = $this->ipToLocations[$ip];
            } else {
    
                if (!isset(self::$locations[$this->currentLocation])) {
                    throw new \Exception("Unknown location index in mock LocationProvider {$this->currentLocation}. This "
                        . "shouldn't ever happen, it is likely something is using the mock LocationProvider when it should be using a real one.");
                }
    
    
                $result = self::$locations[$this->currentLocation];
                $this->currentLocation = ($this->currentLocation + 1) % count(self::$locations);
    
                $this->ipToLocations[$ip] = $result;
            }
    
            $this->completeLocationResult($result);
    
            return $result;
        }
    
        public function getInfo()
        {
    
            return array('id' => self::ID, 'title' => 'mock provider', 'description' => 'mock provider', 'order' => 10);
    
        }
    
        public function isAvailable()
        {
            return true;
        }
    
        public function isWorking()
        {
            return true;
        }
    
        public function getSupportedLocationInfo()
        {
            return array(); // unimplemented
        }