-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathAbstractCouponSyncerJob.php
78 lines (67 loc) · 2.07 KB
/
AbstractCouponSyncerJob.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
declare( strict_types=1 );
namespace Automattic\WooCommerce\GoogleListingsAndAds\Jobs;
use Automattic\WooCommerce\GoogleListingsAndAds\ActionScheduler\ActionSchedulerInterface;
use Automattic\WooCommerce\GoogleListingsAndAds\API\WP\NotificationsService;
use Automattic\WooCommerce\GoogleListingsAndAds\MerchantCenter\MerchantCenterService;
use Automattic\WooCommerce\GoogleListingsAndAds\Coupon\CouponHelper;
use Automattic\WooCommerce\GoogleListingsAndAds\Coupon\CouponSyncer;
use Automattic\WooCommerce\GoogleListingsAndAds\Proxies\WC;
defined( 'ABSPATH' ) || exit;
/**
* Class AbstractCouponSyncerJob
*
* @package Automattic\WooCommerce\GoogleListingsAndAds\Jobs
*/
abstract class AbstractCouponSyncerJob extends AbstractActionSchedulerJob {
/**
* @var CouponHelper
*/
protected $coupon_helper;
/**
* @var CouponSyncer
*/
protected $coupon_syncer;
/**
* @var WC
*/
protected $wc;
/**
* @var MerchantCenterService
*/
protected $merchant_center;
/**
* AbstractCouponSyncerJob constructor.
*
* @param ActionSchedulerInterface $action_scheduler
* @param ActionSchedulerJobMonitor $monitor
* @param CouponHelper $coupon_helper
* @param CouponSyncer $coupon_syncer
* @param WC $wc
* @param MerchantCenterService $merchant_center
*/
public function __construct(
ActionSchedulerInterface $action_scheduler,
ActionSchedulerJobMonitor $monitor,
CouponHelper $coupon_helper,
CouponSyncer $coupon_syncer,
WC $wc,
MerchantCenterService $merchant_center
) {
$this->coupon_helper = $coupon_helper;
$this->coupon_syncer = $coupon_syncer;
$this->wc = $wc;
$this->merchant_center = $merchant_center;
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->is_enabled_for_datatype( NotificationsService::DATATYPE_COUPON );
}
}