| Server IP : 146.59.209.152 / Your IP : 216.73.216.152 Web Server : Apache System : Linux webm009.cluster131.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : monpetu ( 144298) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/monpetu/www/ipprint/wp-content/plugins/cartflows/admin-legacy-core/ajax/ |
Upload File : |
<?php
/**
* CartFlows Flows ajax actions.
*
* @package CartFlows
*/
namespace CartflowsAdmin\AdminLegacyCore\Ajax;
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
use CartflowsAdmin\AdminLegacyCore\Ajax\AjaxBase;
use CartflowsAdmin\AdminLegacyCore\Inc\LogStatus;
use CartflowsAdmin\AdminLegacyCore\Inc\AdminHelper;
/**
* Class Steps.
*/
class Debugger extends AjaxBase {
/**
* Instance
*
* @access private
* @var object Class object.
* @since 1.0.0
*/
private static $instance;
/**
* Deleted
*
* @access private
* @var object Class object.
* @since 1.0.0
*/
private static $file_deleted = false;
/**
* Initiator
*
* @since 1.0.0
* @return object initialized object of class.
*/
public static function get_instance() {
if ( ! isset( self::$instance ) ) {
self::$instance = new self();
}
return self::$instance;
}
/**
* Register ajax events.
*
* @since 1.0.0
* @return void
*/
public function register_ajax_events() {
$ajax_events = array(
'show_cf_log',
'delete_cf_log',
'download_cf_log',
'sync_kb_docs',
);
$this->init_ajax_events( $ajax_events );
}
/**
* Sync knowledge base library.
*
* @since 2.0.0
* @return void
*/
public function sync_kb_docs() {
if ( ! current_user_can( 'cartflows_manage_flows_steps' ) ) {
wp_die( esc_html__( 'You don\'t have permission to perform this action.', 'cartflows' ) );
}
check_ajax_referer( 'cartflows_sync_kb_docs', 'security' );
$docs_json = json_decode( wp_remote_retrieve_body( wp_remote_get( 'https://cartflows.com//wp-json/powerful-docs/v1/get-docs' ) ) );
AdminHelper::update_admin_settings_option( 'cartflows_docs_data', $docs_json );
$response_data = array(
'message' => __( 'Sync Success.', 'cartflows' ),
'status' => true,
);
wp_send_json_success( $response_data );
}
/**
* Clone step with its meta.
*/
public function show_cf_log() {
if ( ! current_user_can( 'cartflows_manage_settings' ) ) {
wp_die( esc_html__( 'You don\'t have permission to view this page.', 'cartflows' ) );
}
check_ajax_referer( 'cartflows_show_cf_log', 'security' );
$log_key = isset( $_POST['log_key'] ) ? sanitize_text_field( wp_unslash( $_POST['log_key'] ) ) : '';
$logs = LogStatus::get_instance()->get_log_files();
$log_filename = isset( $logs[ $log_key ] ) ? $logs[ $log_key ] : '';
$file_content = file_get_contents( CARTFLOWS_LOG_DIR . $log_filename );
wp_send_json(
array(
'log_content' => esc_html( $file_content ),
)
);
}
/**
* Delete Provided log file
*/
public function delete_cf_log() {
// Ensure the current user has permission to manage CartFlows settings.
if ( ! current_user_can( 'cartflows_manage_settings' ) ) {
wp_die( esc_html__( 'You don\'t have permission to perform this action.', 'cartflows' ) );
}
// Verify the nonce to protect against CSRF attacks.
check_ajax_referer( 'cartflows_delete_cf_log', 'security' );
// Bail early if no log key was provided in the request.
if ( empty( $_REQUEST['log_key'] ) ) {
$response_data = array(
'message' => esc_html__( 'Filename is empty. Please refresh the page and retry.', 'cartflows' ),
'file_content' => '',
);
wp_send_json_error( $response_data );
}
// Sanitize the log key from the request.
$log_key = sanitize_text_field( wp_unslash( $_REQUEST['log_key'] ) );
// Retrieve the list of available log files.
$logs = LogStatus::get_instance()->get_log_files();
// Bail if the provided key does not match any known log file.
if ( ! isset( $logs[ $log_key ] ) ) {
$response_data = array(
'message' => esc_html__( 'Invalid log file.', 'cartflows' ),
'file_content' => '',
);
wp_send_json_error( $response_data );
}
// Resolve the full file path for the log file.
$file_name = $logs[ $log_key ];
$file_path = CARTFLOWS_LOG_DIR . $file_name;
// Security: Validate file path is within log directory to prevent path traversal.
$real_path = realpath( $file_path );
$real_log_dir = realpath( CARTFLOWS_LOG_DIR );
if ( $real_path && $real_log_dir && 0 === strpos( $real_path, $real_log_dir ) && file_exists( $real_path ) ) {
wp_delete_file( $real_path );
self::$file_deleted = true;
}
// Return a success response to the client.
$response_data = array(
'message' => esc_html__( 'Log file deleted successfully.', 'cartflows' ),
);
wp_send_json_success( $response_data );
}
/**
* Download the selected log file.
*/
public function download_cf_log() {
// Ensure the current user has permission to manage CartFlows settings.
if ( ! current_user_can( 'cartflows_manage_settings' ) ) {
wp_die( esc_html__( 'You don\'t have permission to perform this action.', 'cartflows' ) );
}
// Verify the nonce to protect against CSRF attacks.
check_ajax_referer( 'cartflows_download_cf_log', 'security' );
// Sanitize the log key from the request, defaulting to empty string if not set.
$log_key = isset( $_REQUEST['log_key'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['log_key'] ) ) : '';
// Retrieve the list of available log files.
$logs = LogStatus::get_instance()->get_log_files();
// Bail if the provided key does not match any known log file.
if ( ! isset( $logs[ $log_key ] ) ) {
return;
}
// Resolve the full file path for the log file.
$file_name = $logs[ $log_key ];
$file_path = CARTFLOWS_LOG_DIR . $file_name;
// Security: Validate file path is within log directory to prevent path traversal.
$real_path = realpath( $file_path );
$real_log_dir = realpath( CARTFLOWS_LOG_DIR );
if ( ! $real_path || ! $real_log_dir || 0 !== strpos( $real_path, $real_log_dir ) || ! file_exists( $real_path ) ) {
return;
}
$file_extension = pathinfo( $file_name, PATHINFO_EXTENSION );
$allowed_files = array( 'log' );
// Return if the desired file is not found for download.
if ( ! in_array( $file_extension, $allowed_files, true ) || strpos( $file_name, '.php' ) !== false ) {
wp_die( esc_html__( 'Invalid file.', 'cartflows' ) );
return;
}
$file_content = file_get_contents( $real_path ); // phpcs:ignore WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents
// Return the file contents along with a success message.
$response_data = array(
'message' => __( 'Export logs successfully', 'cartflows' ),
'file_content' => $file_content,
);
wp_send_json_success( $response_data );
}
}