[Include] GeoLite
#1

GeoLite (SQLite)

It is based on the free product GeoLite2 by MaxMind.

I was updating the country database every month for MySQL and decided to update the GeoIp databases by Whitetiger's include as many people requested. It turned out I was unable to, the way the databases were structured. I converted my version to SQLite and started comparing the two includes with geolite.inc being victorious. But this was to be expected with not only the good database structure and the use of indexes but also the appropriate queries to avoid range scans. Even though latest database provide more data than last year, it did not affect the performance in any way.

The past days, I managed to import Autonomous System (AS) and City databases with the original databases having big flows.
  • Certain organizations in Autonomous System list did have many unique identifiers (ASN - Autonomous System Number) registered to IANA. All duplicates were removed and kept only their initial ASN.
  • Certain ip ranges in City database:
    • did not provide a city name. Country name was used in replacement.
    • did not provide a city name, nor a country name. Continent name was used in replacement.
The above issue arose another problem related to time zones.
  • Antarctica, Asia and Europe have time zone set as +00:00
  • Cities with country name as replacement have central standard time set mostly, with few exceptions. Some examples are:
    • United States is set to have UTC -05:00 (Washington, DC) whereas Central Standard Time is in Chicago (-06:00)
    • Russia is set to Moscow Standard Time (+03:00)
I initially posted these changes and improvements in Whitetiger's thread but due to their absence, I decided to create a new thread. I was also unaware if Whitetiger would accept the changes, nor how the updates would be done.

Installation

Repository: https://github.com/George480/geolite
Releases: https://github.com/George480/geolite/releases
Include: https://raw.githubusercontent.com/Ge...er/geolite.inc

Save as geolite.inc into pawno\include folder. Include in your code and begin using the library:

Code:
#include <geolite>
Place the database you want to use into scriptfiles folder.

Functions
IP-Based Functions:
  • GetIpAutonomousSystem(const geolite_ip[], geolite_dest[], geolite_len = sizeof (geolite_dest))
    • Stores the Autonomous System organization (ISP is an Autonomous System) according to given IP, passed by reference.
    • Returns 1 on success (database file exists in scriptfiles folder) or 0 on failure.
  • GetIpCountry(const geolite_ip[], geolite_dest[], geolite_len = sizeof (geolite_dest))
    • Stores the Country name according to given IP, passed by reference.
    • Returns 1 on success (database file exists in scriptfiles folder) or 0 on failure.
  • GetIpCity(const geolite_ip[], geolite_dest[], geolite_len = sizeof (geolite_dest))
    • Stores the City name according to given IP, passed by reference.
    • Returns 1 on success (database file exists in scriptfiles folder) or 0 on failure.
  • GetIpUTC(const geolite_ip[], geolite_dest[], geolite_len = sizeof (geolite_dest))
    • Stores the UTC offset according to given IP, passed by reference.
    • Returns 1 on success (database file exists in scriptfiles folder) or 0 on failure.
  • IsIpProxy(const geolite_ip[])
    • Requires country database.
    • Returns 1 if the given ip is public proxy otherwise 0. It will also return 0 if database file does not exist in scriptfiles folder.
Player-Based Functions:
  • GetPlayerAutonomousSystem(playerid, geolite_dest[], geolite_len = sizeof (geolite_dest))
    • Stores the Autonomous System organization (ISP is an Autonomous System) according to given player's IP, passed by reference.
    • Returns 1 on success (database file exists in scriptfiles folder and player is connected) or 0 on failure.
  • GetPlayerCountry(playerid, geolite_dest[], geolite_len = sizeof (geolite_dest))
    • Stores the Country name according to given player's IP, passed by reference.
    • Returns 1 on success (database file exists in scriptfiles folder and player is connected) or 0 on failure.
  • GetPlayerCity(playerid, geolite_dest[], geolite_len = sizeof (geolite_dest))
    • Stores the City name according to given player's IP, passed by reference.
    • Returns 1 on success (database file exists in scriptfiles folder and player is connected) or 0 on failure.
  • GetPlayerUTC(playerid, geolite_dest[], geolite_len = sizeof (geolite_dest))
    • Stores the UTC offset according to given player's IP, passed by reference.
    • Returns 1 on success (database file exists in scriptfiles folder and player is connected) or 0 on failure.
  • IsPlayerUsingProxy(playerid)
    • Requires country database.
    • Returns 1 if the ip of the given player is public proxy otherwise 0. It will also return 0 if database file does not exist in scriptfiles folder.
Usage
pawn Code:
#include <a_samp>
#include <sscanf2>
#include <geolite>

main() {}

