403Webshell
Server IP : 65.109.86.83  /  Your IP : 216.73.217.65
Web Server : nginx/1.14.1
System : Linux libra 4.18.0-553.51.1.el8_10.x86_64 #1 SMP Wed Apr 30 20:24:04 UTC 2025 x86_64
User : root ( 0)
PHP Version : 8.3.31
Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/html/wp-content/plugins/thrive-quiz-builder/includes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/wp-content/plugins/thrive-quiz-builder/includes/class-tqb-template-manager.php
<?php

/**
 * Created by PhpStorm.
 * User: Ovidiu
 * Date: 10/4/2016
 * Time: 4:28 PM
 */
class TQB_Template_Manager extends TQB_Request_Handler {

	const OPTION_TPL_META = 'tqb_saved_tpl_meta';
	const OPTION_TPL_CONTENT = 'tqb_saved_tpl';

	/**
	 * @var $instance TQB_Template_Manager
	 */
	protected static $instance = null;

	/**
	 * Row from DB
	 *
	 * @var $variation array
	 */
	protected $variation;

	/**
	 * Templates config for variation templates
	 *
	 * @var array
	 */
	protected $config = array();

	/**
	 * Variation Manager
	 *
	 * @var null|TQB_Variation_Manager
	 */
	protected $variation_manager = null;

	/**
	 * TQB_Template_Manager constructor.
	 *
	 * @param $variation
	 */
	protected function __construct( $variation ) {
		$this->variation          = $variation;
		$this->variation['style'] = TQB_Post_meta::get_quiz_style_meta( $variation['quiz_id'] );
		$this->variation_manager  = new TQB_Variation_Manager( $variation['quiz_id'], $variation['page_id'] );
		$this->config();
	}

	protected function config() {
		$this->config = TQB_Template_Manager::get_default_templates();
	}

	public static function get_default_templates() {
		return include tqb()->plugin_path( 'tcb-bridge/editor-templates/config.php' );
	}

	/**
	 * Returns the instance of the design
	 *
	 * @param null $variation
	 *
	 * @return TQB_Template_Manager
	 */
	public static function get_instance( $variation = null ) {

		if ( ! is_array( $variation ) || empty( $variation ) ) {
			if ( ! empty( $_REQUEST[ Thrive_Quiz_Builder::VARIATION_QUERY_KEY_NAME ] ) ) {
				$variation = tqb_get_variation( absint( $_REQUEST[ Thrive_Quiz_Builder::VARIATION_QUERY_KEY_NAME ] ) );
			} else {
				$variation = array();
			}
		}

		if ( ! self::$instance ) {
			self::$instance = new self( $variation );
		}

		if ( isset( $variation['id'] ) && self::$instance->variation['id'] != $variation['id'] ) {
			self::$instance = new self( $variation );
		}

		return self::$instance;
	}

	/**
	 * header bars and footer bars should have the same templates
	 *
	 * @param string $tpl
	 *
	 * @return string
	 */
	public static function type( $tpl ) {
		if ( empty( $tpl ) ) {
			return '';
		}
		$parts = explode( '|', $tpl );

		return $parts[0];
	}

	/**
	 * get the type and tpl name from a design template name
	 *
	 * @param string $tpl
	 *
	 * @return array
	 */
	public static function tpl_type_key( $tpl ) {
		if ( empty( $tpl ) ) {
			return array( '', '' );
		}

		list( $type, $key ) = explode( '|', $tpl );

		return array(
			$type,
			$key,
		);
	}

