Skip to content
Snippets Groups Projects
Commit 4a10dee2 authored by jaapjansma's avatar jaapjansma
Browse files

added delay into the action class.

parent 192495b9
No related branches found
No related tags found
No related merge requests found
......@@ -20,6 +20,24 @@ abstract class CRM_Civirules_Action {
*/
abstract public function processAction(CRM_Civirules_EventData_EventData $eventData);
/**
* You could override this method to create a delay for your action
*
* You might have a specific action which is Send Thank you and which
* includes sending thank you SMS to the donor but only between office hours
*
* If you have a delay you should return a DateTime object with a future date and time
* for when this action should be processed.
*
* If you don't have a delay you should return false
*
* @param DateTime $date the current scheduled date/time
* @return bool|DateTime
*/
public function delayTo(DateTime $date) {
return false;
}
/**
* Method to set RuleActionData
*
......
......@@ -64,7 +64,7 @@ class CRM_Civirules_Engine {
$object->setRuleActionData($ruleAction);
//determine if the action should be executed with a delay
$delay = self::getActionDelay($ruleAction);
$delay = self::getActionDelay($ruleAction, $object);
if ($delay instanceof DateTime) {
self::delayAction($delay, $object, $eventData);
} else {
......@@ -158,28 +158,32 @@ class CRM_Civirules_Engine {
* The delay is calculated by a seperate delay class. See CRM_Civirules_DelayDelay
*
* @param $ruleAction
* @param CRM_Civirules_Action $actionObject
* @return bool|\DateTime
*/
protected static function getActionDelay($ruleAction) {
protected static function getActionDelay($ruleAction, CRM_Civirules_Action $actionObject) {
//if the delay is empty the
if (empty($ruleAction['delay'])) {
return false;
}
$delayClass = unserialize(($ruleAction['delay']));
if (! ($delayClass instanceof CRM_Civirules_Delay_Delay)) {
return false;
}
$delayedTo = new DateTime();
$now = new DateTime();
$delayedTo = $delayClass->delayTo($delayedTo);
$delayClass = unserialize(($ruleAction['delay']));
if ($delayClass instanceof CRM_Civirules_Delay_Delay) {
$delayedTo = $delayClass->delayTo($delayedTo);
}
if ($now >= $delayedTo) {
$actionDelayedTo = $actionObject->delayTo($delayedTo);
if ($actionDelayedTo instanceof DateTime) {
if ($now < $delayedTo) {
return $actionDelayedTo;
}
return false;
} elseif ($delayedTo instanceof DateTime and $now < $delayedTo) {
return $delayedTo;
}
return $delayedTo;
return false;
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment