FCRM_ADD_USER_TO_LIST

Class FCRM_ADD_USER_TO_LIST


Source Source

File: src/integrations/fluent-crm/triggers/fcrm-add-user-to-list.php

class FCRM_ADD_USER_TO_LIST {
	/**
	 * Integration code
	 * @var string
	 */
	public static $integration = 'FCRM';
	/**
	 * @var string
	 */
	private $trigger_code;
	/**
	 * @var string
	 */
	private $trigger_meta;
	/**
	 * Set up Automator trigger constructor.
	 */
	public function __construct() {
		$this->trigger_code = 'FCRMUSERLIST';
		$this->trigger_meta = 'FCRMLIST';
		$this->define_trigger();
	}
	/**
	 * Define and register the trigger by pushing it into the Automator object
	 */
	public function define_trigger() {

		$trigger = array(
			'author'              => Automator()->get_author_name( $this->trigger_code ),
			'support_link'        => Automator()->get_author_support_link( $this->trigger_code, 'integration/fluentcrm/' ),
			'integration'         => self::$integration,
			'code'                => $this->trigger_code,
			/* translators: Logged-in trigger - Fluent Forms */
			'sentence'            => sprintf( esc_attr_x( 'A user is added to {{a list:%1$s}}', 'Fluent Forms', 'uncanny-automator' ), $this->trigger_meta ),
			/* translators: Logged-in trigger - Fluent Forms */
			'select_option_name'  => esc_attr_x( 'A user is added to {{a list}}', 'Fluent Forms', 'uncanny-automator' ),
			'action'              => 'fluentcrm_contact_added_to_lists',
			'priority'            => 20,
			'accepted_args'       => 2,
			'validation_function' => array( $this, 'contact_added_to_lists' ),
			'options'             => [
				Automator()->helpers->recipe->fluent_crm->options->fluent_crm_lists(),
			],
		);
		Automator()->register->trigger( $trigger );
		return;
	}
	/*
	 *
	 */
	public function contact_added_to_lists( $attachedListIds, $subscriber ) {

		$user_id = Automator()
			->helpers
			->recipe
			->fluent_crm
			->get_subscriber_user_id( $subscriber );
		if ( 0 === $user_id ) {
			// There is no wp user associated with the subscriber
			return;
		}
		$list_ids = Automator()
			->helpers
			->recipe
			->fluent_crm
			->get_attached_list_ids( $attachedListIds );
		if ( empty( $list_ids ) ) {
			// sanity check
			return;
		}
		$matched_recipes = Automator()
			->helpers
			->recipe
			->fluent_crm
			->match_single_condition( $list_ids, 'int', $this->trigger_meta, $this->trigger_code );
		if ( ! empty( $matched_recipes ) ) {
			foreach ( $matched_recipes as $matched_recipe ) {
				if ( ! Automator()->is_recipe_completed( $matched_recipe->recipe_id, $user_id ) ) {
					$args = [
						'code'            => $this->trigger_code,
						'meta'            => $this->trigger_meta,
						'recipe_to_match' => $matched_recipe->recipe_id,
						'ignore_post_id'  => true,
						'user_id'         => $user_id,
					];
					$result = Automator()->maybe_add_trigger_entry( $args, false );
					if ( $result ) {
						foreach ( $result as $r ) {
							if ( true === $r['result'] ) {
								if ( isset( $r['args'] ) && isset( $r['args']['get_trigger_id'] ) ) {
									$insert = [
										'user_id'        => $user_id,
										'trigger_id'     => (int) $r['args']['trigger_id'],
										'trigger_log_id' => $r['args']['get_trigger_id'],
										'meta_key'       => $this->trigger_meta,
										'meta_value'     => maybe_serialize( $matched_recipe->matched_value ),
										'run_number'     => $r['args']['run_number'],
									];
									Automator()->insert_trigger_meta( $insert );
									$insert = [
										'user_id'        => $user_id,
										'trigger_id'     => (int) $r['args']['trigger_id'],
										'trigger_log_id' => $r['args']['get_trigger_id'],
										'meta_key'       => 'subscriber_id',
										'meta_value'     => $subscriber->id,
										'run_number'     => $r['args']['run_number'],
									];
									Automator()->insert_trigger_meta( $insert );
								}
								Automator()->maybe_trigger_complete( $r['args'] );
							}
						}
					}
				}
			}
		}
	}
}

Methods Methods