HEX
Server: LiteSpeed
System: Linux eko108.isimtescil.net 4.18.0-477.21.1.lve.1.el8.x86_64 #1 SMP Tue Sep 5 23:08:35 UTC 2023 x86_64
User: uyarreklamcomtr (11202)
PHP: 7.4.33
Disabled: opcache_get_status
Upload Files
File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/summaries-infoblocks.php.tar
wp-content/plugins/google-analytics-for-wordpress/lite/includes/emails/summaries-infoblocks.php000064400000020305151546712460037363 0ustar00var/www/vhosts/uyarreklam.com.tr/httpdocs<?php

/**
 * Fetching and formatting Info Blocks for Email Summaries class.
 *
 * @since 8.19.0
 */
class MonsterInsights_Summaries_InfoBlocks {

	/**
	 * Source of info blocks content.
	 *
	 * @since 8.19.0
	 */
	const SOURCE_URL = 'https://plugin-cdn.monsterinsights.com/summaries.json';

	/**
	 * Cache key for sent info blocks.
	 */
	const CACHE_KEY = 'monsterinsights_email_summaries_infoblocks_sent';

	/**
	 * Private property to store fetched data.
	 *
	 * @var array
	 * @since 8.19.0
	 */
	private $fetched_data_cache = null;

	/**
	 * Fetch info blocks info from remote and stores it in the $fetched_data_cache property for redundant calls.
	 *
	 * @return array
	 * @since 8.19.0
	 *
	 */
	public function fetch_data() {
		if ( ! is_null( $this->fetched_data_cache ) ) {
			return $this->fetched_data_cache; // Return cached data if available
		}

		$info      = array();

		$res = wp_remote_get( self::SOURCE_URL );

		if ( is_wp_error( $res ) ) {
			return $info;
		}

		$body = wp_remote_retrieve_body( $res );

		if ( empty( $body ) ) {
			return $info;
		}

		$body = json_decode( $body, true );

		$verified_data            = $this->verify_fetched( $body );
		$this->fetched_data_cache = $verified_data; // Store fetched data in cache property
		return $verified_data;
	}

	/**
	 * Verify fetched blocks data.
	 * We need to verify the data to ensure it is valid and contains the necessary keys like status, summaries,
	 * and default (which is a not a great name for something that is actually the global settings for the email summaries).
	 *
	 * @param array $fetched Fetched blocks data.
	 *
	 * @return array
	 * @since 8.19.0
	 *
	 */
	protected function verify_fetched( $fetched ) {
		$info = array();

		if ( ! is_array( $fetched ) ) {
			return $info;
		}

		if ( empty( $fetched['status'] ) || empty( $fetched['summaries'] ) || empty( $fetched['default'] ) ) {
			return $info;
		}

		$info['status']                               = $fetched['status'];
		$info['default']                              = array();
		$info['default'][ $fetched['default']['id'] ] = $fetched['default'];
		$info['summaries']                            = array();

		foreach ( $fetched['summaries'] as $item ) {
			if ( empty( $item['id'] ) ) {
				continue;
			}

			$id = absint( $item['id'] );

			if ( empty( $id ) ) {
				continue;
			}

			$info['summaries'][ $id ] = $item;
		}

		return $info;
	}

	/**
	 * Get info blocks relevant to customer's licence.
	 * Every entry in the $data['summaries'] array has a 'type' key with an array of license types that can view it.
	 * This method filters the data to only include items that the customer's license allows.
	 * 
	 * @return array
	 * @since 8.19.0
	 *
	 */
	protected function get_by_license() {
		$data     = $this->fetch_data();
		$data     = isset( $data['summaries'] ) ? $data['summaries'] : '';
		$filtered = array();

		if ( empty( $data ) || ! is_array( $data ) ) {
			return $filtered;
		}

		$has_level    = monsterinsights_is_pro_version() ? MonsterInsights()->license->get_license_type() : false;
		$license_type = $has_level ? $has_level : 'lite';

		foreach ( $data as $key => $item ) {

			if ( ! isset( $item['type'] ) || ! is_array( $item['type'] ) ) {
				continue;
			}

			if ( ! in_array( $license_type, $item['type'], true ) ) {
				continue;
			}

			$filtered[ $key ] = $item;
		}

		return $filtered;
	}

