WC_PURCHASESPRODUCT::payment_completed( $order_id )
Validation function when the trigger action is hit
Contents
Parameters Parameters
- $order_id
-
(Required)
Source Source
File: src/integrations/woocommerce/triggers/wc-purchasesproduct.php
public function payment_completed( $order_id ) { if ( empty( $order_id ) || 0 === $order_id ) { return; } $order = wc_get_order( $order_id ); if ( ! $order instanceof \WC_Order ) { return; } $user_id = $order->get_user_id(); if ( 0 === $user_id ) { // Its a logged in recipe and // user ID is 0. Skip process return; } $recipes = Automator()->get->recipes_from_trigger_code( $this->trigger_code ); $required_product = Automator()->get->meta_from_recipes( $recipes, $this->trigger_meta ); $trigger_condition = Automator()->get->meta_from_recipes( $recipes, $this->trigger_condition ); $matched_recipe_ids = array(); $trigger_cond_ids = array(); if ( empty( $recipes ) ) { return; } if ( empty( $required_product ) ) { return; } if ( empty( $trigger_condition ) ) { return; } //Add where Product ID is set for trigger foreach ( $recipes as $recipe_id => $recipe ) { foreach ( $recipe['triggers'] as $trigger ) { $trigger_id = $trigger['ID'];//return early for all products if ( ! isset( $trigger_condition[ $recipe_id ] ) ) { continue; } if ( ! isset( $trigger_condition[ $recipe_id ][ $trigger_id ] ) ) { continue; } if ( (string) current_action() === (string) $trigger_condition[ $recipe_id ][ $trigger_id ] ) { $trigger_cond_ids[] = $recipe_id; } } } if ( empty( $trigger_cond_ids ) ) { return; } if ( 'woocommerce_order_status_completed' === (string) current_action() ) { if ( 'completed' !== $order->get_status() ) { return; } } $items = $order->get_items(); $product_ids = array(); /** @var WC_Order_Item_Product $item */ foreach ( $items as $item ) { $product_ids[] = $item->get_product_id(); } //Add where Product ID is set for trigger foreach ( $recipes as $recipe_id => $recipe ) { foreach ( $recipe['triggers'] as $trigger ) { if ( ! in_array( $recipe_id, $trigger_cond_ids, false ) ) { continue; } $trigger_id = $trigger['ID'];//return early for all products if ( ! isset( $required_product[ $recipe_id ] ) ) { continue; } if ( ! isset( $required_product[ $recipe_id ][ $trigger_id ] ) ) { continue; } if ( intval( '-1' ) === intval( $required_product[ $recipe_id ][ $trigger_id ] ) || in_array( $required_product[ $recipe_id ][ $trigger_id ], $product_ids ) ) { $matched_recipe_ids[] = [ 'recipe_id' => $recipe_id, 'trigger_id' => $trigger_id, ]; } } } if ( empty( $matched_recipe_ids ) ) { return; } foreach ( $matched_recipe_ids as $matched_recipe_id ) { $pass_args = [ 'code' => $this->trigger_code, 'meta' => $this->trigger_meta, 'user_id' => $user_id, 'recipe_to_match' => $matched_recipe_id['recipe_id'], 'trigger_to_match' => $matched_recipe_id['trigger_id'], 'ignore_post_id' => true, ]; $args = Automator()->process->user->maybe_add_trigger_entry( $pass_args, false ); //Adding an action to save order id in trigger meta do_action( 'uap_wc_trigger_save_meta', $order_id, $matched_recipe_id['recipe_id'], $args, 'product' ); if ( $args ) { foreach ( $args as $result ) { if ( true === $result['result'] ) { Automator()->process->user->maybe_trigger_complete( $result['args'] ); } } } } }
Expand full source code Collapse full source code View on Github