<?php
/**
 * The Forminator Result.
 *
 * @package Forminator
 */

if ( ! defined( 'ABSPATH' ) ) {
	die();
}

/**
 * Class Forminator_Result
 *
 * Abstract class for results
 *
 * @since 1.1
 */
abstract class Forminator_Result {
	/**
	 * Entry id
	 *
	 * @var integer
	 */
	protected $entry_id = 0;

	/**
	 * Post data
	 *
	 * @var mixed
	 */
	protected $post_data = false;

	/**
	 * Post type
	 *
	 * @var string
	 */
	protected $post_type = '';

	/**
	 * Forminator_Result Constructor
	 */
	public function __construct() {
		add_action( 'init', array( $this, 'add_rewrite_rules' ) );
		add_action( 'wp_head', array( $this, 'load_results_page' ), 99 );
		add_action( 'wp_print_scripts', array( $this, 'print_scripts' ) );
		add_action( 'wp_print_styles', array( $this, 'print_styles' ) );
	}

	/**
	 * Set Entry
	 *
	 * @param mixed $id Entry ID.
	 * @return void
	 */
	public function set_entry( $id = false ) {
		if ( false === $id ) {
			$this->entry_id = get_query_var( 'entries', 0 );
		} else {
			$this->entry_id = intval( $id );
		}
	}

	/**
	 * Set postdata
	 *
	 * @return void
	 */
	public function set_postdata() {
		if ( Forminator_Front_Action::$prepared_data ) {
			$this->post_data = Forminator_Front_Action::$prepared_data;
		}
	}

	/**
	 * Load results page
	 *
	 * @return void
	 */
	public function load_results_page() {
		$this->set_entry();

		if ( empty( $this->entry_id ) ) {
			return;
		} else {
			$this->print_result_header();
		}
	}

	/**
	 * Print scripts
	 *
	 * @return void
	 */
	public function print_scripts() {
		$this->set_entry();

		if ( empty( $this->entry_id ) ) {
			return;
		}
	}

	/**
	 * Print styles
	 *
	 * @return void
	 */
	public function print_styles() {
		$this->set_entry();
		if ( empty( $this->entry_id ) ) {
			return;
		}
	}

	/**
	 * Print result header
	 *
	 * @return void
	 */
	public function print_result_header() {
	}

	/**
	 * Check if entry is shareable
	 *
	 * @since 1.7
	 *
	 * @param Forminator_Form_Entry_Model $entry Form entry model.
	 *
	 * @return bool
	 */
	public function is_public_allowed( $entry ) {
		return false;
	}

	/**
	 * Build permalink
	 *
	 * @param mixed $id Id.
	 * @return mixed
	 */
	public function build_permalink( $id = false ) {
		if ( empty( $this->entry_id ) ) {
			return $this->post_data['_wp_http_referer'];
		}

		$permalink = get_option( 'permalink_structure' );

		if ( empty( $permalink ) ) {
			$query        = wp_parse_url( $this->post_data['_wp_http_referer'] );
			$query_params = array();

			if ( isset( $query['query'] ) ) {
				parse_str( $query['query'], $query_params );
			}

			$query_params['entries'] = $this->entry_id;

			return home_url( '?' . http_build_query( $query_params, '', '&' ) );
		}

		$http_referer = $this->post_data['_wp_http_referer'];
		$http_referer = preg_replace( '/entries((.*))?/', '', $http_referer );

		return $http_referer . 'entries/' . $this->entry_id . '/';
	}

	/**
	 * Add rewrite rules
	 *
	 * @return void
	 */
	public function add_rewrite_rules() {
		add_rewrite_tag( '%entries%', '([^&]+)' );
		add_rewrite_rule( '^entries/([^/]+)/?', 'index.php?entries=$matches[1]', 'top' );
		/**
		 * Permalink Settings: Numeric http://wordpress/archives/123
		 */
		add_rewrite_rule(
			'archives/(\d+)(?:/(\d+))?/entries/(\d+)/?$',
			'index.php?p=$matches[1]&page=$matches[2]&entries=$matches[3]',
			'top'
		);
		/**
		 * Permalink Settings: Post name http://wordpress/sample-post/
		 */
		add_rewrite_rule(
			'(.?.+?)(?:/([0-9]+))?/entries/(\d+)/?$',
			'index.php?pagename=$matches[1]&page=$matches[2]&entries=$matches[3]',
			'top'
		);
		/**
		 * Permalink Settings: Month and name http://wordpress/2019/05/sample-post/
		 */
		add_rewrite_rule(
			'([0-9]{4})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/entries/(\d+)/?$',
			'index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&page=$matches[4]&entries=$matches[5]',
			'top'
		);
		/**
		 * Permalink Settings: Day and name http://wordpress/2019/05/sample-post/
		 */
		add_rewrite_rule(
			'([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/entries/(\d+)/?$',
			'index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]&entries=$matches[6]',
			'top'
		);
		/**
		 * Common rule at the end!
		 */
		add_rewrite_rule( '(.?.+?)/entries(/(.*))?/?$', 'index.php?pagename=$matches[1]&entries=$matches[3]', 'top' );
		/**
		 * Fires after adding rewrite rules for result page
		 *
		 * @since 1.7
		 */
		do_action( 'forminator_result_add_rewrite_rules' );
	}
}