	/**
	 * Filter info blocks by current date.
	 * This method filters the data provided by the get_by_license method to only include items that are currently active.
	 * Some of the items may have a start and end date, so we need to check if the current date is between the start and end date.
	 *
	 * @return array
	 * @since 8.19.0
	 *
	 */
	protected function filter_by_current_date( $data ) {
		if ( empty( $data ) ) {
			return;
		}

		// Loop through the $data, check if the items have start & end date. If start & end date range available in current date then add that item to a new array
		$data_by_date = array();

		foreach ( $data as $key => $item ) {
			$start        = isset( $item['start'] ) ? $item['start'] : '';
			$end          = isset( $item['end'] ) ? $item['end'] : '';
			$current_time = time();

			if ( ! empty( $start ) && empty( $end ) && $current_time >= $start ) {
				$data_by_date[ $key ] = $item;
			}

			if ( empty( $start ) && ! empty( $end ) && $current_time <= $end ) {
				$data_by_date[ $key ] = $item;
			}

			if ( $current_time >= $start && $current_time <= $end ) {
				$data_by_date[ $key ] = $item;
			}

		}

		if ( empty( $data_by_date ) ) {
			return $data;
		}

		$blocks_sent = get_option( self::CACHE_KEY );

		if ( empty( $blocks_sent ) || ! is_array( $blocks_sent ) ) {
			return $data_by_date;
		}

		// find unused items from the new array and return
		$filtered_blocks = array_diff_key( $data_by_date, array_flip( $blocks_sent ) );
		if ( ! empty( $filtered_blocks ) ) {
			return $filtered_blocks;
		}

		return $data;
	}

	/**
	 * Get the first block with a valid id.
	 * Needed to ignore blocks with invalid/missing ids.
	 *
	 * @param array $data Blocks array.
	 *
	 * @return array
	 * @since 8.19.0
	 *
	 */
	protected function get_first_with_id( $data ) {

		if ( empty( $data ) || ! is_array( $data ) ) {
			return array();
		}

		foreach ( $data as $item ) {
			$item_id = absint( $item['id'] );
			if ( ! empty( $item_id ) ) {
				return $item;
			}
		}

		return array();
	}

	/**
	 * Get default info blocks. This name might be confusing because the `default` key is used for a set of global settings for the email summaries.
	 *
	 * Retrieves only the default info blocks from the fetched data.
	 *
	 * @return array Returns an array containing the default info block data, or an empty array if not available.
	 * @since 9.4.0
	 *
	 */
	public function get_default_block_data() {
		$all_data = $this->fetch_data();
		$block    = array();

		if ( ! isset( $all_data['default'] ) || empty( $all_data['default'] ) ) {
			return $block; // Return empty array if default data is not available
		}

		$block = $all_data['default'];

		return $block;
	}

	/**
	 * Get next info block that wasn't sent yet.
	 *
	 * Retrieves the next info block to be included in the email summary.
	 * It checks for license-specific blocks first, then falls back to default blocks.
	 * If all blocks have been sent, it resends the most recent block.
	 *
	 * @return array Returns an array containing the next info block data, or an empty array if no block is available.
	 * @since 8.19.0
	 *
	 */
	public function get_next() {
		$data  = $this->get_by_license();
		$block = array();

		// if there is no data related to license then send default info block
		if ( empty( $data ) || ! is_array( $data ) ) {
			$all_data = $this->fetch_data();

			if ( ! isset( $all_data['default'] ) || empty( $all_data['default'] ) ) {
				return $block;
			}

			$data = $all_data['default'];
		} else {
			$data = $this->filter_by_current_date( $data );
		}

		$blocks_sent = get_option( self::CACHE_KEY );

		if ( empty( $blocks_sent ) || ! is_array( $blocks_sent ) ) {
			$block = $this->get_first_with_id( $data );
		}

		if ( empty( $block ) ) {
			// check for new info block
			$unused_info_blocks = array_diff_key( $data, array_flip( $blocks_sent ) );

			if ( ! empty( $unused_info_blocks ) ) {
				$block = $this->get_first_with_id( $unused_info_blocks );
			} else {
				// if there is no new block then send the recent info block again
				$block = $this->get_first_with_id( $data );
			}

		}

		return $block;
	}

	/**
	 * Register a block as sent.
	 * This call is important because Summaries are stored as an array, but we only want to send one block per email.
	 * Once we call this function, the block is marked as sent and will not be sent again until the entire array is cleared.
	 * 
	 * @param array $info_block Info block.
	 *
	 * @since 8.19.0
	 *
	 */
	public function register_sent( $info_block ) {
		$block_id = isset( $info_block['id'] ) ? absint( $info_block['id'] ) : false;

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

		$blocks = get_option( self::CACHE_KEY );

		if ( empty( $blocks ) || ! is_array( $blocks ) ) {
			update_option( self::CACHE_KEY, array( $block_id ) );

			return;
		}

		if ( in_array( $block_id, $blocks, true ) ) {
			return;
		}

		$blocks[] = $block_id;

		update_option( self::CACHE_KEY, $blocks );
	}

}