Files
2026-04-28 15:13:50 +02:00

2253 lines
80 KiB
PHP

<?php
namespace WPO\IPS\Settings;
use WPO\IPS\Tables\NumberStoreListTable;
use WPO\IPS\Semaphore;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
if ( ! class_exists( '\\WPO\\IPS\\Settings\\SettingsDebug' ) ) :
class SettingsDebug {
protected static $_instance = null;
public $sections;
public static function instance() {
if ( is_null( self::$_instance ) ) {
self::$_instance = new self();
}
return self::$_instance;
}
public function __construct() {
// Show a notice if the plugin requirements are not met.
add_action( 'admin_init', array( $this, 'handle_server_requirement_notice' ) );
add_action( 'admin_init', array( $this, 'init_settings' ) );
add_action( 'admin_init', array( $this, 'maybe_schedule_unstable_version_check' ) );
add_action( 'wpo_wcpdf_settings_output_debug', array( $this, 'output' ), 10, 2 );
add_action( 'wpo_wcpdf_number_table_data_fetch', array( $this, 'fetch_number_table_data' ), 10, 7 );
add_action( 'wpo_wcpdf_check_unstable_version_daily', array( $this, 'run_unstable_version_check' ) );
add_action( 'wp_ajax_wpo_wcpdf_debug_tools', array( $this, 'ajax_process_settings_debug_tools' ) );
add_action( 'wp_ajax_wpo_wcpdf_danger_zone_tools', array( $this, 'ajax_process_danger_zone_tools' ) );
add_action( 'wp_ajax_wpo_wcpdf_numbers_data', array( $this, 'ajax_numbers_data' ) );
add_action( 'wp_ajax_wpo_ips_plugin_report', array( $this, 'ajax_plugin_report' ) );
}
/**
* Output the settings debug sections.
*
* @param string $active_section
* @param string $nonce
* @return void
*/
public function output( string $active_section, string $nonce ): void {
if ( ! \WPO_WCPDF()->settings->user_can_manage_settings() ) {
return;
}
if ( ! wp_verify_nonce( $nonce, 'wp_wcpdf_settings_page_nonce' ) ) {
return;
}
$active_section = ! empty( $active_section ) ? $active_section : 'settings';
$sections = $this->get_settings_sections();
?>
<div class="wcpdf-settings-sub-sections">
<h2 class="nav-tab-wrapper">
<?php
foreach ( $sections as $section => $title ) {
$active = ( $section === $active_section ) ? 'nav-tab-active' : '';
printf( '<a href="%1$s" class="nav-tab nav-tab-%2$s %3$s">%4$s</a>', esc_url( add_query_arg( 'section', $section ) ), esc_attr( $section ), esc_attr( $active ), esc_html( $title ) );
}
?>
</h2>
</div>
<?php
switch ( $active_section ) {
case 'settings':
$this->display_settings();
break;
case 'status':
$this->display_status();
break;
case 'tools':
$this->display_tools();
break;
case 'numbers':
$this->display_numbers( $nonce );
break;
default:
do_action( 'wpo_wcpdf_settings_debug_section_output', $active_section );
break;
}
do_action( 'wpo_wcpdf_settings_debug_after_output', $active_section, $sections );
}
public function display_settings() {
settings_fields( 'wpo_wcpdf_settings_debug' );
do_settings_sections( 'wpo_wcpdf_settings_debug' );
submit_button();
}
/**
* Display the server requirement page.
*
* @return void
*/
public function display_status(): void {
$server_configs = $this->get_server_config();
$premium_plugins = $this->get_premium_plugins();
$directory_permissions = $this->get_directory_permissions();
$yearly_reset_schedule = $this->get_yearly_reset_schedule();
$debug_settings = WPO_WCPDF()->settings->debug_settings;
$latest_github_releases = wpo_wcpdf_get_latest_releases_from_github();
include WPO_WCPDF()->plugin_path() . '/views/advanced-status.php';
}
/**
* Display the advanced tools page.
*
* @return void
*/
public function display_tools(): void {
include WPO_WCPDF()->plugin_path() . '/views/advanced-tools.php';
}
public function display_numbers( $nonce ) {
if ( ! wp_verify_nonce( $nonce, 'wp_wcpdf_settings_page_nonce' ) ) {
return;
}
if ( ! function_exists( '\\as_has_scheduled_action' ) ) {
wcpdf_log_error( 'Action Scheduler is not available. Cannot fetch numbers table data.', 'critical' );
return;
}
global $wpdb;
$_GET['_wpnonce'] = $nonce;
$number_store_tables = $this->get_number_store_tables();
$invoice_number_store_doc_types = $this->get_additional_invoice_number_store_document_types();
$store_name = 'invoice_number';
if ( isset( $_GET['table_name'] ) ) {
$selected_table_name = sanitize_text_field( wp_unslash( $_GET['table_name'] ) );
} else {
$_GET['table_name'] = $selected_table_name = apply_filters( 'wpo_wcpdf_number_store_table_name', "{$wpdb->prefix}wcpdf_{$store_name}", $store_name, null ); // i.e. wp_wcpdf_invoice_number or wp_wcpdf_invoice_number_2021
}
if ( ! isset( $number_store_tables[ $_GET['table_name'] ] ) ) {
$_GET['table_name'] = $selected_table_name = null;
}
$document_type = $this->get_document_type_from_store_table_name( sanitize_text_field( wp_unslash( $_GET['table_name'] ) ) );
$list_table = new NumberStoreListTable();
$as_actions = \as_has_scheduled_action( 'wpo_wcpdf_number_table_data_fetch' );
$last_fetch = get_option( "wpo_wcpdf_number_data::{$selected_table_name}::last_time" );
$list_table->prepare_items();
$list_table_name = sanitize_text_field( wp_unslash( $_GET['table_name'] ) );
$search_value = isset( $_REQUEST['s'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['s'] ) ) : '';
$disable_reset = empty( $search_value ) ? 'disabled' : '';
include WPO_WCPDF()->plugin_path() . '/views/advanced-numbers.php';
}
public function get_number_store_tables() {
global $wpdb;
$tables = $wpdb->get_results( // phpcs:ignore WordPress.DB.DirectDatabaseQuery.NoCaching, WordPress.DB.DirectDatabaseQuery.DirectQuery
"SHOW TABLES LIKE '{$wpdb->prefix}wcpdf_%'"
);
$document_titles = WPO_WCPDF()->documents->get_document_titles();
$table_names = array();
foreach ( $tables as $table ) {
foreach ( $table as $table_name ) {
if ( ! empty ( $table_name ) ) {
// strip the default prefix
$store_name = $full_store_name = substr( $table_name, strpos( $table_name, 'wcpdf_' ) + strlen( 'wcpdf_' ) );
// strip year suffix, if present
if ( is_numeric( substr( $full_store_name, -4 ) ) ) {
$store_name = trim( substr( $full_store_name, 0, -4 ), '_' );
}
if ( empty( $store_name ) || empty( $full_store_name ) ) {
continue;
}
// strip '_number' and other remaining suffixes
$suffix = substr( $full_store_name, strpos( $full_store_name, '_number' ) + strlen( '_number' ) );
$clean_suffix = ! empty( $suffix ) ? trim( str_replace( '_number', '', $suffix ), '_' ) : $suffix;
$name = substr( $store_name, 0, strpos( $store_name, '_number' ) );
$title = '';
if ( ! empty( $name ) ) {
$title = ! empty( $document_titles[ $name ] ) ? $document_titles[ $name ] : ucwords( str_replace( array( "__", "_", "-" ), ' ', $name ) );
}
if ( ! empty ( $suffix ) ) {
$title = "{$title} ({$clean_suffix})";
}
$table_names[ $table_name ] = $title;
}
}
}
ksort( $table_names );
return $table_names;
}
public function get_document_type_from_store_table_name( $table_name ) {
$document_type = '';
if ( empty( $table_name ) ) {
return $document_type;
}
// strip the default prefix
$store_name = $full_store_name = substr( $table_name, strpos( $table_name, 'wcpdf_' ) + strlen( 'wcpdf_' ) );
// strip year suffix, if present
if ( is_numeric( substr( $full_store_name, -4 ) ) ) {
$store_name = trim( substr( $full_store_name, 0, -4 ), '_' );
}
if ( ! empty( $store_name ) && ! empty( $full_store_name ) ) {
$name = substr( $store_name, 0, strpos( $store_name, '_number' ) );
$document_type = ! empty( $name ) ? str_replace( '_', '-', $name ) : '';
}
return $document_type;
}
public function get_additional_invoice_number_store_document_types() {
$additional_doc_types = array();
$documents = WPO_WCPDF()->documents->get_documents();
foreach ( $documents as $document ) {
if ( in_array( $document->get_type(), array( 'proforma', 'credit-note' ) ) && $document->is_enabled() && is_callable( array( $document, 'get_number_sequence' ) ) ) {
$number_sequence = $document->get_number_sequence( '', $document );
if ( 'invoice_number' === $number_sequence ) {
$additional_doc_types[] = $document->get_type();
}
}
}
return $additional_doc_types;
}
private function generate_random_string( $data ) {
if ( ! empty( WPO_WCPDF()->main->get_random_string() ) ) {
$old_path = WPO_WCPDF()->main->get_tmp_base();
} else {
$old_path = WPO_WCPDF()->main->get_tmp_base( false );
}
WPO_WCPDF()->main->generate_random_string();
$new_path = WPO_WCPDF()->main->get_tmp_base();
WPO_WCPDF()->main->copy_directory( $old_path, $new_path );
WPO_WCPDF()->main->maybe_reinstall_fonts( true );
$message = esc_html__( 'Temporary folder moved to', 'woocommerce-pdf-invoices-packing-slips' ) . ': ' . wp_normalize_path( $new_path );
wcpdf_log_error( $message, 'info' );
wp_send_json_success( compact( 'message' ) );
}
private function install_fonts( $data ) {
WPO_WCPDF()->main->maybe_reinstall_fonts( true );
$message = esc_html__( 'Fonts reinstalled!', 'woocommerce-pdf-invoices-packing-slips' );
wcpdf_log_error( $message, 'info' );
wp_send_json_success( compact( 'message' ) );
}
private function reschedule_yearly_reset( $data ) {
WPO_WCPDF()->settings->schedule_yearly_reset_numbers();
$message = esc_html__( 'Yearly reset numbering system rescheduled!', 'woocommerce-pdf-invoices-packing-slips' );
wcpdf_log_error( $message, 'info' );
wp_send_json_success( compact( 'message' ) );
}
private function clear_tmp( $data ) {
$output = WPO_WCPDF()->main->temporary_files_cleanup( time() );
$message = reset( $output );
switch ( key( $output ) ) {
case 'error':
wcpdf_log_error( $message );
wp_send_json_error( compact( 'message' ) );
break;
case 'success':
wcpdf_log_error( $message, 'info' );
wp_send_json_success( compact( 'message' ) );
break;
default:
exit;
}
}
private function clear_released_semaphore_locks( $data ) {
Semaphore::cleanup_released_locks();
$message = esc_html__( 'Released semaphore locks have been cleaned up!', 'woocommerce-pdf-invoices-packing-slips' );
wcpdf_log_error( $message, 'info' );
wp_send_json_success( compact( 'message' ) );
}
private function clear_released_legacy_semaphore_locks( $data ) {
Semaphore::cleanup_released_locks( true );
$message = esc_html__( 'Released legacy semaphore locks have been cleaned up!', 'woocommerce-pdf-invoices-packing-slips' );
wcpdf_log_error( $message, 'info' );
wp_send_json_success( compact( 'message' ) );
}
private function clear_extensions_license_cache( $data ) {
WPO_WCPDF()->settings->upgrade->clear_extensions_license_cache();
$message = __( "Extensions' license cache cleared successfully!", 'woocommerce-pdf-invoices-packing-slips' );
wcpdf_log_error( $message, 'info' );
wp_send_json_success( compact( 'message' ) );
}
/**
* AJAX handler for processing settings debug tools.
*
* @return void
*/
public function ajax_process_settings_debug_tools(): void {
if ( ! \WPO_WCPDF()->settings->user_can_manage_settings() ) {
$message = __( 'You are not allowed to perform this action.', 'woocommerce-pdf-invoices-packing-slips' );
wcpdf_log_error( $message );
wp_send_json_error( compact( 'message' ) );
}
check_ajax_referer( 'wpo_wcpdf_debug_nonce', 'nonce' );
$data = isset( $_POST ) ? stripslashes_deep( $_POST ) : array();
if (
empty( $data['action'] ) ||
'wpo_wcpdf_debug_tools' !== $data['action'] ||
empty( $data['debug_tool'] )
) {
$message = __( 'Invalid request.', 'woocommerce-pdf-invoices-packing-slips' );
wcpdf_log_error( $message );
wp_send_json_error( compact( 'message' ) );
}
$debug_tool = sanitize_key( $data['debug_tool'] );
if ( is_callable( array( $this, $debug_tool ) ) ) {
call_user_func_array( array( $this, $debug_tool ), array( $data ) );
} else {
$message = __( 'Debug tool is not available.', 'woocommerce-pdf-invoices-packing-slips' );
wcpdf_log_error( $message );
wp_send_json_error( compact( 'message' ) );
}
wp_die();
}
/**
* Export settings to JSON file.
*
* @param array $data
* @return void
*/
private function export_settings( array $data ): void {
extract( $data );
if ( empty( $type ) ) {
$message = __( 'Export settings type is empty!', 'woocommerce-pdf-invoices-packing-slips' );
wcpdf_log_error( $message );
wp_send_json_error( compact( 'message' ) );
}
$settings = [];
switch ( $type ) {
case 'general':
$settings = WPO_WCPDF()->settings->general_settings;
break;
case 'debug':
$settings = WPO_WCPDF()->settings->debug_settings;
break;
case 'edi':
$settings = WPO_WCPDF()->settings->edi_settings;
break;
case 'edi_tax':
$settings = wpo_ips_edi_get_tax_settings();
break;
default:
$settings = apply_filters( 'wpo_wcpdf_export_settings', $settings, $type );
break;
}
// maybe it's a document type settings request
if ( empty( $settings ) ) {
$documents = WPO_WCPDF()->documents->get_documents( 'all' );
foreach ( $documents as $document ) {
$document_type = $document->get_type();
if ( $document_type === substr( $type, 0, strlen( $document_type ) ) ) {
$settings = get_option( "wpo_wcpdf_documents_settings_{$type}", [] );
break;
}
}
if ( empty( $settings ) ) {
$message = __( 'Exported settings data is empty!', 'woocommerce-pdf-invoices-packing-slips' );
wcpdf_log_error( $message );
wp_send_json_error( compact( 'message' ) );
}
}
$filename = apply_filters( 'wpo_wcpdf_export_settings_filename', sprintf( "{$type}-settings-export_%s.json", gmdate( 'Y-m-d_H-i-s' ) ), $type );
wp_send_json_success( compact( 'filename', 'settings' ) );
}
/**
* Import settings from uploaded JSON file.
*
* @param array $data
* @return void
*/
private function import_settings( array $data ): void {
extract( $data );
$file_data = array();
if ( ! empty( $_FILES['file']['tmp_name'] ) && ! empty( $_FILES['file']['name'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Missing
$json_data = WPO_WCPDF()->file_system->get_contents( $_FILES['file']['tmp_name'] ); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized, WordPress.Security.NonceVerification.Missing
if ( ! $json_data ) {
$message = __( 'Failed to get contents from JSON file!', 'woocommerce-pdf-invoices-packing-slips' );
wcpdf_log_error( $message );
wp_send_json_error( compact( 'message' ) );
} else {
$file_data = json_decode( $json_data, true );
}
} else {
$message = __( 'JSON file not found!', 'woocommerce-pdf-invoices-packing-slips' );
wcpdf_log_error( $message );
wp_send_json_error( compact( 'message' ) );
}
if ( empty( $file_data ) || empty( $file_data['type'] ) || empty( $file_data['settings'] ) || ! is_array( $file_data['settings'] ) ) {
$message = __( 'The JSON file data is corrupted!', 'woocommerce-pdf-invoices-packing-slips' );
wcpdf_log_error( $message );
wp_send_json_error( compact( 'message' ) );
}
$setting_types = $this->get_setting_types();
$type = sanitize_key( $file_data['type'] );
$new_settings = stripslashes_deep( $file_data['settings'] );
$settings_option = '';
if ( ! in_array( $type, array_keys( $setting_types ) ) ) {
$message = __( 'The JSON file settings type is not supported on this store!', 'woocommerce-pdf-invoices-packing-slips' );
wcpdf_log_error( $message );
wp_send_json_error( compact( 'message' ) );
}
if ( in_array( $type, array( 'general', 'debug' ), true ) ) {
$settings_option = "wpo_wcpdf_settings_{$type}";
} elseif ( in_array( $type, array( 'edi', 'edi_tax' ), true ) ) {
$settings_option = "wpo_ips_{$type}_settings";
} else {
$documents = WPO_WCPDF()->documents->get_documents( 'all' );
foreach ( $documents as $document ) {
$document_type = $document->get_type();
if ( $document_type === substr( $type, 0, strlen( $document_type ) ) ) {
$settings_option = "wpo_wcpdf_documents_settings_{$type}";
break;
}
}
}
// used for extension settings
$settings_option = apply_filters( 'wpo_wcpdf_import_settings_option', $settings_option, $type, $new_settings );
if ( empty( $settings_option ) ) {
$message = __( "Couldn't determine the settings option for the import!", 'woocommerce-pdf-invoices-packing-slips' );
wcpdf_log_error( $message );
wp_send_json_error( compact( 'message' ) );
}
$updated = update_option( $settings_option, $new_settings );
if ( $updated ) {
$message = sprintf(
/* translators: settings type */
__( '%s settings imported successfully!', 'woocommerce-pdf-invoices-packing-slips' ),
$setting_types[$type]
);
wcpdf_log_error( $message, 'info' );
wp_send_json_success( compact( 'type', 'message' ) );
} else {
$message = sprintf(
/* translators: settings type */
__( 'The %s settings file you are trying to import is identical to your current settings, therefore, the settings were not imported.', 'woocommerce-pdf-invoices-packing-slips' ),
$setting_types[$type]
);
wcpdf_log_error( $message );
wp_send_json_error( compact( 'message' ) );
}
}
/**
* Reset settings to defaults.
*
* @param array $data
* @return void
*/
private function reset_settings( array $data ): void {
extract( $data );
if ( empty( $type ) ) {
$message = __( 'Reset settings type is empty!', 'woocommerce-pdf-invoices-packing-slips' );
wcpdf_log_error( $message );
wp_send_json_error( compact( 'message' ) );
}
$settings_option = '';
switch ( $type ) {
case 'general':
$settings_option = 'wpo_wcpdf_settings_general';
break;
case 'debug':
$settings_option = 'wpo_wcpdf_settings_debug';
break;
case 'edi':
$settings_option = 'wpo_ips_edi_settings';
break;
case 'edi_tax':
$settings_option = 'wpo_ips_edi_tax_settings';
break;
default:
$settings_option = apply_filters( 'wpo_wcpdf_reset_settings_option', $settings_option, $type );
break;
}
// maybe it's a document type settings request
if ( empty( $settings_option ) ) {
$documents = WPO_WCPDF()->documents->get_documents( 'all' );
foreach ( $documents as $document ) {
$document_type = $document->get_type();
if ( $document_type === substr( $type, 0, strlen( $document_type ) ) ) {
$settings_option = "wpo_wcpdf_documents_settings_{$type}";
break;
}
}
if ( empty( $settings_option ) ) {
$message = sprintf(
/* translators: settings type */
__( '%s settings reset not supported!', 'woocommerce-pdf-invoices-packing-slips' ),
$type
);
wcpdf_log_error( $message );
wp_send_json_error( compact( 'message' ) );
}
}
// settings already reset
$current_settings = get_option( $settings_option, array() );
if ( empty( $current_settings ) ) {
$message = sprintf(
/* translators: settings type */
__( '%s settings are already reset!', 'woocommerce-pdf-invoices-packing-slips' ),
$type
);
wcpdf_log_error( $message, 'info' );
wp_send_json_success( compact( 'type', 'message' ) );
}
// reset settings
$updated = update_option( $settings_option, array() );
if ( $updated ) {
$message = sprintf(
/* translators: settings type */
__( '%s settings reset successfully!', 'woocommerce-pdf-invoices-packing-slips' ),
$type
);
wcpdf_log_error( $message, 'info' );
wp_send_json_success( compact( 'type', 'message' ) );
} else {
$message = sprintf(
/* translators: settings type */
__( 'An error occurred when trying to reset the %s settings.', 'woocommerce-pdf-invoices-packing-slips' ),
$type
);
wcpdf_log_error( $message );
wp_send_json_error( compact( 'message' ) );
}
}
/**
* AJAX handler for processing danger zone tools.
*
* @return void
*/
public function ajax_process_danger_zone_tools(): void {
if ( ! \WPO_WCPDF()->settings->user_can_manage_settings() ) {
$message = __( 'You are not allowed to perform this action.', 'woocommerce-pdf-invoices-packing-slips' );
wp_send_json_error( compact( 'message' ) );
}
check_ajax_referer( 'wpo_wcpdf_debug_nonce', 'nonce' );
$request = stripslashes_deep( $_POST );
if ( ! isset( $request['document_type'] ) || ! isset( $request['date_from'] ) || ! isset( $request['date_to'] ) ) {
$message = __( 'One or more request parameters missing.', 'woocommerce-pdf-invoices-packing-slips' );
wp_send_json_error( compact( 'message' ) );
}
$from_date = strtotime( $request['date_from'] . ' 00:00:00' );
$to_date = strtotime( $request['date_to'] . ' 23:59:59' );
$document_type = esc_attr( $request['document_type'] );
$document_types = ! empty( $document_type ) && ( 'all' !== $document_type ) ? array( $document_type ) : array();
$document_title = ! empty( $document_type ) && ( 'all' !== $document_type ) ? ucwords( str_replace( '-', ' ', $document_type ) ) . ' ' : ' ';
$page_count = isset( $request['page_count'] ) ? absint( $request['page_count'] ) : 1;
$document_count = isset( $request['document_count'] ) ? absint( $request['document_count'] ) : 0;
$delete_or_renumber = isset( $request['delete_or_renumber'] ) ? esc_attr( $request['delete_or_renumber'] ) : false;
$message = ( 'delete' === $delete_or_renumber ) ? ' ' . $document_title . __( 'documents deleted.', 'woocommerce-pdf-invoices-packing-slips' ) : ' ' . $document_title . __( 'documents renumbered.', 'woocommerce-pdf-invoices-packing-slips' );
$finished = false;
$args = array(
'return' => 'ids',
'type' => 'shop_order',
'limit' => -1,
'order' => 'ASC',
'paginate' => true,
'posts_per_page' => 50,
'page' => $page_count,
);
$date_type = isset( $request['date_type'] ) ? esc_attr( $request['date_type'] ) : '';
$wc_date_types = array(
'date_created',
'date_modified',
'date_completed',
'date_paid',
);
if ( in_array( $date_type, $wc_date_types ) ) {
$date_arg = $date_type;
} elseif ( 'document_date' === $date_type ) {
$document_slug = ! empty( $document_type ) ? str_replace( '-', '_', $document_type ) : '';
$date_arg = "wcpdf_{$document_slug}_date";
} else {
$date_arg = '';
}
if ( empty( $date_arg ) ) {
$message = __( 'Wrong date type selected.', 'woocommerce-pdf-invoices-packing-slips' );
wp_send_json_error( compact( 'message' ) );
}
$args[ $date_arg ] = $from_date . '...' . $to_date;
if ( defined( 'WC_VERSION' ) && version_compare( WC_VERSION, '6.8.0', '>=' ) && WPO_WCPDF()->order_util->custom_orders_table_usage_is_enabled() ) { // Woo >= 6.8.0 + HPOS
$args = wpo_wcpdf_parse_document_date_for_wp_query( $args, $args );
} else {
add_filter( 'woocommerce_order_data_store_cpt_get_orders_query', 'wpo_wcpdf_parse_document_date_for_wp_query', 10, 2 );
}
$results = wc_get_orders( $args );
remove_filter( 'woocommerce_order_data_store_cpt_get_orders_query', 'wpo_wcpdf_parse_document_date_for_wp_query', 10, 2 );
if ( ! is_object( $results ) ) {
$message = __( 'Unexpected results from the orders query.', 'woocommerce-pdf-invoices-packing-slips' );
wp_send_json_error( compact( 'message' ) );
}
$order_ids = $results->orders;
if ( ! empty( $order_ids ) && ! empty( $document_type ) && $delete_or_renumber ) {
foreach ( $order_ids as $order_id ) {
$order = wc_get_order( $order_id );
if ( empty( $order ) ) {
continue;
}
if ( 'all' === $document_type ) {
$documents = WPO_WCPDF()->documents->get_documents( 'all' );
if ( is_array( $documents ) ) {
foreach ( $documents as $document ) {
$document_types[] = $document->get_type();
}
}
}
if ( ! empty( $document_types ) ) {
foreach ( $document_types as $type ) {
if ( 'credit-note' === $type && function_exists( 'WPO_WCPDF_Pro' ) ) {
remove_filter( 'wpo_wcpdf_document_is_allowed', array( WPO_WCPDF_Pro()->functions, 'is_pro_document_allowed' ), 2, 2 );
}
$document = wcpdf_get_document( $type, $order );
if ( 'credit-note' === $type && function_exists( 'WPO_WCPDF_Pro' ) ) {
add_filter( 'wpo_wcpdf_document_is_allowed', array( WPO_WCPDF_Pro()->functions, 'is_pro_document_allowed' ), 2, 2 );
}
if ( ! is_object( $document ) ) {
continue;
}
$return = $this->renumber_or_delete_document( $document, $delete_or_renumber );
if ( $return ) {
$document_count++;
}
}
}
}
$page_count++;
// no more order IDs
} else {
$finished = true;
}
$response = array(
'finished' => $finished,
'pageCount' => $page_count,
'documentCount' => $document_count,
'message' => $message,
);
wp_send_json_success( $response );
}
private function renumber_or_delete_document( $document, $delete_or_renumber ) {
$return = false;
if ( $document && $document->exists() ) {
switch ( $delete_or_renumber ) {
case 'renumber':
if ( is_callable( array( $document, 'initiate_number' ) ) ) {
$document->initiate_number( true );
$return = true;
} elseif ( is_callable( array( $document, 'init_number' ) ) ) {
$document->init_number();
$return = true;
}
if ( $return ) {
$document->save();
}
break;
case 'delete':
if ( is_callable( array( $document, 'delete' ) ) ) {
$document->delete();
$return = true;
}
break;
}
}
return $return;
}
/**
* Get the available setting types.
*
* @return array
*/
public function get_setting_types(): array {
$setting_types = array(
'general' => __( 'General', 'woocommerce-pdf-invoices-packing-slips' ),
'debug' => __( 'Debug', 'woocommerce-pdf-invoices-packing-slips' ),
'edi' => __( 'E-Documents', 'woocommerce-pdf-invoices-packing-slips' ),
'edi_tax' => __( 'E-Document Taxes', 'woocommerce-pdf-invoices-packing-slips' ),
);
$documents = WPO_WCPDF()->documents->get_documents( 'all' );
foreach ( $documents as $document ) {
$document_title = $document->get_title();
if ( $document->title !== $document_title ) {
$title = $document->title . ' (' . $document_title . ')';
} else {
$title = $document_title;
}
$setting_types[ $document->get_type() ] = $title;
}
return apply_filters( 'wpo_wcpdf_setting_types', $setting_types );
}
public function init_settings() {
// Register settings.
$page = $option_group = $option_name = 'wpo_wcpdf_settings_debug';
$settings_fields = array(
array(
'type' => 'section',
'id' => 'debug_settings',
'title' => '',
'callback' => 'section',
),
array(
'type' => 'setting',
'id' => 'file_system_method',
'title' => __( 'File System Method', 'woocommerce-pdf-invoices-packing-slips' ),
'callback' => 'select',
'section' => 'debug_settings',
'args' => array(
'option_name' => $option_name,
'id' => 'file_system_method',
'default' => 'php',
'options' => array(
'php' => __( 'PHP Filesystem Functions (recommended)', 'woocommerce-pdf-invoices-packing-slips' ),
'wp' => __( 'WP Filesystem API', 'woocommerce-pdf-invoices-packing-slips' ),
),
'description' => sprintf(
/* translators: 1. PHP Filesystem Functions, 2. WP Filesystem API, 3. direct */
__( 'Choose the filesystem method for file operations. By default, our plugin uses %1$s. If you prefer to use the %2$s, please note that only the %3$s method is supported.', 'woocommerce-pdf-invoices-packing-slips' ),
'<code>' . __( 'PHP Filesystem Functions', 'woocommerce-pdf-invoices-packing-slips' ) . '</code>',
'<code>' . __( 'WP Filesystem API', 'woocommerce-pdf-invoices-packing-slips' ) . '</code>',
'<code>direct</code>'
) . ( has_filter( 'wpo_wcpdf_filesystem_method' )
? '<div class="notice notice-warning inline"><p><strong>' . __( 'Warning:', 'woocommerce-pdf-invoices-packing-slips' ) . '</strong> ' . __( 'A code snippet is overriding this setting.', 'woocommerce-pdf-invoices-packing-slips' ) . '</p></div>'
: ''
),
)
),
array(
'type' => 'setting',
'id' => 'document_link_access_type',
'title' => __( 'Document link access type', 'woocommerce-pdf-invoices-packing-slips' ),
'callback' => 'select',
'section' => 'debug_settings',
'args' => array(
'option_name' => $option_name,
'id' => 'document_link_access_type',
'default' => 'logged_in',
'options' => array(
'logged_in' => __( 'Logged in (recommended)', 'woocommerce-pdf-invoices-packing-slips' ),
'full' => __( 'Full', 'woocommerce-pdf-invoices-packing-slips' ),
),
)
),
array(
'type' => 'setting',
'id' => 'document_link_access_type_table',
'title' => '',
'callback' => array( $this, 'document_link_access_type_table' ),
'section' => 'debug_settings',
'args' => array(
'option_name' => $option_name,
),
),
array(
'type' => 'setting',
'id' => 'document_access_denied_redirect_page',
'title' => __( 'Document access denied redirect page', 'woocommerce-pdf-invoices-packing-slips' ),
'callback' => 'select',
'section' => 'debug_settings',
'args' => array(
'option_name' => $option_name,
'id' => 'document_access_denied_redirect_page',
'default' => 'blank',
'options' => array(
'blank_page' => __( 'Blank page with message (default)', 'woocommerce-pdf-invoices-packing-slips' ),
'login_page' => __( 'Login page', 'woocommerce-pdf-invoices-packing-slips' ),
'myaccount_page' => __( 'My Account page', 'woocommerce-pdf-invoices-packing-slips' ),
'custom_page' => __( 'Custom page (enter below)', 'woocommerce-pdf-invoices-packing-slips' ),
),
'description' => __( 'Select a frontend page to be used to redirect users when the document access is denied.', 'woocommerce-pdf-invoices-packing-slips' ),
)
),
array(
'type' => 'setting',
'id' => 'document_custom_redirect_page',
'title' => '',
'callback' => 'url_input',
'section' => 'debug_settings',
'args' => array(
'option_name' => $option_name,
'id' => 'document_custom_redirect_page',
'placeholder' => esc_url_raw( wc_get_page_permalink( 'shop' ) ),
'description' => __( 'Custom external URLs not allowed.', 'woocommerce-pdf-invoices-packing-slips' ),
)
),
array(
'type' => 'setting',
'id' => 'pretty_document_links',
'title' => __( 'Pretty document links', 'woocommerce-pdf-invoices-packing-slips' ),
'callback' => 'checkbox',
'section' => 'debug_settings',
'args' => array(
'option_name' => $option_name,
'id' => 'pretty_document_links',
'description' =>
__( 'Changes the document links to a prettier URL scheme.', 'woocommerce-pdf-invoices-packing-slips' ) .
'<br>' .
'<strong>' . __( 'Note', 'woocommerce-pdf-invoices-packing-slips' ) . '</strong>: ' . sprintf(
/* translators: 1. Permalinks type, 2. Setting link, 3. Documentation link */
__( 'Pretty document links will not work when the %1$s is set to %2$s.', 'woocommerce-pdf-invoices-packing-slips' ),
'<a href="' . esc_url( admin_url( 'options-permalink.php' ) ) . '" target="_blank" rel="noopener noreferrer">' . __( 'permalink setting', 'woocommerce-pdf-invoices-packing-slips' ) . '</a>',
'<code>' . __( 'Plain', 'woocommerce-pdf-invoices-packing-slips' ) . '</code>',
) .
' '. '<a href="https://docs.wpovernight.com/woocommerce-pdf-invoices-packing-slips/document-pretty-link-incompatibility-with-plain-permalinks-structure/" target="_blank">' . __( 'Learn more', 'woocommerce-pdf-invoices-packing-slips' ) . '</a>'
),
),
array(
'type' => 'setting',
'id' => 'calculate_document_numbers',
'title' => __( 'Calculate document numbers (slow)', 'woocommerce-pdf-invoices-packing-slips' ),
'callback' => 'checkbox',
'section' => 'debug_settings',
'args' => array(
'option_name' => $option_name,
'id' => 'calculate_document_numbers',
'description' => sprintf(
/* translators: 1. AUTO_INCREMENT, 2. one */
__( 'Document numbers (such as invoice numbers) are generated using %1$s by default. Use this setting if your database auto increments with more than %2$s.', 'woocommerce-pdf-invoices-packing-slips' ),
'<code>AUTO_INCREMENT</code>',
'<code>1</code>'
),
)
),
array(
'type' => 'setting',
'id' => 'enable_document_data_editing',
'title' => __( 'Enable document data editing', 'woocommerce-pdf-invoices-packing-slips' ),
'callback' => 'checkbox',
'section' => 'debug_settings',
'args' => array(
'option_name' => $option_name,
'id' => 'enable_document_data_editing',
'description' => __( 'Allow editing of document number and date on the order page.', 'woocommerce-pdf-invoices-packing-slips' ) . '<br>' .
'<strong>' . __( 'Note', 'woocommerce-pdf-invoices-packing-slips' ) . '</strong>: ' . sprintf(
/* translators: %s: document types */
__( 'Changing document data is prohibited in some countries. This setting is disabled by default to comply with legal requirements. Only the following document types are affected: %s.', 'woocommerce-pdf-invoices-packing-slips' ),
'<code>' . __( 'Invoice', 'woocommerce-pdf-invoices-packing-slips' ) . '</code>' . ( function_exists( 'WPO_WCPDF_Pro' ) ? ', <code>' . __( 'Credit Note', 'woocommerce-pdf-invoices-packing-slips' ) . '</code>' : '' )
),
)
),
array(
'type' => 'setting',
'id' => 'default_manual_document_number',
'title' => '',
'callback' => 'select',
'section' => 'debug_settings',
'args' => array(
'title' => __( 'Default manual document number', 'woocommerce-pdf-invoices-packing-slips' ),
'option_name' => $option_name,
'id' => 'default_manual_document_number',
'default' => 'zero',
'options' => array(
'zero' => __( '0 (zero)', 'woocommerce-pdf-invoices-packing-slips' ),
'next_document_number' => __( 'Next document number', 'woocommerce-pdf-invoices-packing-slips' ),
),
'description' => __( 'Select the default value for the document number field in the "PDF document data" meta box when manually creating a new document.', 'woocommerce-pdf-invoices-packing-slips' ),
'custom_attributes' => array(
'data-show_for_option_name' => $option_name . '[enable_document_data_editing]',
'data-show_for_option_values' => json_encode( array( 'yes' ) ),
),
)
),
array(
'type' => 'setting',
'id' => 'enable_cleanup',
'title' => __( 'Enable automatic cleanup', 'woocommerce-pdf-invoices-packing-slips' ),
'callback' => 'checkbox_text_input',
'section' => 'debug_settings',
'args' => array(
'option_name' => $option_name,
'id' => 'enable_cleanup',
/* translators: number of days */
'text_input_wrap' => __( "every %s days", 'woocommerce-pdf-invoices-packing-slips' ),
'text_input_size' => 4,
'text_input_id' => 'cleanup_days',
'text_input_default' => 7,
'description' => __( 'Automatically clean up PDF files stored in the temporary folder (used for email attachments), and remove old document locks that prevent conflicts when generating document numbers.', 'woocommerce-pdf-invoices-packing-slips' ),
)
),
array(
'type' => 'setting',
'id' => 'html_output',
'title' => __( 'Output to HTML', 'woocommerce-pdf-invoices-packing-slips' ),
'callback' => 'checkbox',
'section' => 'debug_settings',
'args' => array(
'option_name' => $option_name,
'id' => 'html_output',
'description' => __( 'Send the template output as HTML to the browser instead of creating a PDF.', 'woocommerce-pdf-invoices-packing-slips' ) . ' ' .
__( 'You can also add <code>&output=html</code> to the URL to apply this on a per-order basis.', 'woocommerce-pdf-invoices-packing-slips' ),
)
),
array(
'type' => 'setting',
'id' => 'embed_images',
'title' => __( 'Embed Images', 'woocommerce-pdf-invoices-packing-slips' ),
'callback' => 'checkbox',
'section' => 'debug_settings',
'args' => array(
'option_name' => $option_name,
'id' => 'embed_images',
'description' => __( 'Embed images only if you are experiencing issues with them loading in your PDF. Please note that this option can significantly increase the file size.', 'woocommerce-pdf-invoices-packing-slips' ),
)
),
array(
'type' => 'setting',
'id' => 'reload_attachment_translations',
'title' => __( 'Reload translations for attachments', 'woocommerce-pdf-invoices-packing-slips' ),
'callback' => 'checkbox',
'section' => 'debug_settings',
'args' => array(
'option_name' => $option_name,
'id' => 'reload_attachment_translations',
'description' => __( 'If enabled, the plugin will reload translations when generating documents for email attachments. Disable this if you are experiencing incomplete or incorrect translations in the attached PDFs.', 'woocommerce-pdf-invoices-packing-slips' ),
)
),
array(
'type' => 'setting',
'id' => 'disable_preview',
'title' => __( 'Disable document preview', 'woocommerce-pdf-invoices-packing-slips' ),
'callback' => 'checkbox',
'section' => 'debug_settings',
'args' => array(
'option_name' => $option_name,
'id' => 'disable_preview',
'description' => __( 'Disables the document preview on the plugin settings pages.', 'woocommerce-pdf-invoices-packing-slips' ),
)
),
array(
'type' => 'setting',
'id' => 'check_unstable_versions',
'title' => __( 'Check for unstable versions', 'woocommerce-pdf-invoices-packing-slips' ),
'callback' => 'checkbox',
'section' => 'debug_settings',
'args' => array(
'option_name' => $option_name,
'id' => 'check_unstable_versions',
'description' => sprintf(
/* translators: %1$s: open status page link anchor, %2$s: close status page link anchor */
__( 'Enable this to check for new beta or pre-release versions and display them in the %1$sstatus page%2$s. A notice will appear when a new version is available.', 'woocommerce-pdf-invoices-packing-slips' ),
'<a href="' . esc_url( admin_url( 'admin.php?page=wpo_wcpdf_options_page&tab=debug&section=status' ) ) . '">',
'</a>'
),
)
),
array(
'type' => 'setting',
'id' => 'enable_debug',
'title' => __( 'Enable debug output', 'woocommerce-pdf-invoices-packing-slips' ),
'callback' => 'checkbox',
'section' => 'debug_settings',
'args' => array(
'option_name' => $option_name,
'id' => 'enable_debug',
'description' => ( function () {
$default_class = '\\WPO\\IPS\\Makers\\PDFMaker';
$filtered_class = apply_filters( 'wpo_wcpdf_pdf_maker', $default_class );
$log_url = str_replace(
WP_CONTENT_DIR,
content_url(),
WPO_WCPDF()->main->get_tmp_path( 'dompdf' ) . '/log.htm'
);
return implode( '<br>', array(
__( "Enable this option to output plugin errors if you're getting a blank page or other PDF generation issues.", 'woocommerce-pdf-invoices-packing-slips' ),
__( '<b>Caution!</b> This setting may reveal errors (from other plugins) in other places on your site too, therefore this is not recommended to leave it enabled on live sites.', 'woocommerce-pdf-invoices-packing-slips' ),
sprintf(
/* translators: %s: &debug=true */
__( 'You can also add %s to the URL to apply this on a per-order basis.', 'woocommerce-pdf-invoices-packing-slips' ),
'<code>&debug=true</code>'
),
( $filtered_class === $default_class ) ? sprintf(
/* translators: %s: log.htm link */
__( 'When enabled, Dompdf logs will be saved to %s.', 'woocommerce-pdf-invoices-packing-slips' ),
'<a href="' . esc_url( $log_url ) . '" target="_blank" rel="noopener noreferrer">log.htm</a>'
) : '',
) );
} )(),
),
),
array(
'type' => 'setting',
'id' => 'log_to_order_notes',
'title' => __( 'Log to order notes', 'woocommerce-pdf-invoices-packing-slips' ),
'callback' => 'checkbox',
'section' => 'debug_settings',
'args' => array(
'option_name' => $option_name,
'id' => 'log_to_order_notes',
'description' => __( 'Log PDF document creation, deletion, and mark/unmark as printed to order notes.', 'woocommerce-pdf-invoices-packing-slips' ),
)
),
array(
'type' => 'setting',
'id' => 'log_missing_translations',
'title' => __( 'Log missing translations', 'woocommerce-pdf-invoices-packing-slips' ),
'callback' => 'checkbox',
'section' => 'debug_settings',
'args' => array(
'option_name' => $option_name,
'id' => 'log_missing_translations',
'description' => __( 'Enable this option to log dynamic strings that could not be translated. This can help you identify which strings need to be registered for translation.', 'woocommerce-pdf-invoices-packing-slips' ),
)
),
array(
'type' => 'setting',
'id' => 'semaphore_logs',
'title' => __( 'Enable semaphore logs', 'woocommerce-pdf-invoices-packing-slips' ),
'callback' => 'checkbox',
'section' => 'debug_settings',
'args' => array(
'option_name' => $option_name,
'id' => 'semaphore_logs',
'description' => __( 'Our plugin uses a semaphore class that prevents race conditions in multiple places in the code. Enable this setting only if you are having issues with document numbers, yearly reset or documents being assigned to the wrong order.', 'woocommerce-pdf-invoices-packing-slips' ),
)
),
array(
'type' => 'setting',
'id' => 'enable_danger_zone_tools',
'title' => __( 'Enable danger zone tools', 'woocommerce-pdf-invoices-packing-slips' ),
'callback' => 'checkbox',
'section' => 'debug_settings',
'args' => array(
'option_name' => $option_name,
'id' => 'enable_danger_zone_tools',
'description' => __( 'Enables the danger zone tools. The actions performed by these tools are irreversible!', 'woocommerce-pdf-invoices-packing-slips' ),
)
),
);
// allow plugins to alter settings fields
$settings_fields = apply_filters( 'wpo_wcpdf_settings_fields_debug', $settings_fields, $page, $option_group, $option_name );
WPO_WCPDF()->settings->add_settings_fields( $settings_fields, $page, $option_group, $option_name );
return;
}
public function document_link_access_type_table() {
?>
<table id="document-link-access-type">
<tr>
<td class="option"><strong><?php esc_html_e( 'Logged in', 'woocommerce-pdf-invoices-packing-slips' ); ?></strong></td>
<td><?php esc_html_e( 'Document can be accessed by logged in users only.', 'woocommerce-pdf-invoices-packing-slips' ); ?></td>
</tr>
<tr>
<td class="option"><strong><?php esc_html_e( 'Full', 'woocommerce-pdf-invoices-packing-slips' ); ?></strong></td>
<td><?php esc_html_e( 'Document can be accessed by everyone with the link.', 'woocommerce-pdf-invoices-packing-slips' ); ?></td>
</tr>
</table>
<?php
}
/**
* Get the server configuration.
*
* @return array
*/
public function get_server_config(): array {
$debug_settings = WPO_WCPDF()->settings->debug_settings;
$filesystem_method = apply_filters( 'wpo_wcpdf_filesystem_method', $debug_settings['file_system_method'] ?? 'wp' );
$filesystem_method = 'wp' === $filesystem_method && function_exists( 'get_filesystem_method' ) ? get_filesystem_method() : $filesystem_method;
// WP + Woo
$wp_version = get_bloginfo( 'version' );
$woo_version = defined( 'WC_VERSION' ) ? WC_VERSION : null;
$woo_hpos_enabled = WPO_WCPDF()->order_util->custom_orders_table_usage_is_enabled();
$memory_limit = function_exists( 'wc_let_to_num' ) ? wc_let_to_num( WP_MEMORY_LIMIT ) : woocommerce_let_to_num( WP_MEMORY_LIMIT );
$php_mem_limit = function_exists( 'memory_get_usage' ) ? @ini_get( 'memory_limit' ) : '-';
$gmagick = extension_loaded( 'gmagick' );
$imagick = extension_loaded( 'imagick' );
$xc = extension_loaded( 'xcache' );
$apc = extension_loaded( 'apc' );
$zop = extension_loaded( 'Zend OPcache' );
$op = extension_loaded( 'opcache' );
$dom = extension_loaded( 'DOM' );
$mbstring = extension_loaded( 'mbstring' );
$gd = extension_loaded( 'gd' );
$zlib = extension_loaded( 'zlib' );
$fileinfo = extension_loaded( 'fileinfo' );
// Database
$db_details = $this->get_database_details();
$database_value = $db_details['type'] ?? __( 'Unknown', 'woocommerce-pdf-invoices-packing-slips' );
if ( ! empty( $db_details['version'] ) ) {
$database_value .= ' ' . $db_details['version'];
}
$server_configs = array(
'WordPress version' => array(
'required' => sprintf(
/* translators: %s dependency min version */
__( '%s or superior', 'woocommerce-pdf-invoices-packing-slips' ),
WPO_WCPDF()->version_wp
),
'value' => $wp_version,
'result' => WPO_WCPDF()->is_dependency_version_supported( 'wp' ),
),
'WooCommerce version' => array(
'required' => sprintf(
/* translators: %s dependency min version */
__( '%s or superior', 'woocommerce-pdf-invoices-packing-slips' ),
WPO_WCPDF()->version_woo
),
'value' => $woo_version,
'result' => WPO_WCPDF()->is_dependency_version_supported( 'woo' ),
),
'WooCommerce HPOS' => array(
'required' => __( 'Recommended', 'woocommerce-pdf-invoices-packing-slips' ),
'value' => $woo_hpos_enabled ? __( 'Enabled', 'woocommerce-pdf-invoices-packing-slips' ) : __( 'Disabled', 'woocommerce-pdf-invoices-packing-slips' ),
'result' => true,
),
'PHP version' => array(
'required' => sprintf(
/* translators: %s dependency min version */
__( '%s or superior', 'woocommerce-pdf-invoices-packing-slips' ),
WPO_WCPDF()->version_php
),
'value' => PHP_VERSION,
'result' => WPO_WCPDF()->is_dependency_version_supported( 'php' ),
),
'Database' => array(
'required' => __( 'MySQL, MariaDB, or SQLite', 'woocommerce-pdf-invoices-packing-slips' ),
'value' => $database_value,
'result' => ! empty( $db_details['type'] ),
'fallback' => __( 'Unable to detect the database server', 'woocommerce-pdf-invoices-packing-slips' ),
),
'DOMDocument extension' => array(
'required' => true,
'value' => phpversion( 'DOM' ),
'result' => $dom,
),
'MBString extension' => array(
'required' => true,
'value' => phpversion( 'mbstring' ),
'result' => $mbstring,
'fallback' => __( 'Recommended, will use fallback functions', 'woocommerce-pdf-invoices-packing-slips' ),
),
'GD' => array(
'required' => true,
'value' => phpversion( 'gd' ),
'result' => $gd,
'fallback' => __( 'Required if you have images in your documents', 'woocommerce-pdf-invoices-packing-slips' ),
),
'WebP Support' => array(
'required' => __( 'Required when using .webp images', 'woocommerce-pdf-invoices-packing-slips' ),
'value' => null,
'result' => function_exists( 'imagecreatefromwebp' ),
'fallback' => __( 'Required if you have .webp images in your documents', 'woocommerce-pdf-invoices-packing-slips' ),
),
'Zlib' => array(
'required' => __( 'To compress PDF documents', 'woocommerce-pdf-invoices-packing-slips' ),
'value' => phpversion( 'zlib' ),
'result' => $zlib,
'fallback' => __( 'Recommended to compress PDF documents', 'woocommerce-pdf-invoices-packing-slips' ),
),
'opcache' => array(
'required' => __( 'For better performances', 'woocommerce-pdf-invoices-packing-slips' ),
'value' => null,
'result' => false,
'fallback' => __( 'Recommended for better performances', 'woocommerce-pdf-invoices-packing-slips' ),
),
'GMagick or IMagick' => array(
'required' => __( 'Better with transparent PNG images', 'woocommerce-pdf-invoices-packing-slips' ),
'value' => $imagick ? 'IMagick ' . phpversion( 'imagick' ) : ( $gmagick ? 'GMagick ' . phpversion( 'gmagick' ) : null ),
'result' => $gmagick || $imagick,
'fallback' => __( 'Recommended for better performances', 'woocommerce-pdf-invoices-packing-slips' ),
),
'glob()' => array(
'required' => __( 'Required to detect custom templates and to clear the temp folder periodically', 'woocommerce-pdf-invoices-packing-slips' ),
'value' => null,
'result' => function_exists( 'glob' ),
'fallback' => __( 'Check PHP disable_functions', 'woocommerce-pdf-invoices-packing-slips' ),
),
'WP Memory Limit' => array(
/* translators: <a> tags */
'required' => __( 'Recommended: 128MB (especially for plugin-heavy setups)', 'woocommerce-pdf-invoices-packing-slips' ) . '<br/>' . sprintf(
/* translators: 1: opening anchor tag, 2: closing anchor tag */
__( 'See: %1$sIncreasing the WordPress Memory Limit%2$s', 'woocommerce-pdf-invoices-packing-slips' ),
'<a href="https://docs.woocommerce.com/document/increasing-the-wordpress-memory-limit/" target="_blank">',
'</a>'
),
'value' => sprintf( 'WordPress: %s, PHP: %s', WP_MEMORY_LIMIT, $php_mem_limit ),
'result' => $memory_limit > 67108864,
),
'WP Filesystem Method' => array(
'required' => __( 'Required to save documents to the server', 'woocommerce-pdf-invoices-packing-slips' ),
'value' => $filesystem_method,
'result' => in_array( $filesystem_method, array( 'direct', 'php' ) ),
'fallback' => __( 'Check your server configuration', 'woocommerce-pdf-invoices-packing-slips' ),
),
'allow_url_fopen' => array (
'required' => __( 'Allow remote stylesheets and images', 'woocommerce-pdf-invoices-packing-slips' ),
'value' => null,
'result' => (bool) ini_get( 'allow_url_fopen' ),
'fallback' => __( 'allow_url_fopen disabled', 'woocommerce-pdf-invoices-packing-slips' ),
),
'fileinfo' => array (
'required' => __( 'Necessary to verify the MIME type of local images.', 'woocommerce-pdf-invoices-packing-slips' ),
'value' => null,
'result' => $fileinfo,
'fallback' => __( 'fileinfo disabled', 'woocommerce-pdf-invoices-packing-slips' ),
),
'base64_decode' => array (
'required' => __( 'To compress and decompress font and image data', 'woocommerce-pdf-invoices-packing-slips' ),
'value' => null,
'result' => function_exists( 'base64_decode' ),
'fallback' => __( 'base64_decode disabled', 'woocommerce-pdf-invoices-packing-slips' ),
),
);
if ( $imagick ) {
$gmagick_imagick_position = array_search( 'GMagick or IMagick', array_keys( $server_configs ) ) + 1;
$image_magick_config = array(
'ImageMagick' => array(
'required' => __( 'Required for IMagick', 'woocommerce-pdf-invoices-packing-slips' ),
'value' => ( $imagick && class_exists( '\\Imagick' ) ) ? esc_attr( \Imagick::getVersion()['versionString'] ) : null,
'result' => $imagick,
'fallback' => __( 'ImageMagick library, integrated via the IMagick PHP extension for advanced image processing capabilities', 'woocommerce-pdf-invoices-packing-slips' ),
),
);
$server_configs = array_slice( $server_configs, 0, $gmagick_imagick_position, true ) + $image_magick_config + array_slice( $server_configs, $gmagick_imagick_position, null, true );
}
if ( $xc || $apc || $zop || $op ) {
$server_configs['opcache']['result'] = true;
if ( $xc ) {
$server_configs['opcache']['value'] = 'XCache ' . phpversion( 'xcache' );
} elseif ( $apc ) {
$server_configs['opcache']['value'] = 'APC ' . phpversion( 'apc' );
} elseif ( $zop ) {
$server_configs['opcache']['value'] = 'Zend OPCache ' . phpversion( 'Zend OPcache' );
} else {
$server_configs['opcache']['value'] = 'PHP OPCache ' . phpversion( 'opcache' );
}
}
return apply_filters( 'wpo_wcpdf_server_configs', $server_configs );
}
/**
* Set a notice to be displayed if the server requirements are not met.
*
* @return void
*/
public function handle_server_requirement_notice(): void {
// Return if the notice has been dismissed.
if ( get_option( 'wpo_wcpdf_dismiss_requirements_notice', false ) ) {
return;
}
// Handle dismissal action.
if ( isset( $_GET['wpo_dismiss_requirements_notice'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
if ( isset( $_GET['_wpnonce'] ) && wp_verify_nonce( sanitize_text_field( wp_unslash( $_GET['_wpnonce'] ) ), 'dismiss_requirements_notice' ) ) {
update_option( 'wpo_wcpdf_dismiss_requirements_notice', true );
wp_safe_redirect( remove_query_arg( array( 'wpo_dismiss_requirements_notice', '_wpnonce' ) ) );
exit;
} else {
wcpdf_log_error( 'You do not have sufficient permissions to perform this action: wpo_dismiss_requirements_notice' );
return;
}
}
// Check if the server requirements are met.
$show_requirement_notice = false;
$server_configs = $this->get_server_config();
foreach ( $server_configs as $config_name => $config ) {
if ( in_array( $config_name, array( 'opcache', 'GMagick or IMagick', 'WP Memory Limit' ), true ) ) {
continue;
}
if ( ! $config['result'] ) {
$show_requirement_notice = true;
break;
}
}
// Return if the server requirements are met.
if ( ! $show_requirement_notice ) {
return;
}
// Display the notice.
add_action( 'admin_notices', array( $this, 'display_server_requirement_notice' ) );
}
/**
* Display a notice informing the user that the server requirements are not met.
*
* @return void
*/
public function display_server_requirement_notice(): void {
$status_page_url = admin_url( 'admin.php?page=wpo_wcpdf_options_page&tab=debug&section=status' );
$dismiss_url = wp_nonce_url( add_query_arg( 'wpo_dismiss_requirements_notice', true ), 'dismiss_requirements_notice' );
$notice_message = sprintf(
/* translators: 1: Plugin name, 2: Open anchor tag, 3: Close anchor tag */
__( 'Your server does not meet the requirements for %1$s. Please check the %2$sStatus page%3$s for more information.', 'woocommerce-pdf-invoices-packing-slips' ),
'<strong>PDF Invoices & Packing Slips for WooCommerce</strong>',
'<a href="' . esc_url( $status_page_url ) . '">',
'</a>'
);
?>
<div class="notice notice-warning">
<p><?php echo wp_kses_post( $notice_message ); ?></p>
<p><a href="<?php echo esc_url( $dismiss_url ); ?>" class="wpo-wcpdf-dismiss"><?php esc_html_e( 'Hide this message', 'woocommerce-pdf-invoices-packing-slips' ); ?></a></p>
</div>
<?php
}
/**
* Get the premium plugins data.
*
* @return array
*/
public function get_premium_plugins(): array {
$premium_plugins = apply_filters(
'wpo_wcpdf_premium_plugins',
array(
'woocommerce-pdf-ips-pro/woocommerce-pdf-ips-pro.php' => 'wpo_wcpdf_pro_license',
'woocommerce-pdf-ips-templates/woocommerce-pdf-ips-templates.php' => 'wpo_wcpdf_templates_license',
)
);
// Get base data (name, version, is_active)
$plugin_files = array_keys( $premium_plugins );
$plugins = wpo_ips_get_plugins_data( $plugin_files );
// Add license keys
$licenses = get_option( 'wpocore_settings', array() );
foreach ( $plugins as $plugin_file => &$data ) {
$license_slug = $premium_plugins[ $plugin_file ] ?? '';
$data['license_key'] = $license_slug && isset( $licenses[ $license_slug ] ) ? $licenses[ $license_slug ] : '';
}
unset( $data ); // break the reference
return apply_filters( 'wpo_wcpdf_premium_plugins_data', $plugins );
}
/**
* Get the write permissions for the plugin directories.
*
* @return array
*/
public function get_directory_permissions(): array {
$status = array(
'ok' => __( 'Writable', 'woocommerce-pdf-invoices-packing-slips' ),
'failed' => __( 'Not writable', 'woocommerce-pdf-invoices-packing-slips' ),
);
$permissions = array(
'WCPDF_TEMP_DIR' => array(
'description' => __( 'Central temporary plugin folder', 'woocommerce-pdf-invoices-packing-slips' ),
'value' => WPO_WCPDF()->main->get_tmp_path(),
'status' => WPO_WCPDF()->file_system->is_writable( WPO_WCPDF()->main->get_tmp_path() ) ? 'ok' : 'failed',
'status_message' => WPO_WCPDF()->file_system->is_writable( WPO_WCPDF()->main->get_tmp_path() ) ? $status['ok'] : $status['failed'],
),
'WCPDF_ATTACHMENT_DIR' => array(
'description' => __( 'Temporary attachments folder', 'woocommerce-pdf-invoices-packing-slips' ),
'value' => trailingslashit( WPO_WCPDF()->main->get_tmp_path( 'attachments' ) ),
'status' => WPO_WCPDF()->file_system->is_writable( WPO_WCPDF()->main->get_tmp_path( 'attachments' ) ) ? 'ok' : 'failed',
'status_message' => WPO_WCPDF()->file_system->is_writable( WPO_WCPDF()->main->get_tmp_path( 'attachments' ) ) ? $status['ok'] : $status['failed'],
),
'DOMPDF_TEMP_DIR' => array(
'description' => __( 'Temporary DOMPDF folder', 'woocommerce-pdf-invoices-packing-slips' ),
'value' => trailingslashit( WPO_WCPDF()->main->get_tmp_path( 'dompdf' ) ),
'status' => WPO_WCPDF()->file_system->is_writable( WPO_WCPDF()->main->get_tmp_path( 'dompdf' ) ) ? 'ok' : 'failed',
'status_message' => WPO_WCPDF()->file_system->is_writable( WPO_WCPDF()->main->get_tmp_path( 'dompdf' ) ) ? $status['ok'] : $status['failed'],
),
'DOMPDF_FONT_DIR' => array(
'description' => __( 'DOMPDF fonts folder (needs to be writable for custom/remote fonts)', 'woocommerce-pdf-invoices-packing-slips' ),
'value' => trailingslashit( WPO_WCPDF()->main->get_tmp_path( 'fonts' ) ),
'status' => WPO_WCPDF()->file_system->is_writable( WPO_WCPDF()->main->get_tmp_path( 'fonts' ) ) ? 'ok' : 'failed',
'status_message' => WPO_WCPDF()->file_system->is_writable( WPO_WCPDF()->main->get_tmp_path( 'fonts' ) ) ? $status['ok'] : $status['failed'],
),
);
return apply_filters( 'wpo_wcpdf_plugin_directories', $permissions, $status );
}
/**
* Get the yearly reset scheduled action.
*
* @return array|false
*/
public function get_yearly_reset_schedule() {
if ( ! WPO_WCPDF()->settings->maybe_schedule_yearly_reset_numbers() ) {
return false;
}
if ( ! function_exists( '\\as_get_scheduled_actions' ) ) {
wcpdf_log_error( 'Action Scheduler function not available. Cannot retrieve the yearly numbering reset schedule.', 'critical' );
return false;
}
$scheduled_actions = \as_get_scheduled_actions( array(
'hook' => 'wpo_wcpdf_schedule_yearly_reset_numbers',
'status' => \ActionScheduler_Store::STATUS_PENDING,
) );
if ( ! empty( $scheduled_actions ) ) {
$total_actions = count( $scheduled_actions );
if ( $total_actions === 1 ) {
$action = reset( $scheduled_actions );
$action_date = is_callable( array( $action->get_schedule(), 'get_date' ) ) ?
$action->get_schedule()->get_date() :
$action->get_schedule()->get_next( \as_get_datetime_object() );
$yearly_reset = array(
'value' => sprintf(
/* translators: %s action date */
__( 'Scheduled to: %s', 'woocommerce-pdf-invoices-packing-slips' ),
gmdate( wcpdf_date_format( null, 'yearly_reset_schedule' ), $action_date->getTimestamp() )
),
'result' => true,
);
} else {
$yearly_reset = array(
'value' => sprintf(
/* translators: total scheduled actions */
__( 'Only 1 scheduled action should exist, but %s were found', 'woocommerce-pdf-invoices-packing-slips' ),
$total_actions
),
'result' => false,
);
}
} else {
$yearly_reset = array(
'value' => sprintf(
/* translators: 1. open anchor tag, 2. close anchor tag */
__( 'Scheduled action not found. Please reschedule it %1$shere%2$s.', 'woocommerce-pdf-invoices-packing-slips' ),
'<a href="' . esc_url( add_query_arg( 'section', 'tools' ) ) . '" style="color:black; text-decoration:underline;">',
'</a>'
),
'result' => false,
);
}
return $yearly_reset;
}
/**
* Get settings sections.
*
* @return array
*/
private function get_settings_sections(): array {
return apply_filters( 'wpo_wcpdf_settings_debug_sections', array(
'settings' => __( 'Settings', 'woocommerce-pdf-invoices-packing-slips' ),
'status' => __( 'Status', 'woocommerce-pdf-invoices-packing-slips' ),
'tools' => __( 'Tools', 'woocommerce-pdf-invoices-packing-slips' ),
'numbers' => __( 'Numbers', 'woocommerce-pdf-invoices-packing-slips' ),
) );
}
/**
* Define settings categories for the Advanced tab.
*
* @return array
*/
public function get_settings_categories(): array {
$categories = array(
'filesystem_access' => array(
'title' => __( 'File System & Access', 'woocommerce-pdf-invoices-packing-slips' ),
'members' => array(
'file_system_method',
'document_link_access_type',
'document_link_access_type_table',
'document_access_denied_redirect_page',
'document_custom_redirect_page',
),
),
'display_interaction' => array(
'title' => __( 'Document Display & Interaction', 'woocommerce-pdf-invoices-packing-slips' ),
'members' => array(
'pretty_document_links',
'disable_preview',
'embed_images',
'html_output',
),
),
'document_management' => array(
'title' => __( 'Document Management & Behavior', 'woocommerce-pdf-invoices-packing-slips' ),
'members' => array(
'calculate_document_numbers',
'enable_document_data_editing',
'default_manual_document_number',
'enable_cleanup',
),
),
'localization_translation' => array(
'title' => __( 'Localization & Translation', 'woocommerce-pdf-invoices-packing-slips' ),
'members' => array(
'reload_attachment_translations',
'log_missing_translations',
),
),
'debugging_logging' => array(
'title' => __( 'Debugging & Logging', 'woocommerce-pdf-invoices-packing-slips' ),
'members' => array(
'enable_debug',
'log_to_order_notes',
'semaphore_logs',
),
),
'versioning_stability' => array(
'title' => __( 'Versioning & Stability', 'woocommerce-pdf-invoices-packing-slips' ),
'members' => array(
'check_unstable_versions',
),
),
'advanced_experimental' => array(
'title' => __( 'Advanced / Experimental', 'woocommerce-pdf-invoices-packing-slips' ),
'members' => array(
'enable_danger_zone_tools',
),
),
);
return apply_filters( 'wpo_wcpdf_settings_debug_categories', $categories );
}
/**
* Fetch number table data
*
* @param string $table_name
* @param string $orderby
* @param string $order
* @param string $from
* @param string $to
* @param integer $chunk_size
* @param integer $offset
*
* @return void
*/
public function fetch_number_table_data( string $table_name, string $orderby = 'id', string $order = 'desc', string $from = '', string $to = '', int $chunk_size = 100, int $offset = 0 ): void {
global $wpdb;
$input_data = array(
'table_name' => $table_name,
'orderby' => $orderby,
'order' => $order,
'from' => $from,
'to' => $to,
);
$data = $this->filter_fetch_request_data( $input_data );
if ( empty( $data['table_name'] ) || empty( $data['from'] ) || empty( $data['to'] ) ) {
return;
}
$offset = absint( $offset ?? 0 );
$chunk_size = absint( $chunk_size ?? 100 );
$option_name = "wpo_wcpdf_number_data::{$data['table_name']}";
$results = get_option( $option_name, array() );
$hook = 'wpo_wcpdf_number_table_data_fetch';
$order = ( 'DESC' === strtoupper( $data['order'] ) ) ? 'DESC' : 'ASC';
$table_name = $data['table_name'];
$orderby = $data['orderby'];
$query = wpo_wcpdf_prepare_identifier_query(
"SELECT * FROM %i WHERE date BETWEEN %s AND %s ORDER BY %i $order LIMIT %d OFFSET %d",
array( $table_name, $orderby ),
array( $data['from'], $data['to'], $chunk_size, $offset )
);
$chunk_results = $wpdb->get_results( $query ); // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching, WordPress.DB.PreparedSQL.NotPrepared
if ( empty( $chunk_results ) ) {
if ( function_exists( '\\as_unschedule_all_actions' ) ) {
\as_unschedule_all_actions( $hook );
} else {
wcpdf_log_error( 'Action Scheduler function not available. Cannot unschedule number table data fetch.', 'critical' );
}
update_option( $option_name . '::last_time', time() );
return; // exit if no more results
}
$results = array_merge( $results, $chunk_results ); // append the chunk results to the main results array
update_option( $option_name, $results );
$offset += $chunk_size; // increase the offset for the next chunk
$args = array(
'table_name' => $data['table_name'],
'orderby' => $data['orderby'],
'order' => $data['order'],
'from' => $data['from'],
'to' => $data['to'],
'chunk_size' => $chunk_size,
'offset' => $offset,
);
if ( function_exists( '\\as_enqueue_async_action' ) ) {
\as_enqueue_async_action( $hook, $args );
} else {
wcpdf_log_error( 'Action Scheduler function not available. Cannot queue next number table data fetch.', 'critical' );
}
}
/**
* Handle AJAX number table data request
*
* @return void
*/
public function ajax_numbers_data(): void {
if ( ! \WPO_WCPDF()->settings->user_can_manage_settings() ) {
$message = __( 'You are not allowed to perform this action.', 'woocommerce-pdf-invoices-packing-slips' );
wp_send_json_error( compact( 'message' ) );
}
check_ajax_referer( 'wpo_wcpdf_debug_nonce', 'nonce' );
$request = stripslashes_deep( $_POST );
if ( isset( $request['action'] ) && 'wpo_wcpdf_numbers_data' === $request['action'] && isset( $request['operation'] ) && isset( $request['table_name'] ) ) {
$data = $this->filter_fetch_request_data( $request );
$this->delete_number_table_data( $data['table_name'] ); // both operations require delete
if ( 'fetch' === $request['operation'] ) {
$this->fetch_number_table_data( $data['table_name'], $data['orderby'], $data['order'], $data['from'], $data['to'] );
}
wp_send_json_success( array( esc_url_raw( admin_url( 'admin.php?page=wpo_wcpdf_options_page&tab=debug&section=numbers&orderby=' . $data['orderby'] . '&order=' . $data['order'] . '&table_name=' . $data['table_name'] ) ) ) );
} else {
wp_send_json_error( array( __( 'Invalid request', 'woocommerce-pdf-invoices-packing-slips' ) ) );
}
}
/**
* Filter data from number table request
*
* @param array $request_data
* @return array
*/
public function filter_fetch_request_data( array $request_data ): array {
// Helper to check if a string already contains a time component
$contains_time = function( $str ) {
// Look for HH:MM:SS pattern anywhere in the string
return (bool) preg_match( '/\d{2}:\d{2}:\d{2}/', $str );
};
// Validate and sanitize table_name
$valid_table_name = null;
if (
isset( $request_data['table_name'] )
&& in_array( $request_data['table_name'], array_keys( $this->get_number_store_tables() ) )
) {
$valid_table_name = sanitize_text_field( $request_data['table_name'] );
}
// Validate and sanitize order
$valid_order = 'desc';
if (
isset( $request_data['order'] )
&& in_array( strtolower( $request_data['order'] ), array( 'desc', 'asc' ), true )
) {
$valid_order = sanitize_text_field( strtolower( $request_data['order'] ) );
}
// Validate and sanitize orderby
$valid_orderby = 'id';
if (
isset( $request_data['orderby'] )
&& in_array( strtolower( $request_data['orderby'] ), array( 'id' ), true )
) {
$valid_orderby = sanitize_text_field( strtolower( $request_data['orderby'] ) );
}
// Handle "from" date
$valid_from = null;
if ( isset( $request_data['from'] ) && ! empty( $request_data['from'] ) ) {
$temp_from = esc_attr( $request_data['from'] );
if ( ! $contains_time( $temp_from ) ) {
$temp_from .= ' 00:00:00';
}
$valid_from = $temp_from;
}
// Handle "to" date
$valid_to = null;
if ( isset( $request_data['to'] ) && ! empty( $request_data['to'] ) ) {
$temp_to = esc_attr( $request_data['to'] );
if ( ! $contains_time( $temp_to ) ) {
$temp_to .= ' 23:59:59';
}
$valid_to = $temp_to;
}
return array(
'table_name' => $valid_table_name,
'order' => $valid_order,
'orderby' => $valid_orderby,
'from' => $valid_from,
'to' => $valid_to,
);
}
/**
* Delete number table cached data
*
* @param string $table_name
*
* @return void
*/
public function delete_number_table_data( string $table_name ): void {
if ( empty( $table_name ) ) {
return;
}
delete_option( "wpo_wcpdf_number_data::{$table_name}" );
delete_option( "wpo_wcpdf_number_data::{$table_name}::last_time" );
}
/**
* Search for number in number table data
*
* @param string $table_name
* @param int $search
*
* @return array
*/
public function search_number_in_table_data( string $table_name, int $search ): array {
if ( empty( $table_name ) ) {
return array();
}
$option_name = "wpo_wcpdf_number_data::{$table_name}";
$results = get_option( $option_name, array() );
$search = ! empty( $search ) ? absint( $search ) : false;
$found = array();
if ( ! empty( $results ) ) {
foreach ( $results as $result ) {
if ( absint( $result->id ) === $search ) {
$found[] = $result;
break;
}
}
}
// number not found in cached data, try directly
if ( empty( $found ) ) {
$found = $this->search_number_in_database_table( $table_name, $search );
}
return $found;
}
/**
* Search for number in number table database.
*
* @param string $table_name
* @param int $search
*
* @return array|false
*/
public function search_number_in_database_table( string $table_name, int $search ) {
global $wpdb;
if (
empty( $search ) ||
empty( $table_name ) ||
! in_array( $table_name, array_keys( $this->get_number_store_tables() ), true )
) {
return array();
}
$search = absint( $search );
$query = wpo_wcpdf_prepare_identifier_query(
"SELECT * FROM %i WHERE id = %d",
array( $table_name ),
array( $search )
);
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching, WordPress.DB.PreparedSQL.NotPrepared
return $wpdb->get_results( $query );
}
/**
* Sort number table data
*
* @param array $results
* @param string $order
* @param string $orderby
*
* @return array
*/
public function sort_number_table_data( array $results, string $order, string $orderby ): array {
if ( empty( $results ) ) {
return $results;
}
usort( $results, function( $a, $b ) use ( $orderby, $order ) {
$orderby = esc_attr( $orderby );
$order = esc_attr( $order );
switch ( $orderby ) {
case 'id':
if ( 'desc' === $order ) {
return absint( $b->id ) - absint( $a->id );
} else {
return absint( $a->id ) - absint( $b->id );
}
break;
default:
if ( 'desc' === $order ) {
return strcmp( $b->$orderby, $a->$orderby );
} else {
return strcmp( $a->$orderby, $b->$orderby );
}
break;
}
} );
return $results;
}
/**
* Schedule or unschedule the daily unstable version check using Action Scheduler.
*
* @return void
*/
public function maybe_schedule_unstable_version_check(): void {
$hook = 'wpo_wcpdf_check_unstable_version_daily';
$debug_settings = WPO_WCPDF()->settings->debug_settings;
$enabled = isset( $debug_settings['check_unstable_versions'] );
if (
! function_exists( '\\as_next_scheduled_action' ) ||
! function_exists( '\\as_unschedule_all_actions' ) ||
! function_exists( '\\as_schedule_recurring_action' )
) {
wcpdf_log_error( 'Action Scheduler functions not available. Cannot schedule or unschedule the daily unstable version check.', 'critical' );
return;
}
// Unschedule all pending actions
if ( ! $enabled ) {
if ( \as_next_scheduled_action( $hook ) ) {
\as_unschedule_all_actions( $hook );
}
return;
}
// Schedule the action if not already scheduled
if ( ! \as_next_scheduled_action( $hook ) ) {
\as_schedule_recurring_action( time(), DAY_IN_SECONDS, $hook );
}
}
/**
* Run the daily check for unstable versions.
*
* @return void
*/
public function run_unstable_version_check(): void {
wpo_wcpdf_get_latest_releases_from_github();
}
/**
* Generate and download the plugin report as a PDF.
*
* @return void
*/
public function ajax_plugin_report(): void {
if ( ! \WPO_WCPDF()->settings->user_can_manage_settings() ) {
wp_die( esc_html__( 'You are not allowed to perform this action.', 'woocommerce-pdf-invoices-packing-slips' ) );
}
check_ajax_referer( 'wpo_ips_plugin_report', 'nonce' );
$include_sensitive = isset( $_GET['include_sensitive'] )
? filter_var( wp_unslash( $_GET['include_sensitive'] ), FILTER_VALIDATE_BOOLEAN )
: false;
$output_html = isset( $_GET['output_html'] )
? filter_var( wp_unslash( $_GET['output_html'] ), FILTER_VALIDATE_BOOLEAN )
: false;
$report_title = 'PDF Invoices & Packing Slips for WooCommerce - Report';
$premium_plugins = $this->get_premium_plugins();
$free_extensions = $this->get_free_extensions();
$multilingual_plugins = $this->get_multilingual_plugins();
$plugin_version = \WPO_WCPDF()->version;
$store_url = get_site_url();
$report_date = gmdate( 'Y-m-d H:i:s' );
$report_user = $include_sensitive ? wp_get_current_user() : null;
$server_configs = $this->get_server_config();
$dir_permissions = $include_sensitive ? $this->get_directory_permissions() : array();
$yearly_reset = $this->get_yearly_reset_schedule();
// Load CSS file contents
$report_css = '';
$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
$css_path = \WPO_WCPDF()->plugin_path() . '/assets/css/plugin-report' . $suffix . '.css';
if ( \WPO_WCPDF()->file_system->exists( $css_path ) && \WPO_WCPDF()->file_system->is_readable( $css_path ) ) {
$report_css = \WPO_WCPDF()->file_system->get_contents( $css_path );
}
// Load Settings
$general_settings = get_option( 'wpo_wcpdf_settings_general', array() );
$debug_settings = get_option( 'wpo_wcpdf_settings_debug', array() );
$edi_settings = get_option( 'wpo_ips_edi_settings', array() );
$documents_settings = array();
$all_documents = \WPO_WCPDF()->documents->get_documents( 'all' );
if ( ! empty( $all_documents ) ) {
foreach ( $all_documents as $document ) {
$document_type = $document->get_type();
$documents_settings[ $document_type ] = \WPO_WCPDF()->settings->get_document_settings( $document_type, 'pdf' );
}
}
// Logs
$logs_data = $include_sensitive ? $this->get_recent_logs() : array();
// Extensions Settings
$extensions_settings = apply_filters( 'wpo_ips_get_extensions_settings_for_report', array(), $include_sensitive );
ob_start();
include \WPO_WCPDF()->plugin_path() . '/views/plugin-report.php';
$report_html = ob_get_clean();
if ( $output_html ) {
echo $report_html; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
die();
}
$pdf_settings = array(
'paper_size' => 'A4',
'paper_orientation' => 'portrait',
'font_subsetting' => false,
);
$pdf_maker = \wcpdf_get_pdf_maker( $report_html, $pdf_settings, $this );
$pdf = $pdf_maker->output();
$filename = 'plugin-report-' . gmdate( 'Y-m-d' ) . '.pdf';
\wcpdf_pdf_headers( $filename, 'download', $pdf );
echo $pdf; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
exit();
}
/**
* Get the premium plugins data.
*
* @return array
*/
private function get_free_extensions(): array {
$free_extensions = apply_filters(
'wpo_ips_free_extensions',
array(
'woocommerce-pdf-ips-barcode-font/woocommerce-pdf-ips-barcode-font.php',
'woocommerce-pdf-ips-mpdf/wcpdf-mpdf.php',
'woocommerce-pdf-ips-mpdf-cjk/woocommerce-pdf-ips-cjk.php',
'woocommerce-pdf-ips-cancelled-credit-notes/woocommerce-pdf-ips-cancelled-credit-notes.php',
'woocommerce-pdf-ips-csv-exporter/woocommerce-pdf-ips-csv-exporter.php',
'woocommerce-pdf-ips-custom-font/woocommerce-pdf-ips-custom-font.php',
'woocommerce-pdf-ips-thai/woocommerce-pdf-ips-thai.php',
'woocommerce-pdf-ips-unicode/woocommerce-pdf-ips-unicode.php',
'wcpdf-taxes-summary/wcpdf-taxes-summary.php',
'wcpdf-shipping-and-fees-item/wcpdf-shipping-item.php',
'wcpdf-quotation/wcpdf-quotation.php',
)
);
$plugins_data = \wpo_ips_get_plugins_data( $free_extensions );
return apply_filters( 'wpo_ips_free_extensions_data', $plugins_data );
}
/**
* Get multilingual plugins data.
*
* @return array
*/
private function get_multilingual_plugins(): array {
$multilingual_plugins = apply_filters(
'wpo_ips_multilingual_plugins',
array(
'wpml-media-translation/plugin.php',
'woocommerce-multilingual/wpml-woocommerce.php',
'sitepress-multilingual-cms/sitepress.php',
'wpml-string-translation/plugin.php',
'polylang/polylang.php',
'polylang-wc/polylang-wc.php',
'polylang-pro/polylang.php',
'translatepress-multilingual/index.php',
'weglot/weglot.php',
'gtranslate/gtranslate.php',
'loco-translate/loco.php',
)
);
$plugins_data = \wpo_ips_get_plugins_data( $multilingual_plugins );
return apply_filters( 'wpo_ips_multilingual_plugins_data', $plugins_data );
}
/**
* Get recent log excerpts for key handles.
*
* @param int $limit Number of lines per log file.
* @return array
*/
protected function get_recent_logs( int $limit = 100 ): array {
if ( ! defined( 'WC_LOG_DIR' ) || ! is_dir( WC_LOG_DIR ) ) {
return array();
}
$handles = apply_filters( 'wpo_ips_log_handles', array(
'fatal-errors',
'wpo-wcpdf',
'wpo-ips-edi',
'wpo-ips-semaphore',
) );
$results = array();
foreach ( $handles as $handle ) {
$pattern = trailingslashit( WC_LOG_DIR ) . $handle . '-*.log';
$files = glob( $pattern );
if ( empty( $files ) ) {
continue;
}
usort(
$files,
static function ( $a, $b ) {
return filemtime( $b ) <=> filemtime( $a );
}
);
$file = $files[0];
$lines = @file( $file, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES );
if ( ! is_array( $lines ) ) {
continue;
}
$total_lines = count( $lines );
if ( $limit > 0 && $total_lines > $limit ) {
$lines = array_slice( $lines, -$limit );
}
$results[ $handle ] = array(
'file' => basename( $file ),
'lines' => $lines,
);
}
return $results;
}
/**
* Get database server details.
*
* @return array{
* type: string|null,
* version: string|null,
* server_info: string|null,
* }
*/
protected function get_database_details(): array {
global $wpdb;
$type = null;
$version = null;
$server_info = null;
if ( ! isset( $wpdb ) || ! is_object( $wpdb ) ) {
return array(
'type' => null,
'version' => null,
'server_info' => null,
);
}
$server_info = is_callable( array( $wpdb, 'db_server_info' ) ) ? (string) $wpdb->db_server_info() : '';
$version = is_callable( array( $wpdb, 'db_version' ) ) ? (string) $wpdb->db_version() : '';
if ( false !== stripos( $server_info, 'MariaDB' ) ) {
$type = 'MariaDB';
// Older PHP/mysqlnd may report MariaDB as 5.5.5-10.x.x-MariaDB.
if (
'5.5.5' === $version &&
defined( 'PHP_VERSION_ID' ) &&
PHP_VERSION_ID < 80016 &&
! empty( $server_info )
) {
$normalized = preg_replace( '/^5\.5\.5-(.*)$/', '$1', $server_info );
$version = preg_replace( '/[^0-9.].*/', '', $normalized );
}
} elseif ( false !== stripos( $server_info, 'SQLite' ) ) {
$type = 'SQLite';
} elseif ( false !== stripos( $server_info, 'MySQL' ) || ! empty( $version ) ) {
// Default to MySQL when using core wpdb and no MariaDB marker is present.
$type = 'MySQL';
}
// Fallback for SQLite integrations that may not expose db_server_info cleanly.
if ( empty( $type ) && method_exists( $wpdb, 'get_var' ) ) {
$sqlite_version = $wpdb->get_var( 'SELECT sqlite_version()' ); // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
if ( ! empty( $sqlite_version ) ) {
$type = 'SQLite';
$version = $version ?: (string) $sqlite_version;
}
}
return array(
'type' => $type,
'version' => $version ?: null,
'server_info' => $server_info ?: null,
);
}
}
endif; // class_exists