DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Please enter at least three characters to search
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Zones

Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

Modernize your data layer. Learn how to design cloud-native database architectures to meet the evolving demands of AI and GenAI workkloads.

Secure your stack and shape the future! Help dev teams across the globe navigate their software supply chain security challenges.

Releasing software shouldn't be stressful or risky. Learn how to leverage progressive delivery techniques to ensure safer deployments.

Avoid machine learning mistakes and boost model performance! Discover key ML patterns, anti-patterns, data strategies, and more.

Related

  • Router4j: A Free Alternative to Google Maps for Route and Distance Calculation
  • API-Led Example: MuleSoft
  • Harnessing the Power of SIMD With Java Vector API
  • How To Get Images From Excel Documents Using APIs in Java

Trending

  • Scalable System Design: Core Concepts for Building Reliable Software
  • Google Cloud Document AI Basics
  • Emerging Data Architectures: The Future of Data Management
  • GDPR Compliance With .NET: Securing Data the Right Way
  1. DZone
  2. Software Design and Architecture
  3. Integration
  4. Getting IP Geolocation Data in CakePHP

Getting IP Geolocation Data in CakePHP

This article shows how to integrate the IP2Location.io geolocation service into CakePHP applications and demonstrates code examples for retrieving geolocation data based on IP addresses.

By 
camimi Morales user avatar
camimi Morales
·
Jul. 05, 23 · Tutorial
Likes (1)
Comment
Save
Tweet
Share
2.8K Views

Join the DZone community and get the full member experience.

Join For Free

In this article, we will show you how to use IP2Location.io PHP SDK in CakePHP to retrieve the geolocation information and user redirection.

CakePHP is a powerful open-source web framework that is widely used by the developers worldwide. It enables the developers to build a powerful yet extendable website by providing them with a set of tools. Other than that, developers also can make use of CakePHP plugins to enhance the website. Those plugins can help to add on more functionalities such as enhanced authentication, integration with external web services and so on.

CakePHP plugins are developed by the community and is available in GitHub or some other public repositories such as Packagist. CakePHP allows developers to use a dependency manager called Composer to install and manage the plugins. This brings much needed convenience to both website developers and plugin developers.

IP2Location.io is a fast and accurate geolocation API to provide the geolocation information to the user. The user can get a variety of information such as the country, region, city, district, latitude, longitude, ZIP code, time zone, ASN, ISP, domain, net speed, IDD code, area code, weather station data, MNC, MCC, mobile brand, elevation, usage type, address type, advertisement category, and proxy data.

Before we get started, you have to ensure that you have an existing CakePHP project to begin with. The IP2Location.io PHP SDK requires an API key to function. You may sign up for a free API key. Do note that the continent, country, region, and city translations are only available in the Plus and Security plans.