public OnPlayerConnect(playerid)
{
    new player_name[MAX_PLAYER_NAME], player_country[MAX_COUNTRY_LENGTH], connection_text[80];
       
    GetPlayerName(playerid, player_name, MAX_PLAYER_NAME);
    GetPlayerCountry(playerid, player_country, MAX_COUNTRY_LENGTH);

    format(connection_text, sizeof (connection_text), "%s joined from %s", player_name, player_country);
    SendClientMessageToAll(0xFFFF00FF, connection_text);
    return 1;
}
Extra Notes
127.0.0.1 is given as "Unknown" as it is a private IP.

Country, City and ASN databases will be updated every first Wednesday of every month.

It opens the databases on startup according to which database exists in scriptfiles folder, therefore if you prefer to use the Country database only, place maxmind_country.db into scriptfiles folder and not the other two databases.

It only detects public proxies and not VPNs.

A MySQL version would require non-threaded queries to keep the same usage of functions. If you have any suggestion, please inform me.

Constants:
pawn Code:
#define MAX_AUTONOMOUS_SYSTEM_LENGTH    95
#define MAX_COUNTRY_LENGTH              45
#define MAX_CITY_LENGTH                 109
#define MAX_UTC_LENGTH                  7
Requirements
sscanf: https://github.com/maddinat0r/sscanf/releases

Credits
  • MaxMind - GeoLite2
  • TimeZoneDB.com - time zones
  • Alex "Y-Less" Cole - sscanf
  • Andy Skelton - ordering by `ip_to` (avoidance of range scan)
  • Nikolay Bachiyski - ordering by `ip_to` (avoidance of range scan)
  • Mark Robson - highest `ip_from` which is less than or equal to the given IP (avoidance of next country returned due to gaps)
Reply
#2

It only feels like half the picture, you should look at taking the plugin route to auto-update the databases.
Reply
#3

New version released!

Added IsIpProxy and IsPlayerUsingProxy functions.
Restructured tables for better compression.
Include: https://raw.githubusercontent.com/Ge...er/geolite.inc

Note: The free product of MaxMind can only detect public proxies, not VPNs.

Databases were updated for December 2018: https://github.com/George480/geolite/releases/tag/v2.0

Quote:
Originally Posted by Pottus
View Post
It only feels like half the picture, you should look at taking the plugin route to auto-update the databases.
The way databases are distributed to fix duplicates and other issues mentioned, it requires mysql, a table for time zones, a procedure to re-assign ids for ASN and a set of queries to execute. I simply download, extract and move .CSV files to be able to use LOAD FILE from mysql. I paste a handful amount of queries and they are updated on their own but it takes 45 minutes. Exporting data and importing to the respective databases is the last step.

I cannot think of a way to do it but manually.
Reply
#4

You could start versioning your database and implement a web interface, where this library could do a web request to download the changes for its database.
Reply
#5

Databases were updated for January 2019: https://github.com/George480/geolite/releases/tag/v3.0
Reply
#6

Databases were updated for February 2019: https://github.com/George480/geolite/releases/tag/v4.0
Reply
#7

Quote:
Originally Posted by Calisthenics
View Post
Databases were updated for February 2019: https://github.com/George480/geolite/releases/tag/v4.0
Thanks for updating it.
Reply
#8

Thank you really much!
Reply
#9

Databases were updated for March 2019: https://github.com/George480/geolite/releases/tag/v5.0

Quote:
Originally Posted by ToiletDuck
View Post
Thanks for updating it.
Quote:
Originally Posted by ReshiramZekrom
View Post
Thank you really much!
Thank you for using it.
Reply
#10

IsIpProxy and IsPlayerUsingProxy functions were only working with country database. It is now possible to use them with city database in case the country database is not used. Re-download at: https://raw.githubusercontent.com/Ge...er/geolite.inc

Databases were updated for April 2019: https://github.com/George480/geolite/releases/tag/v6.0
Reply
#11

Databases were updated for May 2019: https://github.com/George480/geolite/releases/tag/v7.0
Reply
#12

Databases were updated for June 2019: https://github.com/George480/geolite/releases/tag/v8.0
Reply
#13

Databases were updated for July 2019: https://github.com/George480/geolite/releases/tag/v9.0
Reply
#14

Databases were updated for August 2019: https://github.com/George480/geolite/releases/tag/v10.0
Reply
#15

Databases were updated for September 2019: https://github.com/George480/geolite/releases/tag/v11.0
Reply
#16

Quote:
Originally Posted by Calisthenics
View Post
Databases were updated for September 2019: https://github.com/George480/geolite/releases/tag/v11.0
Thanks for updating database. 😉
Reply
#17

Databases were updated for October 2019: https://github.com/George480/geolite/releases/tag/v12.0

Quote:
Originally Posted by FinStar
View Post
Thanks for updating database. ��
You are welcome.
Reply
#18

Databases were updated for November 2019: https://github.com/George480/geolite/releases/tag/v13.0
Reply
#19

Databases were updated for December 2019: https://github.com/George480/geolite/releases/tag/v14.0
Reply
#20

Databases were updated for January 2020: https://github.com/George480/geolite/releases/tag/v15.0
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)