]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/commitdiff
geoip-locations.pl: Add get_geoip_locations().
authorStefan Schantl <stefan.schantl@ipfire.org>
Thu, 10 Jan 2019 19:40:03 +0000 (20:40 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Thu, 10 Jan 2019 22:42:52 +0000 (22:42 +0000)
This function is used to get all available GeoIP locations.

The functions returns them as array, sorted in alphabetical order.

Reference #11959

Signed-off-by: Stefan Schantl <stefan.schantl@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
config/cfgroot/geoip-functions.pl

index e8ce8377f583190dec3a1292faa80d8b1a91a4a6..9f86a09ba7b5a5ab4b7abb1d6c40223b8e6f3da3 100644 (file)
@@ -178,4 +178,37 @@ sub get_full_country_name($) {
        return $name;
 }
 
+# Function to get all available GeoIP locations.
+sub get_geoip_locations() {
+       my @locations;
+
+       # Open the location database.
+       open(LOCATION, "$geoip_database_dir/$location_database") or die "Could not open $geoip_database_dir/$location_database. $!\n";
+
+       # Loop through the file.
+       while(my $line = <LOCATION>) {
+               # Remove newlines.
+               chomp($line);
+
+               # Split the line content.
+               my ($geoname_id, $locale_code, $continent_code, $continent_name, $country_iso_code, $country_name, $is_in_european_union) = split(/\,/, $line);
+
+               # Check if the country_iso_code is upper case.
+               if($country_iso_code =~ /[A-Z]/) {
+                       # Add the current ISO code.
+                       push(@locations, $country_iso_code);
+               }
+       }
+
+       # Close filehandle.
+       close(LOCATION);
+
+       # Sort locations array in alphabetical order.
+       my @sorted_locations = sort(@locations);
+
+       # Return the array..
+       return @sorted_locations;
+}
+
+
 1;