dolibarr/htdocs/core/class/dolgeoip.class.php

250 lines
6.8 KiB
PHP
Raw Permalink Normal View History

2009-10-13 23:46:09 +02:00
<?php
2024-03-04 18:27:49 +01:00
/* Copyright (C) 2009-2012 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
* Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
2009-10-13 23:46:09 +02:00
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
2009-10-13 23:46:09 +02:00
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2019-09-23 21:55:30 +02:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
* or see https://www.gnu.org/
2009-10-13 23:46:09 +02:00
*/
/**
* \file htdocs/core/class/dolgeoip.class.php
2009-10-13 23:46:09 +02:00
* \ingroup geoip
* \brief File of class to manage module geoip
2009-10-13 23:46:09 +02:00
*/
/**
2009-11-13 06:33:22 +01:00
* \class DolGeoIP
2023-06-28 13:30:50 +02:00
* \brief Class to manage GeoIP conversion
* Usage:
* $geoip=new GeoIP('country',$datfile);
* $geoip->getCountryCodeFromIP($ip);
* $geoip->close();
2009-10-13 23:46:09 +02:00
*/
class DolGeoIP
{
2023-11-23 17:13:20 +01:00
/**
* @var \GeoIp2\Database\Reader|\GeoIP|string
2023-11-23 17:13:20 +01:00
*/
public $gi;
2009-10-13 23:46:09 +02:00
2024-03-04 18:27:49 +01:00
/**
* @var string
*/
2023-06-28 13:30:50 +02:00
public $error;
2024-03-04 18:27:49 +01:00
/**
* @var string
*/
2023-06-28 13:30:50 +02:00
public $errorlabel;
2009-10-13 23:46:09 +02:00
/**
* Constructor
*
* @param 'country'|'city' $type 'country' or 'city'
* @param string $datfile Data file
2009-10-13 23:46:09 +02:00
*/
2019-02-27 20:45:07 +01:00
public function __construct($type, $datfile)
2009-10-13 23:46:09 +02:00
{
global $conf;
2023-01-03 14:06:25 +01:00
$geoipversion = '2'; // 'php', or geoip version '2'
2023-11-27 11:24:19 +01:00
if (getDolGlobalString('GEOIP_VERSION')) {
2024-01-05 04:18:53 +01:00
$geoipversion = getDolGlobalString('GEOIP_VERSION');
2021-02-23 22:03:23 +01:00
}
2021-02-23 22:03:23 +01:00
if ($type == 'country') {
// geoip may have been already included with PEAR
2021-02-23 22:03:23 +01:00
if ($geoipversion == '2' || ($geoipversion != 'php' && !function_exists('geoip_country_code_by_name'))) {
if (function_exists('stream_wrapper_restore')) {
stream_wrapper_restore('phar');
}
require_once DOL_DOCUMENT_ROOT.'/includes/geoip2/geoip2.phar';
}
2021-02-23 22:03:23 +01:00
} elseif ($type == 'city') {
// geoip may have been already included with PEAR
2021-02-23 22:03:23 +01:00
if ($geoipversion == '2' || ($geoipversion != 'php' && !function_exists('geoip_country_code_by_name'))) {
if (function_exists('stream_wrapper_restore')) {
stream_wrapper_restore('phar');
}
require_once DOL_DOCUMENT_ROOT.'/includes/geoip2/geoip2.phar';
}
2021-02-23 22:03:23 +01:00
} else {
2021-03-01 20:37:16 +01:00
print 'ErrorBadParameterInConstructor';
return;
2021-02-23 22:03:23 +01:00
}
2009-10-13 23:46:09 +02:00
// Here, function exists (embedded into PHP or exists because we made include)
2021-02-23 22:03:23 +01:00
if (empty($type) || empty($datfile)) {
$this->errorlabel = 'Constructor was called with no datafile parameter';
dol_syslog('DolGeoIP '.$this->errorlabel, LOG_ERR);
return;
2009-10-13 23:46:09 +02:00
}
2021-02-23 22:03:23 +01:00
if (!file_exists($datfile) || !is_readable($datfile)) {
$this->error = 'ErrorGeoIPClassNotInitialized';
$this->errorlabel = "Datafile ".$datfile." not found";
dol_syslog('DolGeoIP '.$this->errorlabel, LOG_ERR);
return;
2009-10-13 23:46:09 +02:00
}
2021-02-23 22:03:23 +01:00
if ($geoipversion == '2') {
try {
2023-11-23 17:13:20 +01:00
// @phpstan-ignore-next-line
$this->gi = new GeoIp2\Database\Reader($datfile); // '/usr/local/share/GeoIP/GeoIP2-City.mmdb'
2021-02-23 22:03:23 +01:00
} catch (Exception $e) {
$this->error = $e->getMessage();
dol_syslog('DolGeoIP '.$this->errorlabel, LOG_ERR);
return;
}
2022-12-30 12:10:23 +01:00
} elseif (function_exists('geoip_open') && defined('GEOIP_STANDARD')) {
$this->gi = geoip_open($datfile, constant('GEOIP_STANDARD'));
2021-02-23 22:03:23 +01:00
} elseif (function_exists('geoip_country_code_by_name')) {
$this->gi = 'NOGI'; // We are using embedded php geoip functions
//print 'function_exists(geoip_country_code_by_name))='.function_exists('geoip_country_code_by_name');
//print geoip_database_info();
2020-11-01 10:21:51 +01:00
} else {
$this->gi = ''; // For avoid error
}
2009-10-13 23:46:09 +02:00
}
/**
2009-10-14 13:04:09 +02:00
* Return in lower case the country code from an ip
*
* @param string $ip IP to scan
* @return string Country code (two letters)
2009-10-13 23:46:09 +02:00
*/
2019-02-27 20:45:07 +01:00
public function getCountryCodeFromIP($ip)
2009-10-13 23:46:09 +02:00
{
global $conf;
$geoipversion = '2'; // 'php', or '2'
2023-11-27 11:24:19 +01:00
if (getDolGlobalString('GEOIP_VERSION')) {
2024-01-05 04:18:53 +01:00
$geoipversion = getDolGlobalString('GEOIP_VERSION');
2021-02-23 22:03:23 +01:00
}
2021-02-23 22:03:23 +01:00
if (empty($this->gi)) {
2009-10-13 23:46:09 +02:00
return '';
}
2021-02-23 22:03:23 +01:00
if ($this->gi == 'NOGI') {
// geoip_country_code_by_addr does not exists
return strtolower(geoip_country_code_by_name($ip));
2020-05-21 15:05:19 +02:00
} else {
2021-02-23 22:03:23 +01:00
if (preg_match('/^[0-9]+.[0-9]+\.[0-9]+\.[0-9]+/', $ip)) {
if ($geoipversion == '2') {
try {
$record = $this->gi->country($ip);
return strtolower($record->country->isoCode);
2020-05-21 15:05:19 +02:00
} catch (Exception $e) {
//return $e->getMessage();
return '';
}
2020-05-21 15:05:19 +02:00
} else {
2021-02-23 22:03:23 +01:00
if (!function_exists('geoip_country_code_by_addr')) {
2021-03-02 02:55:24 +01:00
return strtolower(geoip_country_code_by_name($ip));
2021-02-23 22:03:23 +01:00
}
return strtolower(geoip_country_code_by_addr($this->gi, $ip));
}
2020-05-21 15:05:19 +02:00
} else {
2021-02-23 22:03:23 +01:00
if ($geoipversion == '2') {
try {
$record = $this->gi->country($ip);
return strtolower($record->country->isoCode);
2020-05-21 15:05:19 +02:00
} catch (Exception $e) {
//return $e->getMessage();
return '';
}
2020-05-21 15:05:19 +02:00
} else {
if (function_exists('geoip_country_code_by_addr_v6')) {
return strtolower(geoip_country_code_by_addr_v6($this->gi, $ip));
} elseif (function_exists('geoip_country_code_by_name_v6')) {
2021-02-23 22:03:23 +01:00
return strtolower(geoip_country_code_by_name_v6($this->gi, $ip));
}
return '';
}
2019-08-21 18:26:41 +02:00
}
}
2009-10-13 23:46:09 +02:00
}
2009-10-14 13:04:09 +02:00
/**
* Return in lower case the country code from a host name
2009-11-13 06:33:22 +01:00
*
* @param string $name FQN of host (example: myserver.xyz.com)
* @return string Country code (two letters)
2009-10-14 13:04:09 +02:00
*/
2019-02-27 20:45:07 +01:00
public function getCountryCodeFromName($name)
2009-10-13 23:46:09 +02:00
{
global $conf;
$geoipversion = '2'; // 'php', or '2'
2023-11-27 11:24:19 +01:00
if (getDolGlobalString('GEOIP_VERSION')) {
2024-01-05 04:18:53 +01:00
$geoipversion = getDolGlobalString('GEOIP_VERSION');
2021-02-23 22:03:23 +01:00
}
2021-02-23 22:03:23 +01:00
if (empty($this->gi)) {
2009-10-13 23:46:09 +02:00
return '';
}
2021-02-23 22:03:23 +01:00
if ($geoipversion == '2') {
try {
$record = $this->gi->country($name);
return $record->country->isoCode;
2020-05-21 15:05:19 +02:00
} catch (Exception $e) {
//return $e->getMessage();
return '';
}
2020-05-21 15:05:19 +02:00
} else {
2023-01-03 14:06:25 +01:00
return strtolower(geoip_country_code_by_name($name));
}
2009-10-14 13:04:09 +02:00
}
/**
* Return version of data file
*
* @return string Version of datafile
*/
public function getVersion()
{
global $conf;
$geoipversion = '2'; // 'php', or '2'
2023-11-27 11:24:19 +01:00
if (getDolGlobalString('GEOIP_VERSION')) {
2024-01-05 04:18:53 +01:00
$geoipversion = getDolGlobalString('GEOIP_VERSION');
2021-02-23 22:03:23 +01:00
}
2021-02-23 22:03:23 +01:00
if ($geoipversion == 'php') {
if ($this->gi == 'NOGI') {
return geoip_database_info();
} else {
return 'geoip_database_info() function not available';
}
}
return 'Not available (not using PHP internal geo functions - We are using embedded Geoip v'.$geoipversion.')';
}
/**
* Close geoip object
*
* @return void
*/
public function close()
{
if (function_exists('geoip_close')) {
// With some geoip with PEAR, geoip_close function may not exists
geoip_close($this->gi);
}
}
2009-10-13 23:46:09 +02:00
}