	/**
	 * Returns the variation templates set in config.php for a specific design type
	 *
	 * @param     $variation_type
	 * @param int $quiz_id
	 *
	 * @return array
	 */
	public static function get_templates( $variation_type = '', $quiz_id = 0 ) {

		$all_default_templates = TQB_Template_Manager::get_default_templates();
		$quiz_style            = TQB_Post_meta::get_quiz_style_meta( $quiz_id );
		$quiz_type             = TQB_Post_meta::get_quiz_type_meta( $quiz_id, true );
		$variation_templates   = $all_default_templates[ $variation_type ];

		$templates = [];

		if ( 'survey' === $quiz_type ) {
			if ( Thrive_Quiz_Builder::QUIZ_STRUCTURE_ITEM_RESULTS === $variation_type ) {
				$templates['template_4'] = $variation_templates['template_4'];
			} elseif ( Thrive_Quiz_Builder::QUIZ_STRUCTURE_ITEM_SPLASH_PAGE === $variation_type ) {
				$templates['template_3'] = $variation_templates['template_3'];
			} elseif ( Thrive_Quiz_Builder::QUIZ_STRUCTURE_ITEM_OPTIN === $variation_type ) {
				$templates['template_1'] = $variation_templates['template_1'];
			}
		} else {
			unset( $variation_templates['template_4'] );

			if ( Thrive_Quiz_Builder::QUIZ_STRUCTURE_ITEM_SPLASH_PAGE === $variation_type ) {
				unset( $variation_templates['template_3'] );
			}

			foreach ( $variation_templates as $slug => $tpl ) {
				$excluded_quiz_styles = ! empty( $tpl['quiz_styles_excluded'] ) && is_array( $tpl['quiz_styles_excluded'] ) ? $tpl['quiz_styles_excluded'] : array();
				if ( in_array( $quiz_style, $tpl['quiz_styles'] ) && ! in_array( $quiz_style, $excluded_quiz_styles ) ) {
					$templates[ $slug ] = $tpl;
				}
			}
		}

		foreach ( $templates as $tpl => $tpl_data ) {
			$templates[ $tpl ]['key']       = $variation_type . '|' . $tpl;
			$templates[ $tpl ]['thumbnail'] = tqb()->plugin_url( 'tcb-bridge/editor-templates/' . $variation_type . '/thumbnails/style-' . $quiz_style . '/' . $tpl . '.png' );
		}

		return $templates;
	}

	/**
	 * API entry point for templates
	 *
	 * @param $action
	 *
	 * @return false|string json
	 */
	public function api( $action ) {
		$method = 'api_' . strtolower( $action );

		if ( ! method_exists( $this, $method ) ) {
			return false;
		}

		$result = call_user_func( array( $this, $method ) );

		exit( json_encode( $result ) );
	}

	/**
	 * exchange data from $template to this->variation or vice-versa
	 *
	 * @param array  $template
	 * @param string $dir can either be left-right or right-left
	 *
	 * @return array
	 */
	protected function interchange_data( $template, $dir = 'left -> right' ) {
		$fields = array(
			Thrive_Quiz_Builder::FIELD_CONTENT,
			Thrive_Quiz_Builder::FIELD_INLINE_CSS,
			Thrive_Quiz_Builder::FIELD_USER_CSS,
			Thrive_Quiz_Builder::FIELD_CUSTOM_FONTS,
			Thrive_Quiz_Builder::FIELD_TYPEFOCUS,
			Thrive_Quiz_Builder::FIELD_MASONRY,
			Thrive_Quiz_Builder::FIELD_ICON_PACK,
		);

		foreach ( $fields as $field ) {
			if ( strpos( $dir, 'left' ) === 0 ) {
				$this->variation[ $field ] = $template[ $field ];
			} else {
				$template[ $field ] = $this->variation[ $field ];
			}
		}

		return $template;
	}

	/**
	 * --------------------------------------------------------------------
	 * -------------------- API-calls after this point -------------------- :)
	 * --------------------------------------------------------------------
	 */


