File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/CleanupProductTargetCountriesJob.php.tar
wp-content/plugins/google-listings-and-ads/src/Jobs/Update/CleanupProductTargetCountriesJob.php 0000644 00000003314 15155266537 0037113 0 ustar 00 var/www/vhosts/uyarreklam.com.tr/httpdocs <?php
declare( strict_types=1 );
namespace Automattic\WooCommerce\GoogleListingsAndAds\Jobs\Update;
use Automattic\WooCommerce\GoogleListingsAndAds\Jobs\AbstractProductSyncerBatchedJob;
use Automattic\WooCommerce\GoogleListingsAndAds\Product\ProductSyncerException;
defined( 'ABSPATH' ) || exit;
/**
* Class CleanupProductTargetCountriesJob
*
* Deletes the previous list of target countries which was in use before the
* Global Offers option became available.
*
* @since 1.1.0
* @package Automattic\WooCommerce\GoogleListingsAndAds\Jobs\Update
*/
class CleanupProductTargetCountriesJob extends AbstractProductSyncerBatchedJob {
/**
* Get the name of the job.
*
* @return string
*/
public function get_name(): string {
return 'cleanup_product_target_countries';
}
/**
* Get a single batch of items.
*
* If no items are returned the job will stop.
*
* @param int $batch_number The batch number increments for each new batch in the job cycle.
*
* @return array
*/
public function get_batch( int $batch_number ): array {
return $this->product_repository->find_synced_product_ids( [], $this->get_batch_size(), $this->get_query_offset( $batch_number ) );
}
/**
* Process batch items.
*
* @param int[] $items A single batch of WooCommerce product IDs from the get_batch() method.
*
* @throws ProductSyncerException If an error occurs. The exception will be logged by ActionScheduler.
*/
protected function process_items( array $items ) {
$products = $this->product_repository->find_by_ids( $items );
$stale_entries = $this->batch_product_helper->generate_stale_countries_request_entries( $products );
$this->product_syncer->delete_by_batch_requests( $stale_entries );
}
}