Displaying Geolocation Information

  1. First of all, if you have not installed the IP2Location.io PHP SDK, you can run the following command in the console to do so:
    composer require ip2location/ip2location-io-php
  2. Create a template file called view.php in your cakephp_root_dir/templates/Pages/, and open the file in any text editor.
  3. Paste the following content into the file:
  4. PHP
     
    <?php
        // Configures IP2Location.io API key
        $config = new \IP2LocationIO\Configuration('YOUR_API_KEY');
        $ip2locationio = new IP2LocationIO\IPGeolocation($config);
    ?>
    <!DOCTYPE html>
    <html>
    <head>
        <?= $this->Html->charset() ?>
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <?= $this->Html->meta('icon') ?>
    
        <link href="https://fonts.googleapis.com/css?family=Raleway:400,700" rel="stylesheet">
    
        <?= $this->Html->css(['normalize.min', 'milligram.min', 'cake', 'home']) ?>
    
        <?= $this->fetch('meta') ?>
        <?= $this->fetch('css') ?>
        <?= $this->fetch('script') ?>
    </head>
    <body>
    Query result for IP address 8.8.8.8:<br/>
    <?php
    try {
    	// Lookup IP address geolocation data
    	$result = $ip2locationio->lookup('8.8.8.8');
    	echo 'IP Address           : ' . $result->ip . "<br>";
    	echo 'Country Code         : ' . $result->country_code . "<br>";
    	echo 'Country Name         : ' . $result->country_name . "<br>";
    	echo 'Region Name          : ' . $result->region_name . "<br>";
    	echo 'City Name            : ' . $result->city_name . "<br>";
    	echo 'City Latitude        : ' . $result->latitude . "<br>";
    	echo 'City Longitude       : ' . $result->longitude . "<br>";
    	echo 'ZIP Code             : ' . $result->zip_code . "<br>";
    	echo 'Time Zone            : ' . $result->time_zone . "<br>";
    	echo 'ASN                  : ' . $result->asn . "<br>";
    	echo 'AS                   : ' . $result->as . "<br>";
    	echo 'Is Proxy             : '; echo ($result->is_proxy) ? 'TRUE' : 'FALSE'; echo "<br>";
    	echo 'ISP Name             : ' . ($result->isp ?? 'FIELD NOT SUPPORTED') . "<br>";
    	echo 'Domain Name          : ' . ($result->domain ?? 'FIELD NOT SUPPORTED') . "<br>";
    	echo 'Net Speed            : ' . ($result->net_speend ?? 'FIELD NOT SUPPORTED') . "<br>";
    	echo 'IDD Code             : ' . ($result->idd_code ?? 'FIELD NOT SUPPORTED') . "<br>";
    	echo 'Area Code            : ' . ($result->area_code ?? 'FIELD NOT SUPPORTED') . "<br>";
    	echo 'Weather Station Code : ' . ($result->weather_station_code ?? 'FIELD NOT SUPPORTED') . "<br>";
    	echo 'Weather Station Name : ' . ($result->weather_station_name ?? 'FIELD NOT SUPPORTED') . "<br>";
    	echo 'MCC                  : ' . ($result->mcc ?? 'FIELD NOT SUPPORTED') . "<br>";
    	echo 'MNC                  : ' . ($result->mnc ?? 'FIELD NOT SUPPORTED') . "<br>";
    	echo 'Mobile Carrier       : ' . ($result->mobile_brand ?? 'FIELD NOT SUPPORTED') . "<br>";
    	echo 'Elevation            : ' . ($result->elevation ?? 'FIELD NOT SUPPORTED') . "<br>";
    	echo 'Usage Type           : ' . ($result->usage_type ?? 'FIELD NOT SUPPORTED') . "<br>";
    	echo 'Address Type         : ' . ($result->address_type ?? 'FIELD NOT SUPPORTED') . "<br>";
    	echo 'Category Code        : ' . ($result->ads_category ?? 'FIELD NOT SUPPORTED') . "<br>";
    	echo 'Category Name        : ' . ($result->ads_category_name ?? 'FIELD NOT SUPPORTED') . "<br>";
    	echo 'District Name        : ' . ($result->district ?? 'FIELD NOT SUPPORTED') . "<br>";
    
    	if (isset($result->continent)) {
    		echo 'Continent Name        : ' . $result->continent->name . "<br>";
    		echo 'Continent Code        : ' . $result->continent->code . "<br>";
    		echo 'Continent Hemisphere  : '; print_r($result->continent->hemisphere); echo "<br>";
    		echo 'Continent Translation : ' . $result->continent->translation->value . ' (' . $result->continent->translation->lang . ')' . "<br>";
    	}
    
    	if (isset($result->country)) {
    		echo 'Country Name          : ' . $result->country->name . "<br>";
    		echo 'Country Alpha 3 Code  : ' . $result->country->alpha3_code . "<br>";
    		echo 'Country Numeric Code  : ' . $result->country->numeric_code . "<br>";
    		echo 'Country Demonym       : ' . $result->country->demonym . "<br>";
    		echo 'Country Flag          : ' . $result->country->flag . "<br>";
    		echo 'Country Capital       : ' . $result->country->capital . "<br>";
    		echo 'Country Total Area    : ' . $result->country->total_area . "<br>";
    		echo 'Country Population    : ' . $result->country->population . "<br>";
    		echo 'Country Currency Code : ' . $result->country->currency->code . "<br>";
    		echo 'Country Currency Name : ' . $result->country->currency->name . ' (' . $result->country->currency->symbol . ')' . "<br>";
    		echo 'Country Language      : ' . $result->country->language->name . ' (' . $result->country->language->code . ')' . "<br>";
    		echo 'Country TLD           : ' . $result->country->tld . "<br>";
    		echo 'Country Translation   : ' . $result->country->translation->value . ' (' . $result->country->translation->lang . ')' . "<br>";
    	}
    
    	if (isset($result->region)) {
    		echo 'Region Name        : ' . $result->region->name . "<br>";
    		echo 'Region Code        : ' . $result->region->code . "<br>";
    		echo 'Region Translation : ' . $result->region->translation->value . ' (' . $result->region->translation->lang . ')' . "<br>";
    	}
    
    	if (isset($result->city)) {
    		echo 'City Name        : ' . $result->city->name . "<br>";
    		echo 'City Translation : ' . $result->city->translation->value . ' (' . $result->city->translation->lang . ')' . "<br>";
    	}
    
    	if (isset($result->time_zone_info)) {
    		echo 'Olson Time Zone : ' . $result->time_zone_info->olson . "<br>";
    		echo 'Current Time    : ' . $result->time_zone_info->current_time . "<br>";
    		echo 'GMT Offset      : ' . $result->time_zone_info->gmt_offset . "<br>";
    		echo 'Is DST          : '; echo ($result->time_zone_info->is_dst) ? 'TRUE' : 'FALSE'; echo "<br>";
    		echo 'Sunrise Time    : ' . $result->time_zone_info->sunrise . "<br>";
    		echo 'Sunset Time     : ' . $result->time_zone_info->sunset . "<br>";
    	}
    
    	if (isset($result->geotargeting)) {
    		echo 'Metro Code : ' . $result->geotargeting->metro . "<br>";
    	}
    
    	if (isset($result->proxy)) {
    		echo 'Proxy Last Seen : ' . $result->proxy->last_seen . "<br>";
    		echo 'Proxy Type      : ' . $result->proxy->proxy_type . "<br>";
    		echo 'Proxy Threat    : ' . $result->proxy->threat . "<br>";
    		echo 'Proxy Provider  : ' . $result->proxy->provider . "<br>";
    	}
    } catch(Exception $e) {
    	echo $e->getCode() . ": " . $e->getMessage();
    }
    
    ?>
    </body>
    </html>


    After that, open the routes.php located at your cakephp_root_dir/config/ in any text editor, and paste the following line right after the line
    $routes->scope('/', function (RouteBuilder $builder) { :

    $builder->connect('/test1', ['controller' => 'Pages', 'action' => 'display', 'view']);

  5. This example used the PagesController.php located in cakephp_root_dir/src/Controller/. If you do not have this file, create the same file in the same location and paste the following content into the file:
    PHP
     
    <?php
    declare(strict_types=1);
    
    /**
     * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
     * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
     *
     * Licensed under The MIT License
     * For full copyright and license information, please see the LICENSE.txt
     * Redistributions of files must retain the above copyright notice.
     *
     * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
     * @link      https://cakephp.org CakePHP(tm) Project
     * @since     0.2.9
     * @license   https://opensource.org/licenses/mit-license.php MIT License
     */
    namespace App\Controller;
    
    use Cake\Core\Configure;
    use Cake\Http\Exception\ForbiddenException;
    use Cake\Http\Exception\NotFoundException;
    use Cake\Http\Response;
    use Cake\Http\ServerRequest;
    use Cake\View\Exception\MissingTemplateException;
    
    /**
     * Static content controller
     *
     * This controller will render views from templates/Pages/
     *
     * @link https://book.cakephp.org/4/en/controllers/pages-controller.html
     */
    class PagesController extends AppController
    {
        /**
         * Displays a view
         *
         * @param string ...$path Path segments.
         * @return \Cake\Http\Response|null
         * @throws \Cake\Http\Exception\ForbiddenException When a directory traversal attempt.
         * @throws \Cake\View\Exception\MissingTemplateException When the view file could not
         *   be found and in debug mode.
         * @throws \Cake\Http\Exception\NotFoundException When the view file could not
         *   be found and not in debug mode.
         * @throws \Cake\View\Exception\MissingTemplateException In debug mode.
         */
        public function display(string ...$path): ?Response
        {
            if (!$path) {
                return $this->redirect('/');
            }
            if (in_array('..', $path, true) || in_array('.', $path, true)) {
                throw new ForbiddenException();
            }
            $page = $subpage = null;
    
            if (!empty($path[0])) {
                $page = $path[0];
            }
            if (!empty($path[1])) {
                $subpage = $path[1];
            }
            $this->set(compact('page', 'subpage'));
    
            try {
                return $this->render(implode('/', $path));
            } catch (MissingTemplateException $exception) {
                if (Configure::read('debug')) {
                    throw $exception;
                }
                throw new NotFoundException();
            }
        }
    }
    Enter the URL /view and run. You should be able to see the information of 8.8.8.8 IP address.


Redirecting User Based on Its Geolocation

  1. First of all, if you have not installed the IP2Location.io PHP SDK, you can run the following command in the console to do so:composer require ip2location/ip2location-io-php
  2. Add the below lines into the Controller file that you used for redirection:
    // Configure IP2Location.io API key 
    $config = new \IP2LocationIO\Configuration('YOUR_API_KEY'); 
    $ip2locationio = new \IP2LocationIO\IPGeolocation($config); 
    
    $ip = $this->request->clientIp(); 
    // Get visitor IP address for lookup 
    $result = $ip2locationio->lookup($ip); 
    
    if ($result->country_code == 'US') {    
    return $this->redirect('/'); }
    In conclusion, once you have followed this article, you should be able to query for geolocation information, or redirect user to another page by using IP2Location.io PHP SDK in CakePHP. The geolocation information obtained from the SDK can be used in other cases, for example limiting access to certain page by country or region.
API CakePHP PHP Data Types

Published at DZone with permission of camimi Morales. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Router4j: A Free Alternative to Google Maps for Route and Distance Calculation
  • API-Led Example: MuleSoft
  • Harnessing the Power of SIMD With Java Vector API
  • How To Get Images From Excel Documents Using APIs in Java

Partner Resources

×

Comments
Oops! Something Went Wrong

The likes didn't load as expected. Please refresh the page and try again.

ABOUT US

  • About DZone
  • Support and feedback
  • Community research
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 100
  • Nashville, TN 37211
  • support@dzone.com

Let's be friends:

Likes
There are no likes...yet! 👀
Be the first to like this post!
It looks like you're not logged in.
Sign in to see who liked this post!