	/**
	 * Choose a new template
	 */
	public function api_choose() {
		if ( ! ( $template = $this->param( 'tpl' ) ) ) {
			return false;
		}
		/**
		 * Delete current variations
		 */
		TQB_Variation_Manager::delete_variation( array( 'parent_id' => $this->variation['id'] ) );
		if ( strpos( $template, 'user-saved-template-' ) === 0 ) {
			/* at this point, the template is one of the previously saved templates (saved by the user) -
				it holds the index from the option array which needs to be loaded */

			$contents = get_option( self::OPTION_TPL_CONTENT );
			$meta     = get_option( self::OPTION_TPL_META );

			$template_index = intval( str_replace( 'user-saved-template-', '', $template ) );

			/* make sure we don't mess anything up */
			if ( empty( $contents ) || empty( $meta ) || ! isset( $contents[ $template_index ] ) ) {
				return '';
			}

			$tpl_data = $contents[ $template_index ];
			$template = $meta[ $template_index ]['tpl'];

			$this->interchange_data( $tpl_data, 'left -> right' );

			$this->variation[ Thrive_Quiz_Builder::FIELD_TEMPLATE ] = $template;

			if ( ! empty( $meta[ $template_index ]['dynamic_content'] ) ) {
				$child = TQB_State_Manager::get_instance( $this->variation )->build_child_variation_arr( $this->variation );
				foreach ( $meta[ $template_index ]['dynamic_content'] as $i => $dynamic_content ) {
					TQB_Variation_Manager::save_child_variation( array_merge( $child, array(
						'post_title' => $dynamic_content['post_title'],
						'content'    => $dynamic_content['content'],
						'tcb_fields' => $dynamic_content['tcb_fields'],
					) ) );
				}
			}
		} else {
			$this->variation[ Thrive_Quiz_Builder::FIELD_TEMPLATE ] = $template;
			$this->variation[ Thrive_Quiz_Builder::FIELD_CONTENT ]  = TCB_Hooks::tqb_editor_get_template_content( $this->variation, $template );
		}

		$this->variation_manager->save_variation( $this->variation );
		$variation = empty( $this->variation['id'] ) ? $this->variation : tqb_get_variation( $this->variation['id'] );

		return TQB_State_Manager::get_instance( $variation )->state_data( $this->variation );
	}

	/**
	 * reset contents for the current template
	 */
	public function api_reset() {

		$this->variation[ Thrive_Quiz_Builder::FIELD_CONTENT ] = TCB_Hooks::tqb_editor_get_template_content( $this->variation );

		//Delete Child Variations
		TQB_Variation_Manager::delete_variation( array( 'parent_id' => $this->variation['id'] ) );
		$this->variation_manager->save_variation( $this->variation );

		return TQB_State_Manager::get_instance( $this->variation )->state_data( $this->variation );
	}

	/**
	 * Save the current variation config and content as a template so that it can later be applied to other variation
	 */
	public function api_save() {
		$template_content = $this->interchange_data( array(), 'right -> left' );

		list( $type, $key ) = self::tpl_type_key( $this->variation[ Thrive_Quiz_Builder::FIELD_TEMPLATE ] );


		$variation_manager = new TQB_Variation_Manager( $this->variation['quiz_id'], $this->variation['page_id'] );
		$template_meta     = array(
			'name'            => $this->param( 'name', '' ),
			'tpl'             => $this->variation[ Thrive_Quiz_Builder::FIELD_TEMPLATE ],
			'type'            => $type,
			'key'             => $key,
			'date'            => date( 'Y-m-d' ),
			'dynamic_content' => $variation_manager->get_page_variations( array( 'parent_id' => $this->variation['id'] ) ),
		);

		$templates_content = get_option( self::OPTION_TPL_CONTENT, array() );
		$templates_meta    = get_option( self::OPTION_TPL_META, array() );

		$templates_content [] = $template_content;
		$templates_meta []    = $template_meta;

		// make sure these are not autoloaded, as it is a potentially huge array
		add_option( self::OPTION_TPL_CONTENT, null, '', 'no' );

		update_option( self::OPTION_TPL_CONTENT, $templates_content );
		update_option( self::OPTION_TPL_META, $templates_meta );

		return array(
			'message' => __( 'Template saved.', 'thrive-quiz-builder' ),
			'list'    => $this->api_get_saved( true ),
		);
	}

