WP_VIEWPAGE

Class WP_VIEWPAGE

Contents

  • Methods

  • Source Source

    File: src/integrations/wp/triggers/wp-viewpage.php

    class WP_VIEWPAGE {
    
    	public static $integration = 'WP';
    
    	private $trigger_code;
    	private $trigger_meta;
    
    	/**
    	 * Set up Automator trigger constructor.
    	 */
    	public function __construct() {
    		$this->trigger_code = 'VIEWPAGE';
    		$this->trigger_meta = 'WPPAGE';
    		$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/wordpress-core/' ),
    			'integration'         => self::$integration,
    			'code'                => $this->trigger_code,
    			/* translators: Logged-in trigger - WordPress */
    			'sentence'            => sprintf( esc_attr__( 'A user views {{a page:%1$s}} {{a number of:%2$s}} time(s)', 'uncanny-automator' ), $this->trigger_meta, 'NUMTIMES' ),
    			/* translators: Logged-in trigger - WordPress */
    			'select_option_name'  => esc_attr__( 'A user views {{a page}}', 'uncanny-automator' ),
    			'action'              => 'template_redirect',
    			'priority'            => 90,
    			'accepted_args'       => 1,
    			'validation_function' => array( $this, 'view_page' ),
    			'options'             => [
    				Automator()->helpers->recipe->wp->options->all_pages(),
    				Automator()->helpers->recipe->options->number_of_times(),
    			],
    		);
    
    		Automator()->register->trigger( $trigger );
    
    		return;
    	}
    
    	/**
    	 * Validation function when the trigger action is hit
    	 */
    	public function view_page() {
    
    		global $post;
    
    		// Bail out if the page is not of a post type 'page'.
    		if ( ! is_singular( 'page' ) ) {
    			return;
    		}
    
    		// Bail out if post id is null.
    		if ( ! isset ( $post->ID ) ) {
    			return;
    		}
    
    		// Return if post id is zero or empty. Some plugins like BuddyPress overwrites post id.
    		if ( empty( $post->ID ) ) {
    			return;
    		}
    
    		if ( is_user_logged_in() ) {
    			$user_id = get_current_user_id();
    			$args    = [
    				'code'    => $this->trigger_code,
    				'meta'    => $this->trigger_meta,
    				'post_id' => $post->ID,
    				'user_id' => $user_id,
    			];
    
    			if ( isset( Automator()->process ) && isset( Automator()->process->user ) && Automator()->process->user instanceof Automator_Recipe_Process_User ) {
    				$arr = Automator()->process->user->maybe_add_trigger_entry( $args, false );
    			} else {
    				$arr = Automator()->maybe_add_trigger_entry( $args, false );
    			}
    
    			if ( $arr ) {
    				foreach ( $arr as $result ) {
    					if ( true === $result['result'] ) {
    						if ( isset( Automator()->process ) && isset( Automator()->process->user ) && Automator()->process->user instanceof Automator_Recipe_Process_User ) {
    							Automator()->process->user->maybe_trigger_complete( $result['args'] );
    						} else {
    							Automator()->maybe_trigger_complete( $result['args'] );
    						}
    					}
    				}
    			}
    		}
    	}
    }
    

    Methods Methods