File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/AbstractProductSyncerBatchedJob.php.tar
httpdocs/wp-content/plugins/google-listings-and-ads/src/Jobs/AbstractProductSyncerBatchedJob.php 0000644 00000004701 15155017740 0035430 0 ustar 00 var/www/vhosts/uyarreklam.com.tr <?php
declare( strict_types=1 );
namespace Automattic\WooCommerce\GoogleListingsAndAds\Jobs;
use Automattic\WooCommerce\GoogleListingsAndAds\ActionScheduler\ActionSchedulerInterface;
use Automattic\WooCommerce\GoogleListingsAndAds\MerchantCenter\MerchantCenterService;
use Automattic\WooCommerce\GoogleListingsAndAds\MerchantCenter\MerchantStatuses;
use Automattic\WooCommerce\GoogleListingsAndAds\Product\BatchProductHelper;
use Automattic\WooCommerce\GoogleListingsAndAds\Product\ProductRepository;
use Automattic\WooCommerce\GoogleListingsAndAds\Product\ProductSyncer;
defined( 'ABSPATH' ) || exit;
/**
* Class AbstractGoogleBatchedJob
*
* @package Automattic\WooCommerce\GoogleListingsAndAds\Jobs
*/
abstract class AbstractProductSyncerBatchedJob extends AbstractBatchedActionSchedulerJob {
/**
* @var ProductSyncer
*/
protected $product_syncer;
/**
* @var ProductRepository
*/
protected $product_repository;
/**
* @var BatchProductHelper
*/
protected $batch_product_helper;
/**
* @var MerchantCenterService
*/
protected $merchant_center;
/**
* @var MerchantStatuses
*/
protected $merchant_statuses;
/**
* AbstractProductSyncerBatchedJob constructor.
*
* @param ActionSchedulerInterface $action_scheduler
* @param ActionSchedulerJobMonitor $monitor
* @param ProductSyncer $product_syncer
* @param ProductRepository $product_repository
* @param BatchProductHelper $batch_product_helper
* @param MerchantCenterService $merchant_center
* @param MerchantStatuses $merchant_statuses
*/
public function __construct(
ActionSchedulerInterface $action_scheduler,
ActionSchedulerJobMonitor $monitor,
ProductSyncer $product_syncer,
ProductRepository $product_repository,
BatchProductHelper $batch_product_helper,
MerchantCenterService $merchant_center,
MerchantStatuses $merchant_statuses
) {
$this->batch_product_helper = $batch_product_helper;
$this->product_syncer = $product_syncer;
$this->product_repository = $product_repository;
$this->merchant_center = $merchant_center;
$this->merchant_statuses = $merchant_statuses;
parent::__construct( $action_scheduler, $monitor );
}
/**
* Can the job be scheduled.
*
* @param array|null $args
*
* @return bool Returns true if the job can be scheduled.
*/
public function can_schedule( $args = [] ): bool {
return ! $this->is_running( $args ) && $this->merchant_center->should_push();
}
}