00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 class Varien_Event_Observer_Cron extends Varien_Event_Observer
00036 {
00037
00038
00039
00040
00041
00042
00043
00044
00045 public function isValidFor(Varien_Event $event)
00046 {
00047 $e = preg_split('#\s+#', $this->getCronExpr(), null, PREG_SPLIT_NO_EMPTY);
00048 if (sizeof($e)!==5) {
00049 return false;
00050 }
00051
00052 $d = getdate($this->getNow());
00053
00054 return $this->matchCronExpression($e[0], $d['minutes'])
00055 && $this->matchCronExpression($e[1], $d['hours'])
00056 && $this->matchCronExpression($e[2], $d['mday'])
00057 && $this->matchCronExpression($e[3], $d['mon'])
00058 && $this->matchCronExpression($e[4], $d['wday']);
00059 }
00060
00061 public function getNow()
00062 {
00063 if (!$this->hasNow()) {
00064 $this->setNow(time());
00065 }
00066 return $this->getData('now');
00067 }
00068
00069 public function matchCronExpression($expr, $num)
00070 {
00071
00072 if ($expr==='*') {
00073 return true;
00074 }
00075
00076
00077 if (strpos($expr,',')!==false) {
00078 foreach (explode(',',$expr) as $e) {
00079 if ($this->matchCronExpression($e, $num)) {
00080 return true;
00081 }
00082 }
00083 return false;
00084 }
00085
00086
00087 if (strpos($expr,'/')!==false) {
00088 $e = explode('/', $expr);
00089 if (sizeof($e)!==2) {
00090 return false;
00091 }
00092 $expr = $e[0];
00093 $mod = $e[1];
00094 if (!is_numeric($mod)) {
00095 return false;
00096 }
00097 } else {
00098 $mod = 1;
00099 }
00100
00101
00102 if (strpos($expr,'-')!==false) {
00103 $e = explode('-', $expr);
00104 if (sizeof($e)!==2) {
00105 return false;
00106 }
00107
00108 $from = $this->getNumeric($e[0]);
00109 $to = $this->getNumeric($e[1]);
00110
00111 return ($from!==false) && ($to!==false)
00112 && ($num>=$from) && ($num<=$to) && ($num%$mod===0);
00113 }
00114
00115
00116 $value = $this->getNumeric($expr);
00117 return ($value!==false) && ($num==$value) && ($num%$mod===0);
00118 }
00119
00120 public function getNumeric($value)
00121 {
00122 static $data = array(
00123 'jan'=>1,
00124 'feb'=>2,
00125 'mar'=>3,
00126 'apr'=>4,
00127 'may'=>5,
00128 'jun'=>6,
00129 'jul'=>7,
00130 'aug'=>8,
00131 'sep'=>9,
00132 'oct'=>10,
00133 'nov'=>11,
00134 'dec'=>12,
00135
00136 'sun'=>0,
00137 'mon'=>1,
00138 'tue'=>2,
00139 'wed'=>3,
00140 'thu'=>4,
00141 'fri'=>5,
00142 'sat'=>6,
00143 );
00144
00145 if (is_numeric($value)) {
00146 return $value;
00147 }
00148
00149 if (is_string($value)) {
00150 $value = strtolower(substr($value,0,3));
00151 if (isset($data[$value])) {
00152 return $data[$value];
00153 }
00154 }
00155
00156 return false;
00157 }
00158 }