WC_PURCHPROD_DEP
Class WC_PURCHPROD
Source Source
File: src/integrations/woocommerce/triggers/wc-purchprod-dep.php
class WC_PURCHPROD_DEP { /** * Integration code * @var string */ public static $integration = 'WC'; private $trigger_code; private $trigger_meta; /** * Set up Automator trigger constructor. */ public function __construct() { $this->trigger_code = 'WCPURCHPROD'; $this->trigger_meta = 'WOOPRODUCT'; $this->define_trigger(); } /** * Define and register the trigger by pushing it into the Automator object */ public function define_trigger() { $options = Automator()->helpers->recipe->woocommerce->options->all_wc_products( esc_attr__( 'Product', 'uncanny-automator' ) ); $options['options'] = array( '-1' => esc_attr__( 'Any product', 'uncanny-automator' ) ) + $options['options']; $trigger = array( 'author' => Automator()->get_author_name( $this->trigger_code ), 'support_link' => Automator()->get_author_support_link( $this->trigger_code, 'integration/woocommerce/' ), 'integration' => self::$integration, 'code' => $this->trigger_code, 'is_deprecated' => true, /* translators: Logged-in trigger - WooCommerce */ 'sentence' => sprintf( esc_attr__( 'A user purchases {{a product:%1$s}} {{a number of:%2$s}} time(s)', 'uncanny-automator' ), $this->trigger_meta, 'NUMTIMES' ), /* translators: Logged-in trigger - WooCommerce */ 'select_option_name' => esc_attr__( 'A user purchases {{a product}}', 'uncanny-automator' ), 'action' => [ 'woocommerce_order_status_completed', 'woocommerce_thankyou', 'woocommerce_payment_complete', ], 'priority' => 99, 'accepted_args' => 1, 'validation_function' => array( $this, 'payment_completed' ), 'options' => [ Automator()->helpers->recipe->options->number_of_times(), $options, ], ); Automator()->register->trigger( $trigger ); return; } /** * Validation function when the trigger action is hit * * @param $order_id */ public function payment_completed( $order_id ) { if ( ! $order_id ) { return; } $order = wc_get_order( $order_id ); if ( ! $order ) { return; } if ( 'completed' !== $order->get_status() ) { 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, 'WOOPRODUCT' ); $matched_recipe_ids = array(); //Add where option is set to Any product foreach ( $recipes as $recipe_id => $recipe ) { foreach ( $recipe['triggers'] as $trigger ) { $trigger_id = $trigger['ID'];//return early for all products if ( isset( $required_product[ $recipe_id ] ) && isset( $required_product[ $recipe_id ][ $trigger_id ] ) ) { if ( - 1 === intval( $required_product[ $recipe_id ][ $trigger_id ] ) ) { $matched_recipe_ids[] = [ 'recipe_id' => $recipe_id, 'trigger_id' => $trigger_id, ]; break; } } } } $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 ) { $trigger_id = $trigger['ID'];//return early for all products if ( isset( $required_product[ $recipe_id ] ) && isset( $required_product[ $recipe_id ][ $trigger_id ] ) ) { if ( 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 ) ) { 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()->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()->maybe_trigger_complete( $result['args'] ); } } } } } return; } }
Expand full source code Collapse full source code View on Github
Methods Methods
- __construct — Set up Automator trigger constructor.
- define_trigger — Define and register the trigger by pushing it into the Automator object
- load_options
- payment_completed — Validation function when the trigger action is hit