- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
302 lines
11 KiB
PHP
Executable File
302 lines
11 KiB
PHP
Executable File
<?php
|
|
|
|
#[AllowDynamicProperties]
|
|
final class BWFAN_UpStroke_Offer_Payment_Failed extends BWFAN_Event {
|
|
private static $instance = null;
|
|
public $order = null;
|
|
public $funnel_id = null;
|
|
public $offer_id = null;
|
|
public $offer_type = null;
|
|
public $details = null;
|
|
|
|
private function __construct() {
|
|
$this->event_merge_tag_groups = array(
|
|
'bwf_contact',
|
|
'wc_order',
|
|
'wc_funnel',
|
|
'wc_offer',
|
|
'wc_failed_order'
|
|
);
|
|
|
|
$this->optgroup_label = esc_html__( 'One-Click Upsells', 'wp-marketing-automations-pro' );
|
|
$this->event_name = esc_html__( 'Offer Payment Failed', 'wp-marketing-automations-pro' );
|
|
$this->event_desc = esc_html__( 'This event runs after an offer payment is failed.', 'wp-marketing-automations-pro' );
|
|
$this->event_rule_groups = array(
|
|
'wc_order',
|
|
'wc_customer',
|
|
'upstroke_funnel_offers',
|
|
'bwf_contact_segments',
|
|
'bwf_contact',
|
|
'bwf_contact_fields',
|
|
'bwf_contact_user',
|
|
'bwf_contact_wc',
|
|
'bwf_contact_geo',
|
|
'bwf_engagement',
|
|
'bwf_broadcast'
|
|
);
|
|
$this->support_lang = true;
|
|
$this->priority = 45.5;
|
|
$this->v2 = true;
|
|
}
|
|
|
|
public static function get_instance() {
|
|
if ( null === self::$instance ) {
|
|
self::$instance = new self();
|
|
}
|
|
|
|
return self::$instance;
|
|
}
|
|
|
|
public function load_hooks() {
|
|
add_action( 'wfocu_offer_payment_failed_event', [ $this, 'offer_payment_failed' ], 999, 1 );
|
|
}
|
|
|
|
/**
|
|
* @todo: Not sure where this method is used and how it is used
|
|
*/
|
|
public function check_for_recovered_order( $order_id ) {
|
|
$order = wc_get_order( $order_id );
|
|
$parent_order_id = $order instanceof WC_Order ? $order->get_meta( '_bwfan_poid' ) : '';
|
|
if ( ! empty( $parent_order_id ) ) {
|
|
$child_order = wc_get_order( $order_id );
|
|
$funnel_id = $order->get_meta( '_bwfan_fun_id' );
|
|
$funnel_settings = get_post_meta( $funnel_id, '_wfocu_settings', true );
|
|
$order_behavior = $funnel_settings['order_behavior'];
|
|
$get_package = $order->get_meta( '_bwfan_package' );
|
|
$get_parent_order = wc_get_order( $parent_order_id );
|
|
|
|
if ( class_exists( 'WFOCU_Core' ) ) {
|
|
if ( 'batching' === $order_behavior ) {
|
|
$order_link = '<a href="' . admin_url( 'post.php?post=' . $order_id ) . '&action=edit' . '">' . $order_id . '</a>';
|
|
$parent_order_link = '<a href="' . admin_url( 'post.php?post=' . $parent_order_id ) . '&action=edit' . '">' . $parent_order_id . '</a>';
|
|
$parent_text = sprintf( 'FunnelKit Automations: Recovered Upsell Order with Order Id - %s', $order_link );
|
|
$child_text = sprintf( 'FunnelKit Automations: This Order was recovered and merged into Parent Order with Order ID - %s', $parent_order_link );
|
|
|
|
WFOCU_Core()->orders->add_products_to_order( $get_package, $get_parent_order );
|
|
WFOCU_Core()->orders->maybe_handle_shipping( $get_package, $get_parent_order );
|
|
$get_parent_order->save();
|
|
|
|
$get_parent_order->add_order_note( $parent_text );
|
|
$child_order->add_order_note( $child_text );
|
|
} else {
|
|
$child_order->add_order_note( sprintf( 'FunnelKit Automations: This Order was recovered' ) );
|
|
$order->delete_meta_data( '_bwfan_poid' );
|
|
$order->delete_meta_data( '_bwfan_package' );
|
|
$order->delete_meta_data( '_bwfan_fun_id' );
|
|
$order->save();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param $child_order
|
|
* @param $sent_to_admin
|
|
* @param $plain_text
|
|
* @param $email
|
|
*
|
|
* @return void
|
|
*/
|
|
public function append_content_before_woocommerce_footer( $child_order, $sent_to_admin, $plain_text, $email ) {
|
|
$order_id = BWFAN_Woocommerce_Compatibility::get_order_id( $child_order );
|
|
$parent_order_id = $child_order->get_meta( '_bwfan_poid', true );
|
|
if ( empty( $parent_order_id ) || ! class_exists( 'WFOCU_Core' ) ) {
|
|
return;
|
|
}
|
|
|
|
$funnel_id = $child_order->get_meta( '_bwfan_fun_id', true );
|
|
$funnel_settings = get_post_meta( $funnel_id, '_wfocu_settings', true );
|
|
$order_behavior = $funnel_settings['order_behavior'];
|
|
if ( 'batching' !== $order_behavior ) {
|
|
return;
|
|
}
|
|
|
|
$get_parent_order = wc_get_order( $parent_order_id );
|
|
|
|
as_schedule_single_action( time(), 'bwfan_delete_order_meta_payment_failed', array( $order_id ) );
|
|
$parent_order_link = '<a href="' . $get_parent_order->get_checkout_order_received_url() . '">' . $parent_order_id . '</a>';
|
|
$parent_text = __( '<b>Note:</b> This order has been merged to your previous order with Order ID: ' . $parent_order_link, 'wp-marketing-automations-pro' );
|
|
echo $parent_text . '<br><br>'; //phpcs:ignore WordPress.Security.EscapeOutput
|
|
}
|
|
|
|
/**
|
|
* Set up rules data
|
|
*
|
|
* @param $value
|
|
*/
|
|
public function pre_executable_actions( $value ) {
|
|
BWFAN_Core()->rules->setRulesData( $this->order, 'wc_order' );
|
|
BWFAN_Core()->rules->setRulesData( $this->funnel_id, 'upstroke_funnel_id' );
|
|
BWFAN_Core()->rules->setRulesData( $this->offer_id, 'upstroke_offer_id' );
|
|
BWFAN_Core()->rules->setRulesData( $this->event_automation_id, 'automation_id' );
|
|
BWFAN_Core()->rules->setRulesData( BWFAN_Common::get_bwf_customer( $this->order->get_billing_email(), $this->order->get_user_id() ), 'bwf_customer' );
|
|
}
|
|
|
|
public function offer_payment_failed( $details ) {
|
|
$this->process( $details );
|
|
}
|
|
|
|
/**
|
|
* Make the required data for the current event and send it asynchronously.
|
|
*
|
|
* @param $details
|
|
*/
|
|
public function process( $details ) {
|
|
if ( isset( $details['order_id'] ) && isset( $details['funnel_id'] ) && isset( $details['offer_id'] ) && isset( $details['offer_type'] ) ) {
|
|
$data = $this->get_default_data();
|
|
|
|
/** Check if failed order exists */
|
|
if ( empty( $details['_failed_order'] ) || ! $details['_failed_order'] instanceof WC_Order ) {
|
|
return;
|
|
}
|
|
|
|
$failed_order_id = $details['_failed_order']->get_id();
|
|
|
|
unset( $details['_failed_order'] );
|
|
|
|
$details['_failed_order_id'] = $failed_order_id;
|
|
$data['details'] = $details;
|
|
|
|
$this->send_async_call( $data );
|
|
}
|
|
}
|
|
|
|
public function update_failed_order_meta( $details ) {
|
|
$failed_order_id = $details['_failed_order_id'];
|
|
$failed_order_parent_id = $details['order_id'];
|
|
$session_upsell_package = WFOCU_Core()->data->get( '_upsell_package' );
|
|
|
|
$failed_order = wc_get_order( $failed_order_id );
|
|
if ( ! $failed_order instanceof WC_Order ) {
|
|
return;
|
|
}
|
|
|
|
$failed_order->update_meta_data( '_bwfan_poid', $failed_order_parent_id );
|
|
$failed_order->update_meta_data( '_bwfan_package', $session_upsell_package );
|
|
$failed_order->update_meta_data( '_bwfan_fun_id', $details['funnel_id'] );
|
|
$failed_order->save();
|
|
|
|
}
|
|
|
|
/**
|
|
* Registers the tasks for current event.
|
|
*
|
|
* @param $automation_id
|
|
* @param $integration_data
|
|
* @param $event_data
|
|
*/
|
|
public function register_tasks( $automation_id, $integration_data, $event_data ) {
|
|
if ( ! is_array( $integration_data ) ) {
|
|
return;
|
|
}
|
|
|
|
$data_to_send = $this->get_event_data();
|
|
|
|
$this->create_tasks( $automation_id, $integration_data, $event_data, $data_to_send );
|
|
}
|
|
|
|
public function get_event_data() {
|
|
$data_to_send = [ 'global' => [] ];
|
|
$data_to_send['global']['order_id'] = is_object( $this->order ) ? BWFAN_Woocommerce_Compatibility::get_order_id( $this->order ) : '';
|
|
$data_to_send['global']['wc_order'] = is_object( $this->order ) ? $this->order : '';
|
|
$data_to_send['global']['email'] = is_object( $this->order ) ? BWFAN_Woocommerce_Compatibility::get_billing_email( $this->order ) : '';
|
|
$data_to_send['global']['funnel_id'] = $this->funnel_id;
|
|
$data_to_send['global']['offer_id'] = $this->offer_id;
|
|
$data_to_send['global']['failed_order_payment_link'] = is_object( $this->details['_failed_order'] ) ? $this->details['_failed_order']->get_checkout_payment_url() : ''; // get payment url from failed order object
|
|
|
|
return $data_to_send;
|
|
}
|
|
|
|
/**
|
|
* Make the view data for the current event which will be shown in task listing screen.
|
|
*
|
|
* @param $global_data
|
|
*
|
|
* @return false|string
|
|
*/
|
|
public function get_task_view( $global_data ) {
|
|
ob_start();
|
|
?>
|
|
<li>
|
|
<strong><?php echo esc_html__( 'Funnel ID:', 'wp-marketing-automations-pro' ); ?> </strong>
|
|
<a target="_blank" href="<?php echo admin_url( 'admin.php' ) . '?page=upstroke§ion=rules&edit=' . $global_data['funnel_id']; //phpcs:ignore WordPress.Security.EscapeOutput ?>"><?php echo esc_html__( $global_data['funnel_id'] ); ?></a>
|
|
</li>
|
|
<li>
|
|
<strong><?php echo esc_html__( 'User Email:', 'wp-marketing-automations-pro' ); ?> </strong>
|
|
<span><?php echo esc_html__( $global_data['email'] ); ?></span>
|
|
</li>
|
|
<?php
|
|
return ob_get_clean();
|
|
}
|
|
|
|
/**
|
|
* Set global data for all the merge tags which are supported by this event.
|
|
*
|
|
* @param $task_meta
|
|
*/
|
|
public function set_merge_tags_data( $task_meta ) {
|
|
$wc_order_id = BWFAN_Merge_Tag_Loader::get_data( 'wc_order_id' );
|
|
if ( empty( $wc_order_id ) || intval( $wc_order_id ) !== intval( $task_meta['global']['order_id'] ) ) {
|
|
$set_data = array(
|
|
'wc_order_id' => intval( $task_meta['global']['order_id'] ),
|
|
'email' => $task_meta['global']['email'],
|
|
'funnel_id' => intval( $task_meta['global']['funnel_id'] ),
|
|
'offer_id' => intval( $task_meta['global']['offer_id'] ),
|
|
'failed_order_payment_link' => $task_meta['global']['failed_order_payment_link'],
|
|
'wc_order' => $task_meta['global']['wc_order'],
|
|
);
|
|
BWFAN_Merge_Tag_Loader::set_data( $set_data );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Capture the async data for the current event.
|
|
*/
|
|
public function capture_async_data() {
|
|
$details = BWFAN_Common::$events_async_data['details'];
|
|
$this->details = $details;
|
|
$this->order = wc_get_order( $details['order_id'] );
|
|
$this->funnel_id = $this->details['funnel_id'];
|
|
$this->offer_id = $this->details['offer_id'];
|
|
$this->offer_type = $this->details['offer_type'];
|
|
$this->details['_failed_order'] = wc_get_order( $details['_failed_order_id'] );
|
|
|
|
$this->run_automations();
|
|
}
|
|
|
|
/**
|
|
* Capture the async data for the current event.
|
|
*
|
|
* @return array|bool
|
|
*/
|
|
public function capture_v2_data( $automation_data ) {
|
|
$details = BWFAN_Common::$events_async_data['details'];
|
|
$this->details = $details;
|
|
$this->order = wc_get_order( $details['order_id'] );
|
|
$this->funnel_id = $this->details['funnel_id'];
|
|
$this->offer_id = $this->details['offer_id'];
|
|
$this->offer_type = $this->details['offer_type'];
|
|
$this->details['_failed_order'] = wc_get_order( $details['_failed_order_id'] );
|
|
$automation_data['details'] = $this->details;
|
|
$automation_data['order'] = $this->order;
|
|
$automation_data['upstroke_funnel_id'] = $this->funnel_id;
|
|
$automation_data['upstroke_offer_id'] = $this->offer_id;
|
|
$automation_data['offer_type'] = $this->offer_type;
|
|
|
|
return $automation_data;
|
|
}
|
|
|
|
public function get_fields_schema() {
|
|
return [];
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* Register this event to a source.
|
|
* This will show the current event in dropdown in single automation screen.
|
|
*/
|
|
if ( bwfan_is_woocommerce_active() && bwfan_is_woofunnels_upstroke_active() ) {
|
|
return 'BWFAN_UpStroke_Offer_Payment_Failed';
|
|
}
|