- 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>
306 lines
9.8 KiB
PHP
Executable File
306 lines
9.8 KiB
PHP
Executable File
<?php
|
|
|
|
#[AllowDynamicProperties]
|
|
final class BWFAN_WCS_Renewal_Payment_Failed extends BWFAN_Event {
|
|
private static $instance = null;
|
|
public $subscription = null;
|
|
public $order = null;
|
|
public $email = null;
|
|
public $subscription_id = null;
|
|
public $order_id = null;
|
|
|
|
private function __construct() {
|
|
$this->event_merge_tag_groups = array( 'bwf_contact', 'wc_subscription' );
|
|
|
|
$this->event_name = esc_html__( 'Subscriptions Renewal Payment Failed', 'wp-marketing-automations-pro' );
|
|
$this->event_desc = esc_html__( 'This event runs after a subscription renewal payment is failed.', 'wp-marketing-automations-pro' );
|
|
$this->event_rule_groups = array(
|
|
'wc_subscription',
|
|
'wc_customer',
|
|
'bwf_contact_segments',
|
|
'bwf_contact',
|
|
'bwf_contact_fields',
|
|
'bwf_contact_user',
|
|
'bwf_contact_wc',
|
|
'bwf_contact_geo',
|
|
'bwf_engagement',
|
|
'bwf_broadcast'
|
|
);
|
|
$this->optgroup_label = esc_html__( 'Subscription', 'wp-marketing-automations-pro' );
|
|
$this->support_lang = true;
|
|
$this->priority = 25.6;
|
|
$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( 'woocommerce_subscription_renewal_payment_failed', [ $this, 'subscription_renewal_payment_failed' ], 11, 2 );
|
|
add_action( 'woocommerce_order_status_failed', [ $this, 'early_subscription_renewal_payment_failed' ], 11, 1 );
|
|
}
|
|
|
|
public function subscription_renewal_payment_failed( $subscription, $order ) {
|
|
$subscription_id = $subscription->get_id();
|
|
$order_id = $order->get_id();
|
|
$this->email = $subscription->get_billing_email();
|
|
|
|
$this->process( $subscription_id, $order_id );
|
|
}
|
|
|
|
public function early_subscription_renewal_payment_failed( $order_id ) {
|
|
$order = wc_get_order( $order_id );
|
|
$subscription_id = $order->get_meta( '_subscription_renewal_early' );
|
|
if ( empty( $subscription_id ) || 'failed' !== $order->get_status() || ! empty( $order->get_meta( 'bwfan_renewal_payment_failed' ) ) ) {
|
|
return;
|
|
}
|
|
|
|
$this->email = $order->get_billing_email();
|
|
|
|
$this->process( $subscription_id, $order_id );
|
|
}
|
|
|
|
/**
|
|
* Make the required data for the current event and send it asynchronously.
|
|
*
|
|
* @param $subscription_id
|
|
* @param $order_id
|
|
*/
|
|
public function process( $subscription_id, $order_id ) {
|
|
$data = $this->get_default_data();
|
|
$data['wc_subscription_id'] = $subscription_id;
|
|
$data['order_id'] = $order_id;
|
|
$data['email'] = $this->email;
|
|
$this->send_async_call( $data );
|
|
}
|
|
|
|
/**
|
|
* 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->subscription, 'wc_subscription' );
|
|
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' );
|
|
}
|
|
|
|
/**
|
|
* 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() {
|
|
$this->subscription = wcs_get_subscription( $this->subscription_id );
|
|
$user_id = $this->get_user_id_event();
|
|
|
|
$data_to_send = [ 'global' => [] ];
|
|
$data_to_send['global']['wc_subscription_id'] = $this->subscription_id;
|
|
$data_to_send['global']['wc_subscription'] = is_object( $this->subscription ) ? $this->subscription : '';
|
|
$data_to_send['global']['email'] = $this->email;
|
|
$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 : '';
|
|
|
|
if ( intval( $user_id ) > 0 ) {
|
|
$data_to_send['global']['user_id'] = $user_id;
|
|
$email = BWFAN_PRO_Common::get_contact_email( $user_id );
|
|
if ( ! empty( $email ) ) {
|
|
$data_to_send['global']['email'] = $email;
|
|
}
|
|
}
|
|
|
|
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__( 'Subscription ID:', 'wp-marketing-automations-pro' ); ?> </strong>
|
|
<a target="_blank" href="<?php echo get_edit_post_link( $global_data['wc_subscription_id'] ); //phpcs:ignore WordPress.Security.EscapeOutput ?>"><?php echo esc_html__( '#' . $global_data['wc_subscription_id'] ); ?></a>
|
|
</li>
|
|
<li>
|
|
<strong><?php echo esc_html__( 'Subscription Email:', 'wp-marketing-automations-pro' ); ?> </strong>
|
|
<?php echo esc_html__( $global_data['email'] ); ?>
|
|
</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 ) {
|
|
$subscription_id = BWFAN_Merge_Tag_Loader::get_data( 'wc_subscription_id' );
|
|
$order_id = BWFAN_Merge_Tag_Loader::get_data( 'wc_order_id' );
|
|
|
|
if ( empty( $order_id ) || intval( $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'],
|
|
'wc_order' => $task_meta['global']['wc_order'],
|
|
);
|
|
BWFAN_Merge_Tag_Loader::set_data( $set_data );
|
|
}
|
|
|
|
if ( ( empty( $subscription_id ) || intval( $subscription_id ) !== intval( $task_meta['global']['wc_subscription_id'] ) ) && function_exists( 'wcs_get_subscription' ) ) {
|
|
$set_data = array(
|
|
'wc_subscription_id' => intval( $task_meta['global']['wc_subscription_id'] ),
|
|
'email' => $task_meta['global']['email'],
|
|
'wc_subscription' => $task_meta['global']['wc_subscription'],
|
|
);
|
|
BWFAN_Merge_Tag_Loader::set_data( $set_data );
|
|
}
|
|
}
|
|
|
|
public function validate_event_data_before_executing_task( $data ) {
|
|
return $this->validate_subscription( $data );
|
|
}
|
|
|
|
/** validate subscription and also subscription status
|
|
*
|
|
* @param $data
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function validate_subscription( $data ) {
|
|
if ( ! isset( $data['wc_subscription_id'] ) || ! function_exists( 'wcs_get_subscription' ) ) {
|
|
return false;
|
|
}
|
|
|
|
$subscription = wcs_get_subscription( $data['wc_subscription_id'] );
|
|
if ( ! $subscription instanceof WC_Subscription ) {
|
|
return false;
|
|
}
|
|
|
|
/** Check subscription early renewal */
|
|
$order = wc_get_order( $data['order_id'] );
|
|
$is_early_renewal = false;
|
|
if ( $order instanceof WC_Order ) {
|
|
$order->update_meta_data( 'bwfan_renewal_payment_failed', true );
|
|
$order->save_meta_data();
|
|
$is_early_renewal = $order->get_meta( '_subscription_renewal_early' );
|
|
}
|
|
|
|
return ( 'active' !== $subscription->get_status() || ! empty( $is_early_renewal ) );
|
|
}
|
|
|
|
/**
|
|
* Capture the async data for the current event.
|
|
* @return array|bool
|
|
*/
|
|
public function capture_async_data() {
|
|
if ( ! function_exists( 'wcs_get_subscription' ) ) {
|
|
return false;
|
|
}
|
|
$this->subscription_id = BWFAN_Common::$events_async_data['wc_subscription_id'];
|
|
$order_id = BWFAN_Common::$events_async_data['order_id'];
|
|
$subscription = wcs_get_subscription( $this->subscription_id );
|
|
$order = wc_get_order( $order_id );
|
|
$this->subscription = $subscription;
|
|
$this->order = $order;
|
|
$this->email = BWFAN_Common::$events_async_data['email'];
|
|
|
|
return $this->run_automations();
|
|
}
|
|
|
|
public function get_email_event() {
|
|
if ( $this->order instanceof WC_Order ) {
|
|
return $this->order->get_billing_email();
|
|
}
|
|
|
|
if ( $this->subscription instanceof WC_Subscription ) {
|
|
return $this->subscription->get_billing_email();
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
public function get_user_id_event() {
|
|
if ( $this->order instanceof WC_Order ) {
|
|
return $this->order->get_user_id();
|
|
}
|
|
|
|
if ( $this->subscription instanceof WC_Subscription ) {
|
|
return $this->subscription->get_user_id();
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* v2 Method: Validate event settings
|
|
*
|
|
* @param $automation_data
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function validate_v2_event_settings( $automation_data ) {
|
|
return $this->validate_subscription( $automation_data );
|
|
}
|
|
|
|
/**
|
|
* v2 capture data.
|
|
*
|
|
* @return array|bool
|
|
*/
|
|
public function capture_v2_data( $automation_data ) {
|
|
|
|
if ( ! function_exists( 'wcs_get_subscription' ) ) {
|
|
return $automation_data;
|
|
}
|
|
|
|
$this->subscription_id = BWFAN_Common::$events_async_data['wc_subscription_id'];
|
|
$this->subscription = wcs_get_subscription( $this->subscription_id );
|
|
$this->order_id = BWFAN_Common::$events_async_data['order_id'];
|
|
$this->order = wc_get_order( $this->order_id );
|
|
$this->email = BWFAN_Common::$events_async_data['email'];
|
|
|
|
$automation_data['wc_subscription_id'] = $this->subscription_id;
|
|
$automation_data['order_id'] = $this->order_id;
|
|
$automation_data['email'] = $this->email;
|
|
|
|
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_woocommerce_subscriptions_active() ) {
|
|
return 'BWFAN_WCS_Renewal_Payment_Failed';
|
|
}
|