| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/boutiques/app/code/core/Mage/Cron/Model/ |
Upload File : |
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magentocommerce.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category Mage
* @package Mage_Cron
* @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
/**
* Crontab schedule model
*
* @category Mage
* @package Mage_Cron
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Cron_Model_Schedule extends Mage_Core_Model_Abstract
{
const STATUS_PENDING = 'pending';
const STATUS_RUNNING = 'running';
const STATUS_SUCCESS = 'success';
const STATUS_MISSED = 'missed';
const STATUS_ERROR = 'error';
public function _construct()
{
$this->_init('cron/schedule');
}
public function setCronExpr($expr)
{
$e = preg_split('#\s+#', $expr, null, PREG_SPLIT_NO_EMPTY);
if (sizeof($e)<5 || sizeof($e)>6) {
throw Mage::exception('Mage_Cron', 'Invalid cron expression: '.$expr);
}
$this->setCronExprArr($e);
return $this;
}
/**
* Checks the observer's cron expression against time
*
* Supports $this->setCronExpr('* 0-5,10-59/5 2-10,15-25 january-june/2 mon-fri')
*
* @param Varien_Event $event
* @return boolean
*/
public function trySchedule($time)
{
$e = $this->getCronExprArr();
if (!$e || !$time) {
return false;
}
if (!is_numeric($time)) {
$time = strtotime($time);
}
$d = getdate(Mage::getSingleton('core/date')->timestamp($time));
$match = $this->matchCronExpression($e[0], $d['minutes'])
&& $this->matchCronExpression($e[1], $d['hours'])
&& $this->matchCronExpression($e[2], $d['mday'])
&& $this->matchCronExpression($e[3], $d['mon'])
&& $this->matchCronExpression($e[4], $d['wday']);
if ($match) {
$this->setCreatedAt(strftime('%Y-%m-%d %H:%M:%S', time()));
$this->setScheduledAt(strftime('%Y-%m-%d %H:%M', $time));
}
return $match;
}
public function matchCronExpression($expr, $num)
{
// handle ALL match
if ($expr==='*') {
return true;
}
// handle multiple options
if (strpos($expr,',')!==false) {
foreach (explode(',',$expr) as $e) {
if ($this->matchCronExpression($e, $num)) {
return true;
}
}
return false;
}
// handle modulus
if (strpos($expr,'/')!==false) {
$e = explode('/', $expr);
if (sizeof($e)!==2) {
throw Mage::exception('Mage_Cron', "Invalid cron expression, expecting 'match/modulus': ".$expr);
}
if (!is_numeric($e[1])) {
throw Mage::exception('Mage_Cron', "Invalid cron expression, expecting numeric modulus: ".$expr);
}
$expr = $e[0];
$mod = $e[1];
} else {
$mod = 1;
}
// handle all match by modulus
if ($expr==='*') {
$from = 0;
$to = 60;
}
// handle range
elseif (strpos($expr,'-')!==false) {
$e = explode('-', $expr);
if (sizeof($e)!==2) {
throw Mage::exception('Mage_Cron', "Invalid cron expression, expecting 'from-to' structure: ".$expr);
}
$from = $this->getNumeric($e[0]);
$to = $this->getNumeric($e[1]);
}
// handle regular token
else {
$from = $this->getNumeric($expr);
$to = $from;
}
if ($from===false || $to===false) {
throw Mage::exception('Mage_Cron', "Invalid cron expression: ".$expr);
}
return ($num>=$from) && ($num<=$to) && ($num%$mod===0);
}
public function getNumeric($value)
{
static $data = array(
'jan'=>1,
'feb'=>2,
'mar'=>3,
'apr'=>4,
'may'=>5,
'jun'=>6,
'jul'=>7,
'aug'=>8,
'sep'=>9,
'oct'=>10,
'nov'=>11,
'dec'=>12,
'sun'=>0,
'mon'=>1,
'tue'=>2,
'wed'=>3,
'thu'=>4,
'fri'=>5,
'sat'=>6,
);
if (is_numeric($value)) {
return $value;
}
if (is_string($value)) {
$value = strtolower(substr($value,0,3));
if (isset($data[$value])) {
return $data[$value];
}
}
return false;
}
/**
* Sets a job to STATUS_RUNNING only if it is currently in STATUS_PENDING.
* Returns true if status was changed and false otherwise.
*
* This is used to implement locking for cron jobs.
*
* @return boolean
*/
public function tryLockJob()
{
return $this->_getResource()->trySetJobStatusAtomic($this->getId(), self::STATUS_RUNNING,self::STATUS_PENDING);
}
}