	/**
	 * get user-saved templates
	 *
	 * @param bool $return whether or not to return the $html or output it and exit
	 *
	 * @return string
	 */
	public function api_get_saved( $return = false ) {
		$only_current_template = (int) $this->param( 'current_template' );
		$current_quiz_type     = $this->param( 'quiz_type' );
		$html                  = '';
		/**
		 * prepare for multiple templates applying to the same variation type
		 */
		if ( ! empty( $this->variation[ Thrive_Quiz_Builder::FIELD_TEMPLATE ] ) ) {
			$types = array( self::type( $this->variation[ Thrive_Quiz_Builder::FIELD_TEMPLATE ] ) );

			$templates = get_option( self::OPTION_TPL_META );
			$templates = empty( $templates ) ? array() : array_reverse( $templates, true ); // order by date DESC

			$img = tqb()->plugin_url() . 'tcb-bridge/editor-templates/%s/thumbnails/style-' . $this->variation['style'] . '/%s';

			foreach ( $templates as $index => $template ) {
				/* make sure we only load the same type, e.g. tqb_splash */
				if ( ! in_array( $template['type'], $types ) ) {
					continue;
				}

				/**
				 * If the template has dynamic content we shouldnt displayed other quiz's types
				 */
				if ( ! empty( $template['dynamic_content'] ) ) {
					$quiz_id = $template['dynamic_content'][0]['quiz_id'];
					if ( TQB_Post_meta::get_quiz_type_meta( $quiz_id, true ) !== $current_quiz_type ) {
						continue;
					}

				}
				if ( ! empty( $only_current_template ) && $this->variation[ Thrive_Quiz_Builder::FIELD_TEMPLATE ] != $template[ Thrive_Quiz_Builder::FIELD_TEMPLATE ] ) {
					continue;
				}

				$item = '';
				$item .= '<div class="cloud-template-item modal-item click" data-fn="selectTemplate" data-key="user-saved-template-' . $index . '">';
				$item .= '<div class="modal-title-w-options">';
				$item .= '<div class="cb-template-name-wrapper">';
				$item .= '<div class="cb-template-name">' . $template['name'] . '</div>';
				$item .= '<div class="cb-template-date">' . ' [' . strftime( '%d.%m.%y', strtotime( $template['date'] ) ) . ']' . '</div>';
				$item .= '</div>';
				$item .= tcb_icon( 'check-light', true );
				$item .= '<div class="tcb-dropdown-dots click" data-fn="openOptionsTooltip">';
				$item .= tcb_icon( 'three-dots', true );
				$item .= '</div>';
				$item .= '<div class="tcb-template-options-tooltip">';
				$item .= '<button class="tcb-tooltip-row click" data-fn="deleteConfirmation">' . 'Delete' . '</button>';
				$item .= '</div>';
				$item .= '</div>';
				$item .= '<div class="cloud-item click">';
				$item .= '<div class="symbol-delete-notice " style="display: none">';
				$item .= '<span class="click" data-fn="hideDelete">' . tcb_icon( 'close2', true ) . '</span>';
				$item .= '<div class="delete-text mt-10">' . 'Are you sure?' . '</div>';
				$item .= '<div class="delete action mt-10 mb-10">';
				$item .= '<button class="click" data-fn="hideDelete">' . 'No, cancel' . '</button>';
				$item .= '<button  class="click" data-id="<#= item.id #>" data-fn="deleteSavedTemplate">' . 'Yes, delete' . '</button>';
				$item .= '</div>';
				$item .= '</div>';
				$item .= '<div class="cb-template-wrapper">';
				$item .= '<img class="cb-template-thumbnail" src="' . $img . '">';
				$item .= '</div>';
				$item .= '</div>';
				$item .= '</div>';

				$item = sprintf( $item, $template['type'], $template['key'] . '.png' );
				$html .= $item;
			}
		}

		$html = $html ? $html : __( 'No saved templates found', 'thrive-quiz-builder' );

		if ( $return ) {
			return $html;
		}
		echo $html; // phpcs:ignore
		exit();
	}

	/**
	 * Deletes a template from the database.
	 *
	 * @return string
	 */
	public function api_delete() {
		$tpl_index = (int) str_replace( 'user-saved-template-', '', $this->param( 'tpl' ) );

		$contents = get_option( self::OPTION_TPL_CONTENT );
		$meta     = get_option( self::OPTION_TPL_META );

		if ( ! isset( $contents[ $tpl_index ] ) || ! isset( $meta[ $tpl_index ] ) ) {
			return $this->api_get_saved();
		}

		array_splice( $contents, $tpl_index, 1 );
		array_splice( $meta, $tpl_index, 1 );

		update_option( self::OPTION_TPL_CONTENT, array_values( $contents ) );
		update_option( self::OPTION_TPL_META, array_values( $meta ) );

		return $this->api_get_saved();
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit