2020-01-09 05:08:25 +00:00
< ? php
/**
* MaxMind Geolocation Integration
*
* @ version 3.9 . 0
* @ package WooCommerce / Integrations
*/
defined ( 'ABSPATH' ) || exit ;
2020-01-10 05:29:47 +00:00
require_once 'class-wc-integration-maxmind-geolocation-database.php' ;
2020-01-09 05:08:25 +00:00
/**
2020-01-09 23:46:01 +00:00
* WC Integration MaxMind Geolocation
2020-01-09 05:08:25 +00:00
*
2020-01-10 07:46:25 +00:00
* @ since 3.9 . 0
2020-01-09 05:08:25 +00:00
*/
2020-01-09 23:46:01 +00:00
class WC_Integration_MaxMind_Geolocation extends WC_Integration {
2020-01-09 05:08:25 +00:00
/**
* Initialize the integration .
*/
public function __construct () {
$this -> id = 'woocommerce_maxmind_geolocation' ;
$this -> method_title = __ ( 'WooCommerce MaxMind Geolocation' , 'woocommerce' );
$this -> method_description = __ ( 'An integration for utilizing MaxMind to do Geolocation lookups.' , 'woocommerce' );
$this -> init_form_fields ();
$this -> init_settings ();
// Bind to the save action for the settings.
add_action ( 'woocommerce_update_options_integration_' . $this -> id , array ( $this , 'process_admin_options' ) );
2020-01-10 07:22:42 +00:00
/**
* Allows for the automatic database update to be disabled .
*
* @ deprecated 3.9 . 0
* @ return bool Whether or not the database should be updated periodically .
*/
$bind_updater = apply_filters_deprecated (
'woocommerce_geolocation_update_database_periodically' ,
array ( true ),
'3.9.0' ,
false ,
'MaxMind\'s TOS requires that the databases be updated or removed periodically.'
);
// Bind to the scheduled updater action.
if ( $bind_updater ) {
add_action ( 'woocommerce_geoip_updater' , array ( __CLASS__ , 'update_database' ) );
}
2020-01-10 07:46:25 +00:00
// Bind to the geolocation filter for MaxMind database lookups.
add_filter ( 'woocommerce_geolocate_ip' , array ( $this , 'geolocate_ip' ), 10 , 2 );
2020-01-09 05:08:25 +00:00
}
/**
* Initializes the settings fields .
*/
public function init_form_fields () {
$this -> form_fields = array (
'license_key' => array (
'title' => __ ( 'MaxMind License Key' , 'woocommerce' ),
'type' => 'password' ,
2020-01-10 05:39:28 +00:00
'description' => sprintf (
/* translators: %1$s: Documentation URL */
__ (
'The key that will be used when dealing with MaxMind Geolocation services. You can read how to generate one in <a href="%1$s">MaxMind\'s License Key Documentation</a>.' ,
'woocommerce'
),
'https://support.maxmind.com/account-faq/account-related/how-do-i-generate-a-license-key/'
),
2020-01-09 05:08:25 +00:00
'desc_tip' => false ,
'default' => '' ,
),
);
}
/**
* Checks to make sure that the license key is valid .
*
* @ param string $key The key of the field .
* @ param mixed $value The value of the field .
* @ return mixed
* @ throws Exception When the license key is invalid .
*/
public function validate_license_key_field ( $key , $value ) {
// Empty license keys have no need to validate the data.
if ( empty ( $value ) ) {
return $value ;
}
2020-01-09 05:09:35 +00:00
// Check the license key by attempting to download the Geolocation database.
2020-01-10 07:22:42 +00:00
$tmp_database_path = WC_Integration_MaxMind_Geolocation_Database :: download_database ( $value );
if ( is_wp_error ( $tmp_database_path ) ) {
WC_Admin_Settings :: add_error ( $tmp_database_path -> get_error_message () );
2020-01-09 05:09:35 +00:00
// Throw an exception to keep from changing this value. This will prevent
// users from accidentally losing their license key, which cannot
// be viewed again after generating.
2020-01-10 07:22:42 +00:00
throw new Exception ( $tmp_database_path -> get_error_message () );
2020-01-09 05:09:35 +00:00
}
2020-01-10 07:22:42 +00:00
// We may as well put this archive to good use, now that we've downloaded one.
self :: update_database ( $tmp_database_path );
2020-01-09 05:08:25 +00:00
return $value ;
}
2020-01-10 07:22:42 +00:00
/**
* Updates the database used for geolocation queries .
*
* @ param string | null $new_database_path The path to the new database file . Null will fetch a new archive .
*/
public static function update_database ( $new_database_path = null ) {
// Allow us to easily interact with the filesystem.
require_once ABSPATH . 'wp-admin/includes/file.php' ;
WP_Filesystem ();
global $wp_filesystem ;
// Remove any existing archives to comply with the MaxMind TOS.
$target_database_path = WC_Integration_MaxMind_Geolocation_Database :: get_database_path ();
if ( $wp_filesystem -> exists ( $target_database_path ) ) {
$wp_filesystem -> delete ( $target_database_path );
}
if ( isset ( $new_database_path ) ) {
$tmp_database_path = $new_database_path ;
} else {
// We can't download a database if there's no license key configured.
$license_key = ( new WC_Integration_MaxMind_Geolocation () ) -> get_option ( 'license_key' );
if ( empty ( $license_key ) ) {
return ;
}
$tmp_database_path = WC_Integration_MaxMind_Geolocation_Database :: download_database ( $license_key );
if ( is_wp_error ( $tmp_database_path ) ) {
2020-01-10 07:46:25 +00:00
wc_get_logger () -> notice ( $tmp_database_path -> get_error_message (), array ( 'source' => 'maxmind-geolocation' ) );
2020-01-10 07:22:42 +00:00
return ;
}
}
// Move the new database into position.
$wp_filesystem -> move ( $tmp_database_path , $target_database_path , true );
$wp_filesystem -> delete ( dirname ( $tmp_database_path ) );
}
2020-01-10 07:46:25 +00:00
/**
* Performs a geolocation lookup against the MaxMind database for the given IP address .
*
* @ param string $country_code The country code for the IP address .
* @ param string $ip_address The IP address to geolocate .
* @ return string The country code for the IP address .
*/
public function geolocate_ip ( $country_code , $ip_address ) {
if ( false !== $country_code ) {
return $country_code ;
}
2020-01-10 08:07:55 +00:00
if ( empty ( $ip_address ) ) {
return $country_code ;
}
$country_code = WC_Integration_MaxMind_Geolocation_Database :: get_iso_country_code_for_ip ( $ip_address );
return $country_code ? $country_code : false ;
2020-01-10 07:46:25 +00:00
}
2020-01-09 05:08:25 +00:00
}