144 lines
3.8 KiB
PHP
144 lines
3.8 KiB
PHP
<?php
|
|
namespace MailPoet\Cron\Workers;
|
|
|
|
use Carbon\Carbon;
|
|
use MailPoet\Cron\CronHelper;
|
|
use MailPoet\Models\SendingQueue;
|
|
|
|
if(!defined('ABSPATH')) exit;
|
|
|
|
abstract class SimpleWorker {
|
|
public $timer;
|
|
|
|
function __construct($timer = false) {
|
|
if(!defined('static::TASK_TYPE')) {
|
|
throw new \Exception('Constant TASK_TYPE is not defined on subclass ' . get_class($this));
|
|
}
|
|
$this->timer = ($timer) ? $timer : microtime(true);
|
|
// abort if execution limit is reached
|
|
CronHelper::enforceExecutionLimit($this->timer);
|
|
}
|
|
|
|
function checkProcessingRequirements() {
|
|
return true;
|
|
}
|
|
|
|
function process() {
|
|
if(!$this->checkProcessingRequirements()) {
|
|
return false;
|
|
}
|
|
|
|
if(is_callable(array($this, 'init'))) {
|
|
$this->init();
|
|
}
|
|
|
|
$scheduled_queues = self::getScheduledQueues();
|
|
$running_queues = self::getRunningQueues();
|
|
|
|
if(!$scheduled_queues && !$running_queues) {
|
|
self::schedule();
|
|
return false;
|
|
}
|
|
|
|
foreach($scheduled_queues as $i => $queue) {
|
|
$this->prepareQueue($queue);
|
|
}
|
|
foreach($running_queues as $i => $queue) {
|
|
$this->processQueue($queue);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
static function schedule() {
|
|
$already_scheduled = SendingQueue::where('type', static::TASK_TYPE)
|
|
->whereNull('deleted_at')
|
|
->where('status', SendingQueue::STATUS_SCHEDULED)
|
|
->findMany();
|
|
if($already_scheduled) {
|
|
return false;
|
|
}
|
|
$queue = SendingQueue::create();
|
|
$queue->type = static::TASK_TYPE;
|
|
$queue->status = SendingQueue::STATUS_SCHEDULED;
|
|
$queue->priority = SendingQueue::PRIORITY_LOW;
|
|
$queue->scheduled_at = self::getNextRunDate();
|
|
$queue->newsletter_id = 0;
|
|
$queue->save();
|
|
return $queue;
|
|
}
|
|
|
|
function prepareQueue(SendingQueue $queue) {
|
|
$queue->status = null;
|
|
$queue->save();
|
|
|
|
// abort if execution limit is reached
|
|
CronHelper::enforceExecutionLimit($this->timer);
|
|
|
|
return true;
|
|
}
|
|
|
|
function processQueue(SendingQueue $queue) {
|
|
// abort if execution limit is reached
|
|
CronHelper::enforceExecutionLimit($this->timer);
|
|
|
|
if($this->processQueueStrategy($queue)) {
|
|
$this->complete($queue);
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
function processQueueStrategy(SendingQueue $queue) {
|
|
return true;
|
|
}
|
|
|
|
function complete(SendingQueue $queue) {
|
|
$queue->processed_at = current_time('mysql');
|
|
$queue->status = SendingQueue::STATUS_COMPLETED;
|
|
$queue->save();
|
|
}
|
|
|
|
function reschedule(SendingQueue $queue, $timeout) {
|
|
$scheduled_at = Carbon::createFromTimestamp(current_time('timestamp'));
|
|
$queue->scheduled_at = $scheduled_at->addMinutes($timeout);
|
|
$queue->save();
|
|
}
|
|
|
|
static function getNextRunDate() {
|
|
$date = Carbon::createFromTimestamp(current_time('timestamp'));
|
|
// Random day of the next week
|
|
$date->setISODate($date->format('o'), $date->format('W') + 1, mt_rand(1, 7));
|
|
$date->startOfDay();
|
|
return $date;
|
|
}
|
|
|
|
static function getScheduledQueues($future = false) {
|
|
$dateWhere = ($future) ? 'whereGt' : 'whereLte';
|
|
return SendingQueue::where('type', static::TASK_TYPE)
|
|
->$dateWhere('scheduled_at', Carbon::createFromTimestamp(current_time('timestamp')))
|
|
->whereNull('deleted_at')
|
|
->where('status', SendingQueue::STATUS_SCHEDULED)
|
|
->findMany();
|
|
}
|
|
|
|
static function getRunningQueues() {
|
|
return SendingQueue::where('type', static::TASK_TYPE)
|
|
->whereLte('scheduled_at', Carbon::createFromTimestamp(current_time('timestamp')))
|
|
->whereNull('deleted_at')
|
|
->whereNull('status')
|
|
->findMany();
|
|
}
|
|
|
|
static function getAllDueQueues() {
|
|
$scheduled_queues = self::getScheduledQueues();
|
|
$running_queues = self::getRunningQueues();
|
|
return array_merge((array)$scheduled_queues, (array)$running_queues);
|
|
}
|
|
|
|
static function getFutureQueues() {
|
|
return self::getScheduledQueues(true);
|
|
}
|
|
}
|