FCRM_USER_TO_LIST

Class FCRM_TAG_TO_USER


Source Source

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

class FCRM_USER_TO_LIST {
	/**
	 * Integration code
	 * @var string
	 */
	public static $integration = 'FCRM';
	private $action_code;
	private $action_meta;
	/**
	 * Set up Automator action constructor.
	 */
	public function __construct() {
		$this->action_code = 'FCMRLISTUSER';
		$this->action_meta = 'FCRMLIST';
		$this->define_action();
	}
	/**
	 * Define and register the action by pushing it into the Automator object
	 */
	public function define_action() {

		$action = array(
			'author'             => Automator()->get_author_name(),
			'support_link'       => Automator()->get_author_support_link( $this->action_code, 'integration/fluentcrm/' ),
			'integration'        => self::$integration,
			'code'               => $this->action_code,
			/* translators: Action - LearnDash */
			'sentence'           => sprintf( esc_attr_x( 'Add the user to {{lists:%1$s}}', 'Fluent Forms', 'uncanny-automator' ), $this->action_meta ),
			/* translators: Action - LearnDash */
			'select_option_name' => esc_attr_x( 'Add the user to {{lists}}', 'Fluent Forms', 'uncanny-automator' ),
			'priority'           => 10,
			'accepted_args'      => 1,
			'execution_function' => array( $this, 'list_to_user' ),
			'options'            => [
				Automator()->helpers->recipe->fluent_crm->options->fluent_crm_lists( null, $this->action_meta, [ 'supports_multiple_values' => true ] ),
			],
		);
		Automator()->register->action( $action );
	}

	/**
	 * Validation function when the trigger action is hit
	 *
	 * @param $user_id
	 * @param $action_data
	 * @param $recipe_id
	 */
	public function list_to_user( $user_id, $action_data, $recipe_id ) {

		$lists     = array_map( 'intval', json_decode( $action_data['meta'][ $this->action_meta ] ) );
		$user_info = get_userdata( $user_id );
		if ( $user_info ) {
			$subscriber = Subscriber::where( 'email', $user_info->user_email )->first();
			if ( $subscriber ) {
				$existingLists   = $subscriber->lists;
				$existingListIds = array();
				foreach ( $existingLists as $list ) {
					if ( in_array( $list->id, $lists ) ) {
						$existingListIds[] = $list->title;
					}
				}
				$subscriber->attachLists( $lists );
				if ( empty( $existingListIds ) ) {
					Automator()->complete_action( $user_id, $action_data, $recipe_id );
					return;
				} else {
					if ( count( $existingListIds ) === count( $lists ) ) {
						// ALL lists were already assigned
						$action_data['do-nothing']           = true;
						$action_data['complete_with_errors'] = true;
						$message = sprintf(
						/* translators: 1. List of lists the user is in. */
							_x( 'User was already a member of %1$s', 'FluentCRM', 'uncanny-automator' ),
							implode(
							/* translators: Character to separate items */
								__( ',', 'uncanny-automator' ) . ' ',
								$existingListIds
							)
						);
						Automator()->complete_action( $user_id, $action_data, $recipe_id, $message );
						return;
					}
					Automator()->complete_action( $user_id, $action_data, $recipe_id );
					return;

				}
			} else {
				// User is not a contact
				$args['do-nothing']                  = true;
				$action_data['do-nothing']           = true;
				$action_data['complete_with_errors'] = true;
				$message = sprintf(
				/* translators: 1. The user email */
					_x( 'User is not a contact: %1$s', 'FluentCRM', 'uncanny-automator' ),
					$user_info->user_email
				);
				Automator()->complete_action( $user_id, $action_data, $recipe_id, $message );
				return;
			}
		} else {
			// User does not exist
			$args['do-nothing']                  = true;
			$action_data['do-nothing']           = true;
			$action_data['complete_with_errors'] = true;
			$message = sprintf(
			/* translators: 1. The user id */
				_x( 'User does not exist: %1$s', 'FluentCRM', 'uncanny-automator' ),
				$user_id
			);
			Automator()->complete_action( $user_id, $action_data, $recipe_id, $message );
			return;
		}
	}
}

Methods Methods

  • __construct — Set up Automator action constructor.
  • define_action — Define and register the action by pushing it into the Automator object
  • list_to_user — Validation function when the trigger action is hit