AsyncRequest.php
2 years ago
AsyncWebhookService.php
2 years ago
BackgroundServiceProvider.php
2 years ago
CustomerSyncService.php
3 years ago
QueueService.php
2 years ago
SyncService.php
3 years ago
QueueService.php
164 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\Background; |
| 4 | |
| 5 | /** |
| 6 | * SureCart Queue |
| 7 | * |
| 8 | * A job queue using WordPress actions. |
| 9 | */ |
| 10 | class QueueService { |
| 11 | /** |
| 12 | * Enqueue an action to run one time, as soon as possible |
| 13 | * |
| 14 | * @param string $hook The hook to trigger. |
| 15 | * @param array $args Arguments to pass when the hook triggers. |
| 16 | * @param string $group The group to assign this job to. |
| 17 | * @return string $this. |
| 18 | */ |
| 19 | public function async( $hook, $args = array(), $group = '' ) { |
| 20 | \as_enqueue_async_action( $hook, $args, $group ); |
| 21 | return $this; |
| 22 | } |
| 23 | |
| 24 | /** |
| 25 | * Schedule an action to run once at some time in the future |
| 26 | * |
| 27 | * @param int $timestamp When the job will run. |
| 28 | * @param string $hook The hook to trigger. |
| 29 | * @param array $args Arguments to pass when the hook triggers. |
| 30 | * @param string $group The group to assign this job to. |
| 31 | * @return string $this. |
| 32 | */ |
| 33 | public function scheduleSingle( $timestamp, $hook, $args = array(), $group = '' ) { |
| 34 | \as_schedule_single_action( $timestamp, $hook, $args, $group ); |
| 35 | return $this; |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * Schedule a recurring action |
| 40 | * |
| 41 | * @param int $timestamp When the first instance of the job will run. |
| 42 | * @param int $interval_in_seconds How long to wait between runs. |
| 43 | * @param string $hook The hook to trigger. |
| 44 | * @param array $args Arguments to pass when the hook triggers. |
| 45 | * @param string $group The group to assign this job to. |
| 46 | * @return string $this. |
| 47 | */ |
| 48 | public function scheduleRecurring( $timestamp, $interval_in_seconds, $hook, $args = array(), $group = '' ) { |
| 49 | \as_schedule_recurring_action( $timestamp, $interval_in_seconds, $hook, $args, $group ); |
| 50 | return $this; |
| 51 | } |
| 52 | |
| 53 | /** |
| 54 | * Schedule an action that recurs on a cron-like schedule. |
| 55 | * |
| 56 | * @param int $timestamp The schedule will start on or after this time. |
| 57 | * @param string $cron_schedule A cron-link schedule string. |
| 58 | * @see http://en.wikipedia.org/wiki/Cron |
| 59 | * * * * * * * |
| 60 | * ┬ ┬ ┬ ┬ ┬ ┬ |
| 61 | * | | | | | | |
| 62 | * | | | | | + year [optional] |
| 63 | * | | | | +----- day of week (0 - 7) (Sunday=0 or 7) |
| 64 | * | | | +---------- month (1 - 12) |
| 65 | * | | +--------------- day of month (1 - 31) |
| 66 | * | +-------------------- hour (0 - 23) |
| 67 | * +------------------------- min (0 - 59) |
| 68 | * @param string $hook The hook to trigger. |
| 69 | * @param array $args Arguments to pass when the hook triggers. |
| 70 | * @param string $group The group to assign this job to. |
| 71 | * @return string $this |
| 72 | */ |
| 73 | public function scheduleCron( $timestamp, $cron_schedule, $hook, $args = array(), $group = '' ) { |
| 74 | \as_schedule_cron_action( $timestamp, $cron_schedule, $hook, $args, $group ); |
| 75 | return $this; |
| 76 | } |
| 77 | |
| 78 | /** |
| 79 | * Dequeue the next scheduled instance of an action with a matching hook (and optionally matching args and group). |
| 80 | * |
| 81 | * Any recurring actions with a matching hook should also be cancelled, not just the next scheduled action. |
| 82 | * |
| 83 | * While technically only the next instance of a recurring or cron action is unscheduled by this method, that will also |
| 84 | * prevent all future instances of that recurring or cron action from being run. Recurring and cron actions are scheduled |
| 85 | * in a sequence instead of all being scheduled at once. Each successive occurrence of a recurring action is scheduled |
| 86 | * only after the former action is run. As the next instance is never run, because it's unscheduled by this function, |
| 87 | * then the following instance will never be scheduled (or exist), which is effectively the same as being unscheduled |
| 88 | * by this method also. |
| 89 | * |
| 90 | * @param string $hook The hook that the job will trigger. |
| 91 | * @param array $args Args that would have been passed to the job. |
| 92 | * @param string $group The group the job is assigned to (if any). |
| 93 | */ |
| 94 | public function cancel( $hook, $args = array(), $group = '' ) { |
| 95 | \as_unschedule_action( $hook, $args, $group ); |
| 96 | return $this; |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * Dequeue all actions with a matching hook (and optionally matching args and group) so no matching actions are ever run. |
| 101 | * |
| 102 | * @param string $hook The hook that the job will trigger. |
| 103 | * @param array $args Args that would have been passed to the job. |
| 104 | * @param string $group The group the job is assigned to (if any). |
| 105 | */ |
| 106 | public function cancelAll( $hook, $args = array(), $group = '' ) { |
| 107 | \as_unschedule_all_actions( $hook, $args, $group ); |
| 108 | return $this; |
| 109 | } |
| 110 | |
| 111 | /** |
| 112 | * Get the date and time for the next scheduled occurrence of an action with a given hook |
| 113 | * (an optionally that matches certain args and group), if any. |
| 114 | * |
| 115 | * @param string $hook The hook that the job will trigger. |
| 116 | * @param array $args Filter to a hook with matching args that will be passed to the job when it runs. |
| 117 | * @param string $group Filter to only actions assigned to a specific group. |
| 118 | * @return DateTime|null The date and time for the next occurrence, or null if there is no pending, scheduled action for the given hook. |
| 119 | */ |
| 120 | public function getNext( $hook, $args = null, $group = '' ) { |
| 121 | $next_timestamp = as_next_scheduled_action( $hook, $args, $group ); |
| 122 | |
| 123 | if ( is_numeric( $next_timestamp ) ) { |
| 124 | return new \DateTime( "@{$next_timestamp}", new \DateTimeZone( 'UTC' ) ); |
| 125 | } |
| 126 | |
| 127 | return null; |
| 128 | } |
| 129 | |
| 130 | /** |
| 131 | * Find scheduled actions |
| 132 | * |
| 133 | * @param array $args Possible arguments, with their default values: |
| 134 | * 'hook' => '' - the name of the action that will be triggered |
| 135 | * 'args' => null - the args array that will be passed with the action |
| 136 | * 'date' => null - the scheduled date of the action. Expects a DateTime object, a unix timestamp, or a string that can parsed with strtotime(). Used in UTC timezone. |
| 137 | * 'date_compare' => '<=' - operator for testing "date". accepted values are '!=', '>', '>=', '<', '<=', '=' |
| 138 | * 'modified' => null - the date the action was last updated. Expects a DateTime object, a unix timestamp, or a string that can parsed with strtotime(). Used in UTC timezone. |
| 139 | * 'modified_compare' => '<=' - operator for testing "modified". accepted values are '!=', '>', '>=', '<', '<=', '=' |
| 140 | * 'group' => '' - the group the action belongs to |
| 141 | * 'status' => '' - ActionScheduler_Store::STATUS_COMPLETE or ActionScheduler_Store::STATUS_PENDING |
| 142 | * 'claimed' => null - TRUE to find claimed actions, FALSE to find unclaimed actions, a string to find a specific claim ID |
| 143 | * 'per_page' => 5 - Number of results to return |
| 144 | * 'offset' => 0 |
| 145 | * 'orderby' => 'date' - accepted values are 'hook', 'group', 'modified', or 'date' |
| 146 | * 'order' => 'ASC'. |
| 147 | * |
| 148 | * @param string $return_format OBJECT, ARRAY_A, or ids. |
| 149 | * @return array |
| 150 | */ |
| 151 | public function search( $args = array(), $return_format = OBJECT ) { |
| 152 | return \as_get_scheduled_actions( $args, $return_format ); |
| 153 | } |
| 154 | |
| 155 | /** |
| 156 | * Run the queue immedidately. |
| 157 | * |
| 158 | * @return void |
| 159 | */ |
| 160 | public function run() { |
| 161 | do_action( 'action_scheduler_run_queue', 'SureCart Async Request' ); |
| 162 | } |
| 163 | } |
| 164 |