%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/higroup/wp-content/plugins/event-tickets/src/Tribe/Cache/
Upload File :
Create Path :
Current File : /var/www/html/higroup/wp-content/plugins/event-tickets/src/Tribe/Cache/Abstract_Cache.php

<?php


/**
 * Implements methods common to all caches implementations.
 */
abstract class Tribe__Tickets__Cache__Abstract_Cache implements Tribe__Tickets__Cache__Cache_Interface {

	/**
	 * @var array
	 */
	protected $keys = array(
		'posts_with_tickets',
		'posts_without_tickets',
		'past_events',
	);

	/**
	 * @var int The expiration time in seconds.
	 */
	protected $expiration = 60;

	/**
	 * @var bool Whether "past" posts should be included or not.
	 */
	protected $include_past = false;

	/**
	 * Sets the expiration time for the cache.
	 *
	 * @param int $seconds
	 *
	 * @return void
	 */
	public function set_expiration_time( $seconds ) {
		$this->expiration = $seconds;
	}

	/**
	 * @param array $post_types An array of post types overriding the supported ones.
	 *
	 * @return array
	 */
	protected function fetch_posts_with_ticket_types( array $post_types = null ) {
		if ( ! empty( $post_types ) ) {
			$supported_types = array_map( 'esc_sql', $post_types );
		} else {
			$supported_types = array_map( 'esc_sql', (array) tribe_get_option( 'ticket-enabled-post-types', array() ) );
		}

		if ( empty( $supported_types ) ) {
			$ids = array();
		}

		/** @var \wpdb $wpdb */
		global $wpdb;

		$post_types = "('" . implode( "','", $supported_types ) . "')";

		$query = "SELECT DISTINCT(pm.meta_value) FROM {$wpdb->postmeta} pm
				LEFT JOIN {$wpdb->posts} p
				ON pm.meta_value = p.ID
				WHERE p.post_type IN {$post_types}
				AND pm.meta_key LIKE '\\_tribe\\_%\\_for\\_event'
				AND pm.meta_value IS NOT NULL";

		if ( class_exists( 'Tribe__Events__Main' ) ) { // if events are among the supported post types then exclude past events
			if ( in_array( Tribe__Events__Main::POSTTYPE, $supported_types ) && ! $this->include_past ) {
				$past_events = $this->past_events();
				if ( ! empty( $past_events ) ) {
					$past_events_interval = '(' . implode( ',', $past_events ) . ')';
					$query .= " AND pm.meta_value NOT IN {$past_events_interval}";
				}
			}
		}


		$ids = $wpdb->get_col( $query );
		$ids = is_array( $ids ) ? $ids : array();

		if ( empty( $ids ) ) {
			return $ids;
		}

		/**
		 * The above will fetch posts based on the meta data regardless of the status of the post, however post
		 * under the status of `trash` or `auto-draft` shouldn't be in the list.
		 */
		$ids = implode( ',', $ids );
		$query = "SELECT DISTINCT(ID) 
				FROM {$wpdb->posts}
				WHERE ID IN ({$ids})
				AND post_status NOT IN ('auto-draft', 'trash')";

		$ids = $wpdb->get_col( $query );
		return is_array( $ids ) ? $ids : array();
	}

	/**
	 * @param array $post_types An array of post types overriding the supported ones.
	 *
	 * @return array
	 */
	protected function fetch_posts_without_ticket_types( array $post_types = null ) {
		if ( ! empty( $post_types ) ) {
			$supported_types = array_map( 'esc_sql', $post_types );
		} else {
			$supported_types = array_map( 'esc_sql', (array) tribe_get_option( 'ticket-enabled-post-types', array() ) );
		}

		if ( empty( $supported_types ) ) {
			$ids = array();
		}

		/** @var \wpdb $wpdb */
		global $wpdb;

		$post_types = "('" . implode( "','", $supported_types ) . "')";

		$query = "SELECT DISTINCT(ID) FROM {$wpdb->posts}
				WHERE post_type IN {$post_types}
				AND post_status NOT IN ( 'auto-draft', 'trash' )";

		$posts_with_tickets = $this->posts_with_ticket_types( null, true );

		if ( ! empty( $posts_with_tickets ) && is_array( $posts_with_tickets ) ) {
			$excluded = implode( ',', $posts_with_tickets );
			$query .= " AND ID NOT IN ({$excluded})";
		}

		$ids = $wpdb->get_col( $query );

		$ids = is_array( $ids ) ? $ids : array();

		return $ids;
	}

	/**
	 * @return array
	 */
	protected function fetch_past_events() {
		/** @var \wpdb $wpdb */
		global $wpdb;

		$query = $wpdb->prepare( "SELECT ID FROM {$wpdb->posts} p
			LEFT JOIN {$wpdb->postmeta} pm
			ON p.ID = pm.post_id
			WHERE p.post_type = %s
			AND pm.meta_key = '_EventStartDate'
			AND pm.meta_value < NOW()", Tribe__Events__Main::POSTTYPE );

		$ids = $wpdb->get_col( $query );

		return is_array( $ids ) ? $ids : array();
	}

	/**
	 * Whether "past" posts should be included or not.
	 *
	 * Some post types, like Events, have a notion of "past". By default the cache
	 * will not take "past" posts into account.
	 *
	 * @param bool $include_past
	 */
	public function include_past( $include_past ) {
		$this->include_past = $include_past;
	}
}

Zerion Mini Shell 1.0