قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-22 15:07:44 +00:00

* [Coding Style] Enable rule PSR12.Files.FileHeader * Apply CS * Replace Piwik with Matomo in file headers * Unify file headers (position, no. of lines, https links) * Rebuild dist files * Apply CS * Fix system test that relies on line numbers in a file that had the file header updated --------- Co-authored-by: Stefan Giehl <stefan@matomo.org>
68 خطوط
1.7 KiB
PHP
68 خطوط
1.7 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Matomo - free/libre analytics platform
|
|
*
|
|
* @link https://matomo.org
|
|
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
|
*/
|
|
|
|
namespace Piwik\Tests\Framework\Mock;
|
|
|
|
use Piwik\Plugins\UserCountry\LocationProvider as CountryLocationProvider;
|
|
|
|
/**
|
|
* @since 2.8.0
|
|
*/
|
|
class LocationProvider extends CountryLocationProvider
|
|
{
|
|
public const ID = 'mock_provider';
|
|
|
|
public static $locations = array();
|
|
private $currentLocation = 0;
|
|
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;
|
|
}
|
|
|
|
$this->completeLocationResult($result);
|
|
|
|
return $result;
|
|
}
|
|
|
|
public function getInfo()
|
|
{
|
|
return array('id' => self::ID, 'title' => 'mock provider', 'description' => 'mock provider', 'order' => 2);
|
|
}
|
|
|
|
public function isAvailable()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function isWorking()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function getSupportedLocationInfo()
|
|
{
|
|
return array(); // unimplemented
|
|
}
|
|
}
|