Newer
Older
benakamoorthi
a validé
<?php
/**
* Piwik - free/libre analytics platform
benakamoorthi
a validé
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
Thomas Steur
a validé
namespace Piwik\Tests\Framework\Mock;
benakamoorthi
a validé
Thomas Steur
a validé
use Piwik\Plugins\UserCountry\LocationProvider as CountryLocationProvider;
mattab
a validé
/**
* @since 2.8.0
*/
Thomas Steur
a validé
class LocationProvider extends CountryLocationProvider
benakamoorthi
a validé
{
const ID = 'mock_provider';
public static $locations = array();
private $currentLocation = 0;
Thomas Steur
a validé
private $ipToLocations = array();
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;
}
Thomas Steur
a validé
$this->completeLocationResult($result);
Thomas Steur
a validé
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
}