PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/ $#$#$#

Dir : /home/trave494/princesspicnicevents.com/wp-content/plugins/pinterest-for-woocommerce/src/
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64
IP: 209.182.202.254
Choose File :

Url:
Dir : //home/trave494/princesspicnicevents.com/wp-content/plugins/pinterest-for-woocommerce/src/Feeds.php

<?php
/**
 * Pinterest for WooCommerce Feeds related helper methods
 *
 * @package     Pinterest_For_WooCommerce/Classes/
 * @version     1.0.0
 */

namespace Automattic\WooCommerce\Pinterest;

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

use \Exception;
use Automattic\WooCommerce\Pinterest\API\Base;
use Automattic\WooCommerce\Pinterest\Exception\PinterestApiLocaleException;

/**
 * Class handling fetch methods for feed profiles.
 */
class Feeds {

	/**
	 * Get a specific merchant feed using the given arguments.
	 *
	 * @param string $merchant_id The merchant ID the feed belongs to.
	 * @param string $feed_id     The ID of the feed.
	 *
	 * @return object The feed profile object.
	 *
	 * @throws Exception PHP Exception.
	 */
	public static function get_merchant_feed( $merchant_id, $feed_id ) {

		try {

			// Get the feeds of the merchant.
			$feeds = Base::get_merchant_feeds( $merchant_id, true );

			if ( 'success' !== $feeds['status'] ) {
				throw new Exception( esc_html__( 'Could not get feed info.', 'pinterest-for-woocommerce' ) );
			}

			if ( ! is_array( $feeds['data'] ) ) {
				throw new Exception( esc_html__( 'Wrong feed info.', 'pinterest-for-woocommerce' ) );
			}

			foreach ( $feeds['data'] as $feed_profile ) {

				// Get the feed with the requested id if exists.
				if ( $feed_id === $feed_profile->id ) {
					return $feed_profile;
				}
			}

			// No feed found.
			throw new Exception( esc_html__( 'No feed found with the requested ID.', 'pinterest-for-woocommerce' ) );

		} catch ( Exception $e ) {

			Logger::log( $e->getMessage(), 'error' );

			throw $e;
		}
	}


	/**
	 * Get merchant's feeds.
	 *
	 * @param string $merchant_id The merchant ID.
	 *
	 * @return array The feed profile objects.
	 *
	 * @throws Exception PHP Exception.
	 */
	public static function get_merchant_feeds( $merchant_id ) {

		try {
			$feeds = API\Base::get_merchant_feeds( $merchant_id, true );

			if ( 'success' !== $feeds['status'] ) {
				throw new Exception( esc_html__( 'Could not get feed info.', 'pinterest-for-woocommerce' ) );
			}

			if ( ! is_array( $feeds['data'] ) ) {
				throw new Exception( esc_html__( 'Wrong feed info.', 'pinterest-for-woocommerce' ) );
			}

			return $feeds['data'];

		} catch ( Exception $e ) {

			Logger::log( $e->getMessage(), 'error' );

			throw $e;
		}
	}

	/**
	 * Invalidate the merchant feeds cache.
	 *
	 * @since 1.2.13
	 * @param string $merchant_id The merchant ID.
	 * @return void
	 */
	public static function invalidate_get_merchant_feeds_cache( $merchant_id ) {
		API\Base::invalidate_merchant_feeds_cache( $merchant_id, true );
	}

	/**
	 * Verify if the local feed is already registered to the merchant.
	 * Return its ID if it is.
	 *
	 * @param string $merchant_id The merchant ID.
	 *
	 * @throws PinterestApiLocaleException No valid locale found to check for the registered feed.
	 * @return string Returns the ID of the feed if properly registered or an empty string otherwise.
	 */
	public static function match_local_feed_configuration_to_registered_feeds( $merchant_id ) {
		$configs       = LocalFeedConfigs::get_instance()->get_configurations();
		$config        = reset( $configs );
		$local_path    = $config['feed_url'];
		$local_country = Pinterest_For_Woocommerce()::get_base_country() ?? 'US';
		$local_locale  = LocaleMapper::get_locale_for_api();
		$feeds         = self::get_merchant_feeds( $merchant_id );

		foreach ( $feeds as $feed ) {
			$configured_path = $feed->location_config->full_feed_fetch_location;
			if (
				$configured_path === $local_path &&
				$local_country === $feed->country &&
				$local_locale === $feed->locale
			) {
				// We can assume we're on the same site.
				return $feed->id;
			}
		}

		return '';
	}

	/**
	 * Check if the registered feed is enabled.
	 *
	 * @since 1.2.13
	 *
	 * @param string $merchant_id     The merchant ID.
	 * @param string $feed_profile_id The ID of the feed.
	 *
	 * @return bool True if the feed is active, false otherwise.
	 */
	public static function is_local_feed_enabled( $merchant_id, $feed_profile_id ) {
		$feed = self::get_merchant_feed( $merchant_id, $feed_profile_id );
		return 'ACTIVE' === $feed->feed_status;
	}

	/**
	 * Enabled the feed.
	 *
	 * @since 1.2.13
	 *
	 * @param string $merchant_id     The merchant ID.
	 * @param string $feed_profile_id The ID of the feed.
	 *
	 * @return bool True if the feed is has been enabled, false otherwise.
	 */
	public static function enabled_feed( $merchant_id, $feed_profile_id ) {
		try {
			$result = Base::enable_merchant_feed( $merchant_id, $feed_profile_id );

			// We don't need to check the status, lets just invalidate the cache for extra safety.
			self::invalidate_get_merchant_feeds_cache( $merchant_id, true );

			return 'success' === $result['status'];
		} catch ( \Throwable $th ) {
			Logger::log( $th->getMessage(), 'error' );
			return false;
		}
	}

	/**
	 * Enabled the feed.
	 *
	 * @since 1.2.13
	 *
	 * @param string $merchant_id     The merchant ID.
	 * @param string $feed_profile_id The ID of the feed.
	 *
	 * @return bool True if the feed is has been disabled, false otherwise.
	 */
	public static function disable_feed( $merchant_id, $feed_profile_id ) {
		try {
			$result = Base::disable_merchant_feed( $merchant_id, $feed_profile_id );

			return 'success' === $result['status'];
		} catch ( \Throwable $th ) {
			Logger::log( $th->getMessage(), 'error' );
			return false;
		}
	}

	/**
	 * Get the latest Workflow of the active feed related to the last attempt to process and ingest our feed.
	 *
	 * @param string $merchant_id The merchant ID.
	 * @param string $feed_id     The ID of the feed.
	 *
	 * @return object|null The latest workflow object or null if there is no workflow.
	 *
	 * @throws Exception If there is an error getting the feed report.
	 *
	 * @since 1.3.0
	 */
	public static function get_feed_latest_workflow( string $merchant_id, string $feed_id ): ?object {
		$feed_report = Base::get_merchant_feed_report( $merchant_id, $feed_id );
		if ( ! $feed_report || 'success' !== $feed_report['status'] ) {
			throw new Exception( esc_html__( 'Could not get feed report from Pinterest.', 'pinterest-for-woocommerce' ), 400 );
		}
		if ( ! property_exists( $feed_report['data'], 'workflows' ) || ! is_array( $feed_report['data']->workflows ) || empty( $feed_report['data']->workflows ) ) {
			return null;
		}

		usort(
			$feed_report['data']->workflows,
			function ( $a, $b ) {
				return $b->created_at - $a->created_at;
			}
		);

		return reset( $feed_report['data']->workflows );
	}

}