2016-07-21 16:26:02 +00:00
< ? php
/**
* REST API WC System Status controller
*
2016-07-27 21:06:14 +00:00
* Handles requests to the / system_status endpoint .
2016-07-21 16:26:02 +00:00
*
* @ author WooThemes
* @ category API
* @ package WooCommerce / API
* @ since 2.7 . 0
*/
if ( ! defined ( 'ABSPATH' ) ) {
exit ;
}
/**
* @ package WooCommerce / API
* @ extends WC_REST_Controller
*/
class WC_REST_System_Status_Controller extends WC_REST_Controller {
/**
* Endpoint namespace .
*
* @ var string
*/
protected $namespace = 'wc/v1' ;
/**
* Route base .
*
* @ var string
*/
2016-07-27 21:06:14 +00:00
protected $rest_base = 'system_status' ;
2016-07-21 16:26:02 +00:00
/**
2016-08-09 17:14:47 +00:00
* Register the route for / system_status
2016-07-21 16:26:02 +00:00
*/
public function register_routes () {
register_rest_route ( $this -> namespace , '/' . $this -> rest_base , array (
array (
'methods' => WP_REST_Server :: READABLE ,
'callback' => array ( $this , 'get_items' ),
'permission_callback' => array ( $this , 'get_items_permissions_check' ),
'args' => $this -> get_collection_params (),
),
'schema' => array ( $this , 'get_public_item_schema' ),
) );
}
/**
2016-07-27 20:59:16 +00:00
* Check whether a given request has permission to view system status .
2016-07-21 16:26:02 +00:00
*
* @ param WP_REST_Request $request Full details about the request .
* @ return WP_Error | boolean
*/
public function get_items_permissions_check ( $request ) {
2016-07-27 21:06:14 +00:00
if ( ! wc_rest_check_manager_permissions ( 'system_status' , 'read' ) ) {
2016-08-08 21:52:46 +00:00
return new WP_Error ( 'woocommerce_rest_cannot_view' , __ ( 'Sorry, you cannot list resources.' , 'woocommerce' ), array ( 'status' => rest_authorization_required_code () ) );
2016-07-21 16:26:02 +00:00
}
return true ;
}
/**
* Get a system status info , by section .
*
* @ param WP_REST_Request $request Full details about the request .
* @ return WP_Error | WP_REST_Response
*/
public function get_items ( $request ) {
$schema = $this -> get_item_schema ();
$mappings = $this -> get_item_mappings ();
$response = array ();
foreach ( $mappings as $section => $values ) {
settype ( $values , $schema [ 'properties' ][ $section ][ 'type' ] );
2016-07-27 20:59:16 +00:00
foreach ( $values as $key => $value ) {
2016-07-21 16:26:02 +00:00
if ( isset ( $schema [ 'properties' ][ $section ][ 'properties' ][ $key ][ 'type' ] ) ) {
settype ( $values [ $key ], $schema [ 'properties' ][ $section ][ 'properties' ][ $key ][ 'type' ] );
}
}
$response [ $section ] = $values ;
}
return rest_ensure_response ( $response );
}
/**
* Get the system status schema , conforming to JSON Schema .
*
* @ return array
*/
public function get_item_schema () {
$schema = array (
'$schema' => 'http://json-schema.org/draft-04/schema#' ,
2016-07-27 21:06:14 +00:00
'title' => 'system_status' ,
2016-07-21 16:26:02 +00:00
'type' => 'object' ,
'properties' => array (
'environment' => array (
'description' => __ ( 'Environment' , 'woocommerce' ),
'type' => 'array' ,
'context' => array ( 'view' , 'edit' ),
'properties' => array (
'home_url' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Home URL' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'string' ,
'format' => 'uri' ,
'context' => array ( 'view' , 'edit' ),
),
'site_url' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Site URL' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'string' ,
'format' => 'uri' ,
'context' => array ( 'view' , 'edit' ),
),
'wc_version' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'WooCommerce Version' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'log_directory' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Log Directory' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'log_directory_writable' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Is Log Directory Writable?' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'boolean' ,
'context' => array ( 'view' , 'edit' ),
),
'wp_version' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'WordPress Version' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'wp_multisite' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Is WordPress Multisite?' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'boolean' ,
'context' => array ( 'view' , 'edit' ),
),
'wp_memory_limit' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'WordPress Memory Limit' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'integer' ,
'context' => array ( 'view' , 'edit' ),
),
'wp_debug_mode' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Is WordPress Debug Mode Active?' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'boolean' ,
'context' => array ( 'view' , 'edit' ),
),
'wp_cron' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Are WordPress Cron Jobs Enabled?' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'boolean' ,
'context' => array ( 'view' , 'edit' ),
),
'language' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'WordPress Language' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'server_info' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Server Info' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'php_version' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'PHP Version' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'php_post_max_size' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'PHP Post Max Size' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'integer' ,
'context' => array ( 'view' , 'edit' ),
),
'php_max_execution_time' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'PHP Max Execution Time' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'integer' ,
'context' => array ( 'view' , 'edit' ),
),
'php_max_input_vars' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'PHP Max Input Vars' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'integer' ,
'context' => array ( 'view' , 'edit' ),
),
'curl_version' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'cURL Version' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'suhosin_installed' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Is SUHOSIN Installed?' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'boolean' ,
'context' => array ( 'view' , 'edit' ),
),
'max_upload_size' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Max Upload Size' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'integer' ,
'context' => array ( 'view' , 'edit' ),
),
'mysql_version' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'MySQL Version' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'default_timezone' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Default Timezone' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'fsockopen_or_curl_enabled' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Is fsockopen/cURL Enabled?' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'boolean' ,
'context' => array ( 'view' , 'edit' ),
),
'soapclient_enabled' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Is SoapClient Class Enabled?' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'boolean' ,
'context' => array ( 'view' , 'edit' ),
),
'domdocument_enabled' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Is DomDocument Class Enabled?' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'boolean' ,
'context' => array ( 'view' , 'edit' ),
),
'gzip_enabled' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Is GZip Enabled?' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'boolean' ,
'context' => array ( 'view' , 'edit' ),
),
'mbstring_enabled' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Is mbstring Enabled?' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'boolean' ,
'context' => array ( 'view' , 'edit' ),
),
'remote_post_successful' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Remote POST Successful?' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'boolean' ,
'context' => array ( 'view' , 'edit' ),
),
'remote_post_response' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Remote POST Response' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'remote_get_successful' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Remote GET Successful?' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'boolean' ,
'context' => array ( 'view' , 'edit' ),
),
'remote_get_response' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Remote GET Response' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
),
),
'database' => array (
'description' => __ ( 'Database' , 'woocommerce' ),
'type' => 'array' ,
'context' => array ( 'view' , 'edit' ),
'properties' => array (
'wc_database_version' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'WC Database Version' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'database_prefix' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Database Prefix' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'maxmind_geoip_database' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'MaxMind GeoIP Database' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'database_tables' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Database Tables' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'array' ,
'context' => array ( 'view' , 'edit' ),
),
2016-08-27 01:46:45 +00:00
),
2016-07-21 16:26:02 +00:00
),
'active_plugins' => array (
'description' => __ ( 'Active Plugins' , 'woocommerce' ),
'type' => 'array' ,
'context' => array ( 'view' , 'edit' ),
),
'theme' => array (
'description' => __ ( 'Theme' , 'woocommerce' ),
'type' => 'array' ,
'context' => array ( 'view' , 'edit' ),
'properties' => array (
'name' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Theme Name' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'version' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Theme Version' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
2016-08-03 17:44:20 +00:00
'version_latest' => array (
'description' => __ ( 'Latest Version Of Theme' , 'woocommerce' ),
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
2016-07-21 16:26:02 +00:00
'author_url' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Theme Author URL' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'string' ,
'format' => 'uri' ,
'context' => array ( 'view' , 'edit' ),
),
'is_child_theme' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Is this theme a child theme?' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'boolean' ,
'context' => array ( 'view' , 'edit' ),
),
'has_woocommerce_support' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Does the theme declare WooCommerce support?' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'boolean' ,
'context' => array ( 'view' , 'edit' ),
),
2016-08-03 17:44:20 +00:00
'has_woocommerce_file' => array (
'description' => __ ( 'Does the theme have a woocommerce.php file?' , 'woocommerce' ),
'type' => 'boolean' ,
'context' => array ( 'view' , 'edit' ),
),
'has_outdated_templates' => array (
'description' => __ ( 'Does this theme have outdated templates?' , 'woocommerce' ),
'type' => 'boolean' ,
'context' => array ( 'view' , 'edit' ),
),
2016-07-21 16:26:02 +00:00
'overrides' => array (
'description' => __ ( 'Template Overrides' , 'woocommerce' ),
'type' => 'array' ,
'context' => array ( 'view' , 'edit' ),
),
'parent_name' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Parent Theme Name' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'parent_version' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Parent Theme Version' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'parent_author_url' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Parent Theme Author URL' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'string' ,
'format' => 'uri' ,
'context' => array ( 'view' , 'edit' ),
),
2016-08-27 01:46:45 +00:00
),
2016-07-21 16:26:02 +00:00
),
'settings' => array (
'description' => __ ( 'Settings' , 'woocommerce' ),
'type' => 'array' ,
'context' => array ( 'view' , 'edit' ),
'properties' => array (
'api_enabled' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'REST API Enabled?' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'boolean' ,
'context' => array ( 'view' , 'edit' ),
),
'force_ssl' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'SSL Forced?' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'boolean' ,
'context' => array ( 'view' , 'edit' ),
),
'currency' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Currency' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'currency_symbol' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Currency Symbol' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'currency_position' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Currency Position' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'thousand_separator' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Thousand Separator' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'decimal_separator' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Decimal Separator' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'number_of_decimals' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Number of Decimals' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'integer' ,
'context' => array ( 'view' , 'edit' ),
),
'geolocation_enabled' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Geolocation Enabled?' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'boolean' ,
'context' => array ( 'view' , 'edit' ),
),
'taxonomies' => array (
2016-07-27 20:59:16 +00:00
'description' => __ ( 'Taxonomy Terms for Product/Order Statuses' , 'woocommerce' ),
2016-07-21 16:26:02 +00:00
'type' => 'array' ,
'context' => array ( 'view' , 'edit' ),
),
2016-08-27 01:46:45 +00:00
),
2016-07-21 16:26:02 +00:00
),
2016-07-27 20:59:16 +00:00
'pages' => array (
2016-07-21 16:26:02 +00:00
'description' => __ ( 'WooCommerce Pages' , 'woocommerce' ),
'type' => 'array' ,
'context' => array ( 'view' , 'edit' ),
),
2016-08-27 01:46:45 +00:00
),
2016-07-21 16:26:02 +00:00
);
return $this -> add_additional_fields_schema ( $schema );
}
/**
2016-07-27 20:59:16 +00:00
* Return an array of sections and the data associated with each .
2016-07-21 16:26:02 +00:00
*
* @ return array
*/
public function get_item_mappings () {
return array (
'environment' => $this -> get_environment_info (),
'database' => $this -> get_database_info (),
'active_plugins' => $this -> get_active_plugins (),
'theme' => $this -> get_theme_info (),
'settings' => $this -> get_settings (),
2016-07-27 20:59:16 +00:00
'pages' => $this -> get_pages (),
2016-07-21 16:26:02 +00:00
);
}
/**
* Get array of environment information . Includes thing like software
* versions , and various server settings .
*
* @ return array
*/
public function get_environment_info () {
global $wpdb ;
// Figure out cURL version, if installed.
$curl_version = '' ;
if ( function_exists ( 'curl_version' ) ) {
$curl_version = curl_version ();
$curl_version = $curl_version [ 'version' ] . ', ' . $curl_version [ 'ssl_version' ];
}
// WP memory limit
$wp_memory_limit = wc_let_to_num ( WP_MEMORY_LIMIT );
if ( function_exists ( 'memory_get_usage' ) ) {
$wp_memory_limit = max ( $wp_memory_limit , wc_let_to_num ( @ ini_get ( 'memory_limit' ) ) );
}
// Test POST requests
$post_response = wp_safe_remote_post ( 'https://www.paypal.com/cgi-bin/webscr' , array (
'timeout' => 60 ,
'user-agent' => 'WooCommerce/' . WC () -> version ,
'httpversion' => '1.1' ,
'body' => array (
2016-08-27 01:46:45 +00:00
'cmd' => '_notify-validate' ,
),
2016-07-21 16:26:02 +00:00
) );
$post_response_successful = false ;
if ( ! is_wp_error ( $post_response ) && $post_response [ 'response' ][ 'code' ] >= 200 && $post_response [ 'response' ][ 'code' ] < 300 ) {
$post_response_successful = true ;
}
// Test GET requests
$get_response = wp_safe_remote_get ( 'https://woocommerce.com/wc-api/product-key-api?request=ping&network=' . ( is_multisite () ? '1' : '0' ) );
$get_response_successful = false ;
if ( ! is_wp_error ( $post_response ) && $post_response [ 'response' ][ 'code' ] >= 200 && $post_response [ 'response' ][ 'code' ] < 300 ) {
$get_response_successful = true ;
}
// Return all environment info. Described by JSON Schema.
return array (
'home_url' => get_option ( 'home' ),
'site_url' => get_option ( 'siteurl' ),
2016-07-27 20:59:16 +00:00
'version' => WC () -> version ,
2016-07-21 16:26:02 +00:00
'log_directory' => WC_LOG_DIR ,
'log_directory_writable' => ( @ fopen ( WC_LOG_DIR . 'test-log.log' , 'a' ) ? true : false ),
2016-09-02 01:51:31 +00:00
'wp_version' => get_bloginfo ( 'version' ),
2016-07-21 16:26:02 +00:00
'wp_multisite' => is_multisite (),
'wp_memory_limit' => $wp_memory_limit ,
'wp_debug_mode' => ( defined ( 'WP_DEBUG' ) && WP_DEBUG ),
'wp_cron' => ! ( defined ( 'DISABLE_WP_CRON' ) && DISABLE_WP_CRON ),
'language' => get_locale (),
'server_info' => $_SERVER [ 'SERVER_SOFTWARE' ],
'php_version' => phpversion (),
'php_post_max_size' => wc_let_to_num ( ini_get ( 'post_max_size' ) ),
'php_max_execution_time' => ini_get ( 'max_execution_time' ),
'php_max_input_vars' => ini_get ( 'max_input_vars' ),
'curl_version' => $curl_version ,
'suhosin_installed' => extension_loaded ( 'suhosin' ),
'max_upload_size' => wp_max_upload_size (),
'mysql_version' => ( ! empty ( $wpdb -> is_mysql ) ? $wpdb -> db_version () : '' ),
'default_timezone' => date_default_timezone_get (),
'fsockopen_or_curl_enabled' => ( function_exists ( 'fsockopen' ) || function_exists ( 'curl_init' ) ),
'soapclient_enabled' => class_exists ( 'SoapClient' ),
'domdocument_enabled' => class_exists ( 'DOMDocument' ),
'gzip_enabled' => is_callable ( 'gzopen' ),
'mbstring_enabled' => extension_loaded ( 'mbstring' ),
'remote_post_successful' => $post_response_successful ,
'remote_post_response' => ( is_wp_error ( $post_response ) ? $post_response -> get_error_message () : $post_response [ 'response' ][ 'code' ] ),
'remote_get_successful' => $get_response_successful ,
'remote_get_response' => ( is_wp_error ( $get_response ) ? $get_response -> get_error_message () : $get_response [ 'response' ][ 'code' ] ),
);
}
/**
* Get array of database information . Version , prefix , and table existence .
*
* @ return array
*/
public function get_database_info () {
global $wpdb ;
// WC Core tables to check existence of
2016-08-23 09:16:38 +00:00
$tables = apply_filters ( 'woocommerce_database_tables' , array (
2016-07-21 16:26:02 +00:00
'woocommerce_sessions' ,
'woocommerce_api_keys' ,
'woocommerce_attribute_taxonomies' ,
'woocommerce_downloadable_product_permissions' ,
'woocommerce_order_items' ,
'woocommerce_order_itemmeta' ,
'woocommerce_tax_rates' ,
'woocommerce_tax_rate_locations' ,
'woocommerce_shipping_zones' ,
'woocommerce_shipping_zone_locations' ,
'woocommerce_shipping_zone_methods' ,
'woocommerce_payment_tokens' ,
'woocommerce_payment_tokenmeta' ,
2016-08-23 09:16:38 +00:00
) );
2016-07-21 16:26:02 +00:00
if ( get_option ( 'db_version' ) < 34370 ) {
$tables [] = 'woocommerce_termmeta' ;
}
$table_exists = array ();
foreach ( $tables as $table ) {
$table_exists [ $table ] = ( $wpdb -> get_var ( $wpdb -> prepare ( " SHOW TABLES LIKE %s; " , $wpdb -> prefix . $table ) ) === $wpdb -> prefix . $table );
}
// Return all database info. Described by JSON Schema.
return array (
'wc_database_version' => get_option ( 'woocommerce_db_version' ),
'database_prefix' => $wpdb -> prefix ,
'maxmind_geoip_database' => WC_Geolocation :: get_local_database_path (),
'database_tables' => $table_exists ,
);
}
/**
* Get a list of plugins active on the site .
*
* @ return array
*/
public function get_active_plugins () {
require_once ( ABSPATH . 'wp-admin/includes/plugin.php' );
// Get both site plugins and network plugins
$active_plugins = ( array ) get_option ( 'active_plugins' , array () );
if ( is_multisite () ) {
$network_activated_plugins = array_keys ( get_site_option ( 'active_sitewide_plugins' , array () ) );
$active_plugins = array_merge ( $active_plugins , $network_activated_plugins );
}
$active_plugins_data = array ();
foreach ( $active_plugins as $plugin ) {
2016-08-03 17:44:20 +00:00
$data = get_plugin_data ( WP_PLUGIN_DIR . '/' . $plugin );
$dirname = dirname ( $plugin );
$theme_version_latest = '' ;
2016-09-28 10:19:58 +00:00
if ( strstr ( $data [ 'PluginURI' ], 'woothemes.com' ) || strstr ( $data [ 'PluginURI' ], 'woocommerce.com' ) ) {
2016-08-03 17:44:20 +00:00
if ( false === ( $version_data = get_transient ( md5 ( $plugin ) . '_version_data' ) ) ) {
$changelog = wp_safe_remote_get ( 'http://dzv365zjfbd8v.cloudfront.net/changelogs/' . $dirname . '/changelog.txt' );
$cl_lines = explode ( " \n " , wp_remote_retrieve_body ( $changelog ) );
if ( ! empty ( $cl_lines ) ) {
foreach ( $cl_lines as $line_num => $cl_line ) {
if ( preg_match ( '/^[0-9]/' , $cl_line ) ) {
$date = str_replace ( '.' , '-' , trim ( substr ( $cl_line , 0 , strpos ( $cl_line , '-' ) ) ) );
$version = preg_replace ( '~[^0-9,.]~' , '' , stristr ( $cl_line , " version " ) );
$update = trim ( str_replace ( " * " , " " , $cl_lines [ $line_num + 1 ] ) );
$version_data = array ( 'date' => $date , 'version' => $version , 'update' => $update , 'changelog' => $changelog );
set_transient ( md5 ( $plugin ) . '_version_data' , $version_data , DAY_IN_SECONDS );
break ;
}
}
}
}
$theme_version_latest = $version_data [ 'version' ];
} else {
include_once ( ABSPATH . 'wp-admin/includes/plugin-install.php' );
$slug = explode ( '/' , $plugin );
$slug = explode ( '.' , end ( $slug ) );
$slug = $slug [ 0 ];
$api = plugins_api ( 'plugin_information' , array (
'slug' => $slug ,
'fields' => array (
'sections' => false ,
'tags' => false ,
2016-08-27 01:46:45 +00:00
),
2016-08-03 17:44:20 +00:00
) );
if ( is_object ( $api ) && ! is_wp_error ( $api ) ) {
$theme_version_latest = $api -> version ;
}
}
2016-07-21 16:26:02 +00:00
// convert plugin data to json response format.
$active_plugins_data [] = array (
2016-08-03 17:44:20 +00:00
'plugin' => $plugin ,
'name' => $data [ 'Name' ],
'version' => $data [ 'Version' ],
'version_latest' => $theme_version_latest ,
'url' => $data [ 'PluginURI' ],
'author_name' => $data [ 'AuthorName' ],
'author_url' => esc_url_raw ( $data [ 'AuthorURI' ] ),
'network_activated' => $data [ 'Network' ],
2016-07-21 16:26:02 +00:00
);
}
return $active_plugins_data ;
}
/**
* Get info on the current active theme , info on parent theme ( if presnet )
* and a list of template overrides .
*
* @ return array
*/
public function get_theme_info () {
$active_theme = wp_get_theme ();
// Get parent theme info if this theme is a child theme, otherwise
// pass empty info in the response.
2016-07-27 20:59:16 +00:00
if ( is_child_theme () ) {
2016-07-21 16:26:02 +00:00
$parent_theme = wp_get_theme ( $active_theme -> Template );
$parent_theme_info = array (
2016-08-03 17:44:20 +00:00
'parent_name' => $parent_theme -> Name ,
'parent_version' => $parent_theme -> Version ,
'parent_version_latest' => WC_Admin_Status :: get_latest_theme_version ( $parent_theme ),
'parent_author_url' => $parent_theme -> { 'Author URI' },
2016-07-21 16:26:02 +00:00
);
} else {
2016-08-03 17:44:20 +00:00
$parent_theme_info = array ( 'parent_name' => '' , 'parent_version' => '' , 'parent_version_latest' => '' , 'parent_author_url' => '' );
2016-07-21 16:26:02 +00:00
}
/**
* Scan the theme directory for all WC templates to see if our theme
* overrides any of them .
*/
2016-08-03 17:44:20 +00:00
$override_files = array ();
$outdated_templates = false ;
$scan_files = WC_Admin_Status :: scan_template_files ( WC () -> plugin_path () . '/templates/' );
2016-07-21 16:26:02 +00:00
foreach ( $scan_files as $file ) {
if ( file_exists ( get_stylesheet_directory () . '/' . $file ) ) {
$theme_file = get_stylesheet_directory () . '/' . $file ;
2016-08-26 10:02:57 +00:00
} elseif ( file_exists ( get_stylesheet_directory () . '/' . WC () -> template_path () . $file ) ) {
$theme_file = get_stylesheet_directory () . '/' . WC () -> template_path () . $file ;
2016-07-21 16:26:02 +00:00
} elseif ( file_exists ( get_template_directory () . '/' . $file ) ) {
$theme_file = get_template_directory () . '/' . $file ;
2016-08-26 10:02:57 +00:00
} elseif ( file_exists ( get_template_directory () . '/' . WC () -> template_path () . $file ) ) {
$theme_file = get_template_directory () . '/' . WC () -> template_path () . $file ;
2016-07-21 16:26:02 +00:00
} else {
$theme_file = false ;
}
if ( ! empty ( $theme_file ) ) {
2016-08-03 17:44:20 +00:00
$core_version = WC_Admin_Status :: get_file_version ( WC () -> plugin_path () . '/templates/' . $file );
$theme_version = WC_Admin_Status :: get_file_version ( $theme_file );
if ( $core_version && ( empty ( $theme_version ) || version_compare ( $theme_version , $core_version , '<' ) ) ) {
if ( ! $outdated_templates ) {
$outdated_templates = true ;
}
}
2016-08-27 06:14:06 +00:00
$override_files [] = array (
2016-08-03 17:44:20 +00:00
'file' => str_replace ( WP_CONTENT_DIR . '/themes/' , '' , $theme_file ),
'version' => $theme_version ,
'core_version' => $core_version ,
);
2016-07-21 16:26:02 +00:00
}
}
$active_theme_info = array (
'name' => $active_theme -> Name ,
'version' => $active_theme -> Version ,
2016-08-03 17:44:20 +00:00
'version_latest' => WC_Admin_Status :: get_latest_theme_version ( $active_theme ),
2016-07-21 16:26:02 +00:00
'author_url' => esc_url_raw ( $active_theme -> { 'Author URI' } ),
'is_child_theme' => is_child_theme (),
'has_woocommerce_support' => ( current_theme_supports ( 'woocommerce' ) || in_array ( $active_theme -> template , wc_get_core_supported_themes () ) ),
2016-08-03 17:44:20 +00:00
'has_woocommerce_file' => ( file_exists ( get_stylesheet_directory () . '/woocommerce.php' ) || file_exists ( get_template_directory () . '/woocommerce.php' ) ),
'has_outdated_templates' => $outdated_templates ,
2016-07-21 16:26:02 +00:00
'overrides' => $override_files ,
);
return array_merge ( $active_theme_info , $parent_theme_info );
}
/**
* Get some setting values for the site that are useful for debugging
* purposes . For full settings access , use the settings api .
*
* @ return array
*/
public function get_settings () {
// Get a list of terms used for product/order taxonomies
$term_response = array ();
$terms = get_terms ( 'product_type' , array ( 'hide_empty' => 0 ) );
foreach ( $terms as $term ) {
$term_response [ $term -> slug ] = strtolower ( $term -> name );
}
// Return array of useful settings for debugging.
return array (
'api_enabled' => 'yes' === get_option ( 'woocommerce_api_enabled' ),
'force_ssl' => 'yes' === get_option ( 'woocommerce_force_ssl_checkout' ),
'currency' => get_woocommerce_currency (),
'currency_symbol' => get_woocommerce_currency_symbol (),
'currency_position' => get_option ( 'woocommerce_currency_pos' ),
'thousand_separator' => wc_get_price_thousand_separator (),
'decimal_separator' => wc_get_price_decimal_separator (),
'number_of_decimals' => wc_get_price_decimals (),
'geolocation_enabled' => in_array ( get_option ( 'woocommerce_default_customer_address' ), array ( 'geolocation_ajax' , 'geolocation' ) ),
'taxonomies' => $term_response ,
);
}
/**
* Returns a mini - report on WC pages and if they are configured correctly :
* Present , visible , and including the correct shortcode .
*
* @ return array
*/
2016-07-27 20:59:16 +00:00
public function get_pages () {
2016-07-21 16:26:02 +00:00
// WC pages to check against
$check_pages = array (
_x ( 'Shop Base' , 'Page setting' , 'woocommerce' ) => array (
'option' => 'woocommerce_shop_page_id' ,
'shortcode' => '' ,
),
_x ( 'Cart' , 'Page setting' , 'woocommerce' ) => array (
'option' => 'woocommerce_cart_page_id' ,
'shortcode' => '[' . apply_filters ( 'woocommerce_cart_shortcode_tag' , 'woocommerce_cart' ) . ']' ,
),
_x ( 'Checkout' , 'Page setting' , 'woocommerce' ) => array (
'option' => 'woocommerce_checkout_page_id' ,
'shortcode' => '[' . apply_filters ( 'woocommerce_checkout_shortcode_tag' , 'woocommerce_checkout' ) . ']' ,
),
_x ( 'My Account' , 'Page setting' , 'woocommerce' ) => array (
'option' => 'woocommerce_myaccount_page_id' ,
'shortcode' => '[' . apply_filters ( 'woocommerce_my_account_shortcode_tag' , 'woocommerce_my_account' ) . ']' ,
),
);
$pages_output = array ();
foreach ( $check_pages as $page_name => $values ) {
$errors = array ();
$page_id = get_option ( $values [ 'option' ] );
$page_set = $page_exists = $page_visible = false ;
$shortcode_present = $shortcode_required = false ;
// Page checks
if ( $page_id ) {
$page_set = true ;
}
if ( get_post ( $page_id ) ) {
$page_exists = true ;
}
if ( 'publish' === get_post_status ( $page_id ) ) {
$page_visible = true ;
}
// Shortcode checks
if ( $values [ 'shortcode' ] && get_post ( $page_id ) ) {
$shortcode_required = true ;
$page = get_post ( $page_id );
if ( strstr ( $page -> post_content , $values [ 'shortcode' ] ) ) {
$shortcode_present = true ;
}
}
// Wrap up our findings into an output array
$pages_output [] = array (
'page_name' => $page_name ,
'page_id' => $page_id ,
'page_set' => $page_set ,
'page_exists' => $page_exists ,
'page_visible' => $page_visible ,
2016-08-03 17:44:20 +00:00
'shortcode' => $values [ 'shortcode' ],
2016-07-21 16:26:02 +00:00
'shortcode_required' => $shortcode_required ,
'shortcode_present' => $shortcode_present ,
);
}
return $pages_output ;
}
/**
* Get any query params needed .
*
* @ return array
*/
public function get_collection_params () {
return array (
'context' => $this -> get_context_param ( array ( 'default' => 'view' ) ),
);
}
}