Your IP : 216.73.216.224


Current Path : /var/www/html/administrator/components/com_rsfirewall/helpers/geolite2/
Upload File :
Current File : /var/www/html/administrator/components/com_rsfirewall/helpers/geolite2/geolite2.php

<?php
/*
 * @package 	RSFirewall!
 * @copyright 	(c) 2009 - 2024 RSJoomla!
 * @link 		https://www.rsjoomla.com/joomla-extensions/joomla-security.html
 * @license 	GNU General Public License https://www.gnu.org/licenses/gpl-3.0.en.html
 */

\defined('_JEXEC') or die;

require_once __DIR__ . '/vendor/autoload.php';

use GeoIp2\Database\Reader;
use Joomla\CMS\Factory;

class RSFirewallGeolite2
{
    protected $reader;

    public function __construct()
    {
        $database = JPATH_ADMINISTRATOR . '/components/com_rsfirewall/assets/geoip/GeoLite2-Country.mmdb';

        // No point going further
        if (!file_exists($database))
        {
            return false;
        }

        try
        {
            $this->reader = new Reader($database);
        }
        catch (Exception $e)
        {
            $app = Factory::getApplication();
            if ($app->isClient('administrator'))
            {
                $app->enqueueMessage($e->getMessage(), 'warning');
            }
        }
    }

    public static function getInstance()
    {
        static $inst;

        if (!$inst)
        {
            $inst = new RSFirewallGeolite2();
        }

        return $inst;
    }

    public function getCountryCode($ip)
    {
        if ($this->reader)
        {
            try
            {
                $record = $this->reader->country($ip);
                if ($record->country->isoCode)
                {
					return $record->country->isoCode;
                }
				return '';
            }
            catch (Exception $e)
            {

            }
        }

        return '';
    }
}