forked from rebillar/site-accueil-insa
152 lines
5.1 KiB
PHP
152 lines
5.1 KiB
PHP
<?php
|
|
/**
|
|
* Matomo - free/libre analytics platform
|
|
*
|
|
* @link https://matomo.org
|
|
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
|
*
|
|
*/
|
|
|
|
namespace Piwik;
|
|
|
|
use Matomo\Network\IPUtils;
|
|
|
|
/**
|
|
* Contains IP address helper functions (for both IPv4 and IPv6).
|
|
*
|
|
* As of Piwik 2.9, most methods in this class are deprecated. You are
|
|
* encouraged to use classes from the Piwik "Network" component:
|
|
*
|
|
* @see \Matomo\Network\IP
|
|
* @see \Matomo\Network\IPUtils
|
|
* @link https://github.com/matomo-org/component-network
|
|
*
|
|
* As of Piwik 1.3, IP addresses are stored in the DB has VARBINARY(16),
|
|
* and passed around in network address format which has the advantage of
|
|
* being in big-endian byte order. This allows for binary-safe string
|
|
* comparison of addresses (of the same length), even on Intel x86.
|
|
*
|
|
* As a matter of naming convention, we use `$ip` for the network address format
|
|
* and `$ipString` for the presentation format (i.e., human-readable form).
|
|
*
|
|
* We're not using the network address format (in_addr) for socket functions,
|
|
* so we don't have to worry about incompatibility with Windows UNICODE
|
|
* and inetPtonW().
|
|
*
|
|
* @api
|
|
*/
|
|
class IP
|
|
{
|
|
/**
|
|
* Returns the most accurate IP address available for the current user, in
|
|
* IPv4 format. This could be the proxy client's IP address.
|
|
*
|
|
* @return string IP address in presentation format.
|
|
*/
|
|
public static function getIpFromHeader()
|
|
{
|
|
$general = Config::getInstance()->General;
|
|
$clientHeaders = @$general['proxy_client_headers'];
|
|
if (!is_array($clientHeaders)) {
|
|
$clientHeaders = array();
|
|
}
|
|
|
|
$default = '0.0.0.0';
|
|
if (isset($_SERVER['REMOTE_ADDR'])) {
|
|
$default = $_SERVER['REMOTE_ADDR'];
|
|
}
|
|
|
|
$ipString = self::getNonProxyIpFromHeader($default, $clientHeaders);
|
|
return IPUtils::sanitizeIp($ipString);
|
|
}
|
|
|
|
/**
|
|
* Returns a non-proxy IP address from header.
|
|
*
|
|
* @param string $default Default value to return if there no matching proxy header.
|
|
* @param array $proxyHeaders List of proxy headers.
|
|
* @return string
|
|
*/
|
|
public static function getNonProxyIpFromHeader($default, $proxyHeaders)
|
|
{
|
|
$proxyIps = array();
|
|
$config = Config::getInstance()->General;
|
|
if (isset($config['proxy_ips'])) {
|
|
$proxyIps = $config['proxy_ips'];
|
|
}
|
|
if (!is_array($proxyIps)) {
|
|
$proxyIps = array();
|
|
}
|
|
|
|
$shouldReadLastProxyIp = Config::getInstance()->General['proxy_ip_read_last_in_list'] == 1;
|
|
|
|
if (!$shouldReadLastProxyIp) {
|
|
$proxyIps[] = $default;
|
|
}
|
|
|
|
// examine proxy headers
|
|
foreach ($proxyHeaders as $proxyHeader) {
|
|
if (!empty($_SERVER[$proxyHeader])) {
|
|
// this may be buggy if someone has proxy IPs and proxy host headers configured as
|
|
// `$_SERVER[$proxyHeader]` could be eg $_SERVER['HTTP_X_FORWARDED_HOST'] and
|
|
// include an actual host name, not an IP
|
|
if ($shouldReadLastProxyIp) {
|
|
$proxyIp = self::getLastIpFromList($_SERVER[$proxyHeader], $proxyIps);
|
|
} else {
|
|
$proxyIp = self::getFirstIpFromList($_SERVER[$proxyHeader], $proxyIps);
|
|
}
|
|
if (strlen($proxyIp) && stripos($proxyIp, 'unknown') === false) {
|
|
return $proxyIp;
|
|
}
|
|
}
|
|
}
|
|
|
|
return $default;
|
|
}
|
|
|
|
/**
|
|
* Returns the last IP address in a comma separated list, subject to an optional exclusion list.
|
|
*
|
|
* @param string $csv Comma separated list of elements.
|
|
* @param array $excludedIps Optional list of excluded IP addresses (or IP address ranges).
|
|
* @return string Last (non-excluded) IP address in the list or an empty string if all given IPs are excluded.
|
|
*/
|
|
public static function getFirstIpFromList($csv, $excludedIps = null)
|
|
{
|
|
$p = strrpos($csv, ',');
|
|
if ($p !== false) {
|
|
$elements = self::getIpsFromList($csv, $excludedIps);
|
|
return reset($elements) ?: '';
|
|
}
|
|
return trim(Common::sanitizeInputValue($csv));
|
|
}
|
|
|
|
public static function getLastIpFromList($csv, $excludedIps = null)
|
|
{
|
|
$p = strrpos($csv, ',');
|
|
if ($p !== false) {
|
|
$elements = self::getIpsFromList($csv, $excludedIps);
|
|
return end($elements) ?: '';
|
|
}
|
|
return trim(Common::sanitizeInputValue($csv));
|
|
}
|
|
|
|
private static function getIpsFromList(string $csv, ?array $excludedIps)
|
|
{
|
|
$result = [];
|
|
|
|
$elements = explode(',', $csv);
|
|
foreach ($elements as $ipString) {
|
|
$element = trim(Common::sanitizeInputValue($ipString));
|
|
if(empty($element)) {
|
|
continue;
|
|
}
|
|
$ip = \Matomo\Network\IP::fromStringIP(IPUtils::sanitizeIp($element));
|
|
if (empty($excludedIps) || (!in_array($element, $excludedIps) && !$ip->isInRanges($excludedIps))) {
|
|
$result[] = $element;
|
|
}
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
}
|