2013-07-18 14:22:05 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2015-11-03 13:53:50 +00:00
|
|
|
* Debug/Status page
|
2013-07-18 14:22:05 +00:00
|
|
|
*
|
2014-11-30 06:52:32 +00:00
|
|
|
* @author WooThemes
|
|
|
|
* @category Admin
|
|
|
|
* @package WooCommerce/Admin/System Status
|
2014-06-04 17:25:49 +00:00
|
|
|
* @version 2.2.0
|
2013-07-18 14:22:05 +00:00
|
|
|
*/
|
|
|
|
|
2014-09-20 19:52:30 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
2015-03-07 03:16:08 +00:00
|
|
|
exit;
|
2014-09-20 19:52:30 +00:00
|
|
|
}
|
2013-07-18 14:22:05 +00:00
|
|
|
|
|
|
|
/**
|
2015-11-03 12:28:01 +00:00
|
|
|
* WC_Admin_Status Class.
|
2013-07-18 14:22:05 +00:00
|
|
|
*/
|
|
|
|
class WC_Admin_Status {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handles output of the reports page in admin.
|
|
|
|
*/
|
2014-06-04 10:16:19 +00:00
|
|
|
public static function output() {
|
2016-07-27 10:58:43 +00:00
|
|
|
include_once( dirname( __FILE__ ) . '/views/html-admin-page-status.php' );
|
2013-07-18 14:22:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 12:28:01 +00:00
|
|
|
* Handles output of report.
|
2013-07-18 14:22:05 +00:00
|
|
|
*/
|
2014-06-04 10:16:19 +00:00
|
|
|
public static function status_report() {
|
2016-07-27 10:58:43 +00:00
|
|
|
include_once( dirname( __FILE__ ) . '/views/html-admin-page-status-report.php' );
|
2013-07-18 14:22:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 12:28:01 +00:00
|
|
|
* Handles output of tools.
|
2013-07-18 14:22:05 +00:00
|
|
|
*/
|
2014-06-04 10:16:19 +00:00
|
|
|
public static function status_tools() {
|
|
|
|
$tools = self::get_tools();
|
2013-07-18 14:22:05 +00:00
|
|
|
|
|
|
|
if ( ! empty( $_GET['action'] ) && ! empty( $_REQUEST['_wpnonce'] ) && wp_verify_nonce( $_REQUEST['_wpnonce'], 'debug_action' ) ) {
|
2016-08-05 21:22:34 +00:00
|
|
|
$tools_controller = new WC_REST_System_Status_Tools_Controller;
|
2016-08-09 17:14:47 +00:00
|
|
|
$action = wc_clean( $_GET['action'] );
|
|
|
|
|
|
|
|
if ( array_key_exists( $action, $tools ) ) {
|
|
|
|
$response = $tools_controller->execute_tool( $action );
|
|
|
|
} else {
|
|
|
|
$response = array( 'success' => false, 'message' => __( 'Tool does not exist.', 'woocommerce' ) );
|
|
|
|
}
|
2013-07-18 14:22:05 +00:00
|
|
|
|
2016-08-05 21:22:34 +00:00
|
|
|
if ( $response['success'] ) {
|
2016-08-09 17:14:47 +00:00
|
|
|
echo '<div class="updated inline"><p>' . esc_html( $response['message'] ) . '</p></div>';
|
2016-08-05 21:22:34 +00:00
|
|
|
} else {
|
2016-08-09 17:14:47 +00:00
|
|
|
echo '<div class="error inline"><p>' . esc_html( $response['message'] ) . '</p></div>';
|
2013-07-18 14:22:05 +00:00
|
|
|
}
|
|
|
|
}
|
2014-05-28 13:46:11 +00:00
|
|
|
|
2014-06-04 17:25:49 +00:00
|
|
|
// Display message if settings settings have been saved
|
|
|
|
if ( isset( $_REQUEST['settings-updated'] ) ) {
|
2016-02-23 08:33:11 +00:00
|
|
|
echo '<div class="updated inline"><p>' . __( 'Your changes have been saved.', 'woocommerce' ) . '</p></div>';
|
2013-11-14 19:31:08 +00:00
|
|
|
}
|
2013-07-18 14:22:05 +00:00
|
|
|
|
2016-07-27 10:58:43 +00:00
|
|
|
include_once( dirname( __FILE__ ) . '/views/html-admin-page-status-tools.php' );
|
2013-07-18 14:22:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 12:28:01 +00:00
|
|
|
* Get tools.
|
2013-07-18 14:22:05 +00:00
|
|
|
* @return array of tools
|
|
|
|
*/
|
2014-06-04 10:16:19 +00:00
|
|
|
public static function get_tools() {
|
2016-08-05 21:22:34 +00:00
|
|
|
$tools_controller = new WC_REST_System_Status_Tools_Controller;
|
|
|
|
return $tools_controller->get_tools();
|
2013-07-18 14:22:05 +00:00
|
|
|
}
|
|
|
|
|
2014-05-28 10:12:35 +00:00
|
|
|
/**
|
2015-11-03 12:28:01 +00:00
|
|
|
* Show the logs page.
|
2014-05-28 10:12:35 +00:00
|
|
|
*/
|
2014-06-04 10:16:19 +00:00
|
|
|
public static function status_logs() {
|
2016-12-22 21:29:47 +00:00
|
|
|
if ( defined( 'WC_LOG_HANDLER' ) && 'WC_Log_Handler_DB' === WC_LOG_HANDLER ) {
|
2016-12-03 17:23:52 +00:00
|
|
|
self::status_logs_db();
|
|
|
|
} else {
|
|
|
|
self::status_logs_file();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the log page contents for file log handler.
|
|
|
|
*/
|
|
|
|
public static function status_logs_file() {
|
2014-11-30 06:52:32 +00:00
|
|
|
|
2014-06-04 10:16:19 +00:00
|
|
|
$logs = self::scan_log_files();
|
2014-11-30 06:52:32 +00:00
|
|
|
|
2015-02-02 23:58:25 +00:00
|
|
|
if ( ! empty( $_REQUEST['log_file'] ) && isset( $logs[ sanitize_title( $_REQUEST['log_file'] ) ] ) ) {
|
|
|
|
$viewed_log = $logs[ sanitize_title( $_REQUEST['log_file'] ) ];
|
2015-04-01 13:33:56 +00:00
|
|
|
} elseif ( ! empty( $logs ) ) {
|
2014-05-28 10:12:35 +00:00
|
|
|
$viewed_log = current( $logs );
|
|
|
|
}
|
2014-11-30 06:52:32 +00:00
|
|
|
|
2016-07-05 00:10:17 +00:00
|
|
|
$handle = ! empty( $viewed_log ) ? self::get_log_file_handle( $viewed_log ) : '';
|
|
|
|
|
2016-08-27 03:23:21 +00:00
|
|
|
if ( ! empty( $_REQUEST['handle'] ) ) {
|
2016-07-05 00:10:17 +00:00
|
|
|
self::remove_log();
|
|
|
|
}
|
|
|
|
|
2014-05-28 10:12:35 +00:00
|
|
|
include_once( 'views/html-admin-page-status-logs.php' );
|
|
|
|
}
|
|
|
|
|
2016-11-20 17:56:12 +00:00
|
|
|
/**
|
2016-12-03 17:23:52 +00:00
|
|
|
* Show the log page contents for db log handler.
|
2016-11-20 17:56:12 +00:00
|
|
|
*/
|
|
|
|
public static function status_logs_db() {
|
2016-11-26 19:05:59 +00:00
|
|
|
|
2016-12-15 21:03:12 +00:00
|
|
|
// Flush
|
2016-11-26 19:05:59 +00:00
|
|
|
if ( ! empty( $_REQUEST['flush-logs'] ) ) {
|
|
|
|
self::flush_db_logs();
|
|
|
|
}
|
2016-12-15 21:03:12 +00:00
|
|
|
|
|
|
|
// Bulk actions
|
2017-11-29 09:04:49 +00:00
|
|
|
if ( isset( $_REQUEST['action'] ) && isset( $_REQUEST['log'] ) ) {
|
2016-12-15 21:03:12 +00:00
|
|
|
self::log_table_bulk_actions();
|
|
|
|
}
|
|
|
|
|
2016-11-20 17:56:12 +00:00
|
|
|
$log_table_list = new WC_Admin_Log_Table_List();
|
|
|
|
$log_table_list->prepare_items();
|
|
|
|
|
2016-11-20 18:16:18 +00:00
|
|
|
include_once( 'views/html-admin-page-status-logs-db.php' );
|
2016-11-20 17:56:12 +00:00
|
|
|
}
|
|
|
|
|
2014-02-11 13:33:56 +00:00
|
|
|
/**
|
2015-11-03 12:28:01 +00:00
|
|
|
* Retrieve metadata from a file. Based on WP Core's get_file_data function.
|
2015-03-07 03:16:08 +00:00
|
|
|
* @since 2.1.1
|
|
|
|
* @param string $file Path to the file
|
2014-09-07 23:37:55 +00:00
|
|
|
* @return string
|
2014-02-11 13:33:56 +00:00
|
|
|
*/
|
2014-06-04 10:16:19 +00:00
|
|
|
public static function get_file_version( $file ) {
|
2014-11-30 06:52:32 +00:00
|
|
|
|
2014-10-28 00:21:33 +00:00
|
|
|
// Avoid notices if file does not exist
|
|
|
|
if ( ! file_exists( $file ) ) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2014-02-11 13:33:56 +00:00
|
|
|
// We don't need to write to the file, so just open for reading.
|
|
|
|
$fp = fopen( $file, 'r' );
|
|
|
|
|
|
|
|
// Pull only the first 8kiB of the file in.
|
|
|
|
$file_data = fread( $fp, 8192 );
|
|
|
|
|
|
|
|
// PHP will close file handle, but we are good citizens.
|
|
|
|
fclose( $fp );
|
|
|
|
|
|
|
|
// Make sure we catch CR-only line endings.
|
|
|
|
$file_data = str_replace( "\r", "\n", $file_data );
|
|
|
|
$version = '';
|
|
|
|
|
2017-03-07 20:24:24 +00:00
|
|
|
if ( preg_match( '/^[ \t\/*#@]*' . preg_quote( '@version', '/' ) . '(.*)$/mi', $file_data, $match ) && $match[1] ) {
|
2014-02-11 13:33:56 +00:00
|
|
|
$version = _cleanup_header_comment( $match[1] );
|
2017-03-07 20:24:24 +00:00
|
|
|
}
|
2014-02-11 13:33:56 +00:00
|
|
|
|
|
|
|
return $version ;
|
|
|
|
}
|
2014-05-28 13:46:11 +00:00
|
|
|
|
2016-07-05 00:10:17 +00:00
|
|
|
/**
|
|
|
|
* Return the log file handle.
|
|
|
|
*
|
|
|
|
* @param string $filename
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function get_log_file_handle( $filename ) {
|
|
|
|
return substr( $filename, 0, strlen( $filename ) > 37 ? strlen( $filename ) - 37 : strlen( $filename ) - 4 );
|
|
|
|
}
|
|
|
|
|
2013-07-18 14:22:05 +00:00
|
|
|
/**
|
2015-11-03 12:28:01 +00:00
|
|
|
* Scan the template files.
|
2015-03-07 03:16:08 +00:00
|
|
|
* @param string $template_path
|
2014-06-04 17:25:49 +00:00
|
|
|
* @return array
|
2013-07-18 14:22:05 +00:00
|
|
|
*/
|
2014-06-04 10:16:19 +00:00
|
|
|
public static function scan_template_files( $template_path ) {
|
2014-11-30 06:52:32 +00:00
|
|
|
|
2015-04-01 13:33:56 +00:00
|
|
|
$files = @scandir( $template_path );
|
|
|
|
$result = array();
|
2014-11-30 06:52:32 +00:00
|
|
|
|
2015-04-01 13:33:56 +00:00
|
|
|
if ( ! empty( $files ) ) {
|
2014-11-30 06:52:32 +00:00
|
|
|
|
2013-07-18 14:22:05 +00:00
|
|
|
foreach ( $files as $key => $value ) {
|
2014-11-30 06:52:32 +00:00
|
|
|
|
2016-08-27 02:14:16 +00:00
|
|
|
if ( ! in_array( $value, array( ".", ".." ) ) ) {
|
2014-11-30 06:52:32 +00:00
|
|
|
|
2013-07-18 14:22:05 +00:00
|
|
|
if ( is_dir( $template_path . DIRECTORY_SEPARATOR . $value ) ) {
|
2014-06-04 10:16:19 +00:00
|
|
|
$sub_files = self::scan_template_files( $template_path . DIRECTORY_SEPARATOR . $value );
|
2013-07-18 14:22:05 +00:00
|
|
|
foreach ( $sub_files as $sub_file ) {
|
|
|
|
$result[] = $value . DIRECTORY_SEPARATOR . $sub_file;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$result[] = $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
2014-05-28 10:12:35 +00:00
|
|
|
|
|
|
|
/**
|
2015-11-03 12:28:01 +00:00
|
|
|
* Scan the log files.
|
2014-06-04 17:25:49 +00:00
|
|
|
* @return array
|
2014-05-28 10:12:35 +00:00
|
|
|
*/
|
2014-06-04 10:16:19 +00:00
|
|
|
public static function scan_log_files() {
|
2015-04-01 13:33:56 +00:00
|
|
|
$files = @scandir( WC_LOG_DIR );
|
|
|
|
$result = array();
|
2014-11-30 06:52:32 +00:00
|
|
|
|
2016-06-06 18:39:23 +00:00
|
|
|
if ( ! empty( $files ) ) {
|
2014-11-30 06:52:32 +00:00
|
|
|
|
2014-05-28 10:12:35 +00:00
|
|
|
foreach ( $files as $key => $value ) {
|
2014-11-30 06:52:32 +00:00
|
|
|
|
2014-05-28 13:46:11 +00:00
|
|
|
if ( ! in_array( $value, array( '.', '..' ) ) ) {
|
2014-05-28 10:12:35 +00:00
|
|
|
if ( ! is_dir( $value ) && strstr( $value, '.log' ) ) {
|
|
|
|
$result[ sanitize_title( $value ) ] = $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-04-01 13:33:56 +00:00
|
|
|
|
2014-05-28 10:12:35 +00:00
|
|
|
return $result;
|
|
|
|
}
|
2015-11-02 10:01:42 +00:00
|
|
|
|
|
|
|
/**
|
2015-11-03 12:28:01 +00:00
|
|
|
* Get latest version of a theme by slug.
|
2016-02-05 19:48:45 +00:00
|
|
|
* @param object $theme WP_Theme object.
|
|
|
|
* @return string Version number if found.
|
2015-11-02 10:01:42 +00:00
|
|
|
*/
|
|
|
|
public static function get_latest_theme_version( $theme ) {
|
2016-12-07 11:37:00 +00:00
|
|
|
include_once( ABSPATH . 'wp-admin/includes/theme.php' );
|
|
|
|
|
2015-11-02 10:01:42 +00:00
|
|
|
$api = themes_api( 'theme_information', array(
|
|
|
|
'slug' => $theme->get_stylesheet(),
|
|
|
|
'fields' => array(
|
2016-02-05 19:48:45 +00:00
|
|
|
'sections' => false,
|
|
|
|
'tags' => false,
|
2016-08-27 01:46:45 +00:00
|
|
|
),
|
2016-02-05 19:48:45 +00:00
|
|
|
) );
|
2015-11-02 10:01:42 +00:00
|
|
|
|
|
|
|
$update_theme_version = 0;
|
|
|
|
|
2016-02-05 19:48:45 +00:00
|
|
|
// Check .org for updates.
|
|
|
|
if ( is_object( $api ) && ! is_wp_error( $api ) ) {
|
2015-11-02 10:01:42 +00:00
|
|
|
$update_theme_version = $api->version;
|
|
|
|
|
2016-02-05 19:48:45 +00:00
|
|
|
// Check WooThemes Theme Version.
|
2015-11-02 10:01:42 +00:00
|
|
|
} elseif ( strstr( $theme->{'Author URI'}, 'woothemes' ) ) {
|
|
|
|
$theme_dir = substr( strtolower( str_replace( ' ','', $theme->Name ) ), 0, 45 );
|
|
|
|
|
|
|
|
if ( false === ( $theme_version_data = get_transient( $theme_dir . '_version_data' ) ) ) {
|
|
|
|
$theme_changelog = wp_safe_remote_get( 'http://dzv365zjfbd8v.cloudfront.net/changelogs/' . $theme_dir . '/changelog.txt' );
|
|
|
|
$cl_lines = explode( "\n", wp_remote_retrieve_body( $theme_changelog ) );
|
|
|
|
if ( ! empty( $cl_lines ) ) {
|
|
|
|
foreach ( $cl_lines as $line_num => $cl_line ) {
|
|
|
|
if ( preg_match( '/^[0-9]/', $cl_line ) ) {
|
|
|
|
$theme_date = str_replace( '.' , '-' , trim( substr( $cl_line , 0 , strpos( $cl_line , '-' ) ) ) );
|
|
|
|
$theme_version = preg_replace( '~[^0-9,.]~' , '' ,stristr( $cl_line , "version" ) );
|
|
|
|
$theme_update = trim( str_replace( "*" , "" , $cl_lines[ $line_num + 1 ] ) );
|
|
|
|
$theme_version_data = array( 'date' => $theme_date , 'version' => $theme_version , 'update' => $theme_update , 'changelog' => $theme_changelog );
|
|
|
|
set_transient( $theme_dir . '_version_data', $theme_version_data , DAY_IN_SECONDS );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! empty( $theme_version_data['version'] ) ) {
|
|
|
|
$update_theme_version = $theme_version_data['version'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $update_theme_version;
|
|
|
|
}
|
2016-07-05 00:10:17 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove/delete the chosen file.
|
|
|
|
*/
|
2016-08-02 13:42:27 +00:00
|
|
|
public static function remove_log() {
|
2016-08-27 03:23:21 +00:00
|
|
|
if ( empty( $_REQUEST['_wpnonce'] ) || ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'remove_log' ) ) {
|
2016-07-05 00:10:17 +00:00
|
|
|
wp_die( __( 'Action failed. Please refresh the page and retry.', 'woocommerce' ) );
|
|
|
|
}
|
|
|
|
|
2016-08-27 03:23:21 +00:00
|
|
|
if ( ! empty( $_REQUEST['handle'] ) ) {
|
2016-11-19 17:10:55 +00:00
|
|
|
$log_handler = new WC_Log_Handler_File();
|
|
|
|
$log_handler->remove( $_REQUEST['handle'] );
|
2016-07-05 00:10:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
wp_safe_redirect( esc_url_raw( admin_url( 'admin.php?page=wc-status&tab=logs' ) ) );
|
|
|
|
exit();
|
|
|
|
}
|
2016-11-26 19:05:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Clear DB log table.
|
|
|
|
*
|
2017-03-15 16:36:53 +00:00
|
|
|
* @since 3.0.0
|
2016-11-26 19:05:59 +00:00
|
|
|
*/
|
2016-12-15 21:03:12 +00:00
|
|
|
private static function flush_db_logs() {
|
|
|
|
if ( empty( $_REQUEST['_wpnonce'] ) || ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'woocommerce-status-logs' ) ) {
|
|
|
|
wp_die( __( 'Action failed. Please refresh the page and retry.', 'woocommerce' ) );
|
2016-11-26 19:05:59 +00:00
|
|
|
}
|
|
|
|
|
2016-12-15 21:03:12 +00:00
|
|
|
WC_Log_Handler_DB::flush();
|
|
|
|
|
2016-12-03 21:26:36 +00:00
|
|
|
wp_safe_redirect( esc_url_raw( admin_url( 'admin.php?page=wc-status&tab=logs' ) ) );
|
2016-11-26 19:05:59 +00:00
|
|
|
exit();
|
|
|
|
}
|
2016-12-15 21:03:12 +00:00
|
|
|
|
|
|
|
/**
|
2016-12-18 20:02:20 +00:00
|
|
|
* Bulk DB log table actions.
|
2016-12-15 21:03:12 +00:00
|
|
|
*
|
2017-03-15 16:36:53 +00:00
|
|
|
* @since 3.0.0
|
2016-12-15 21:03:12 +00:00
|
|
|
*/
|
|
|
|
private static function log_table_bulk_actions() {
|
|
|
|
if ( empty( $_REQUEST['_wpnonce'] ) || ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'woocommerce-status-logs' ) ) {
|
|
|
|
wp_die( __( 'Action failed. Please refresh the page and retry.', 'woocommerce' ) );
|
|
|
|
}
|
|
|
|
|
2017-11-29 09:04:49 +00:00
|
|
|
$log_ids = array_map( 'absint', (array) $_REQUEST['log'] );
|
2016-12-15 21:03:12 +00:00
|
|
|
|
2017-11-29 09:04:49 +00:00
|
|
|
if ( 'delete' === $_REQUEST['action'] || 'delete' === $_REQUEST['action2'] ) {
|
2016-12-15 21:03:12 +00:00
|
|
|
WC_Log_Handler_DB::delete( $log_ids );
|
|
|
|
wp_safe_redirect( esc_url_raw( admin_url( 'admin.php?page=wc-status&tab=logs' ) ) );
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|
2014-06-04 17:25:49 +00:00
|
|
|
}
|