forked from contao/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cron.php
182 lines (150 loc) · 4.35 KB
/
cron.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<?php
/**
* Contao Open Source CMS
* Copyright (C) 2005-2011 Leo Feyer
*
* Formerly known as TYPOlight Open Source CMS.
*
* This program is free software: you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation, either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program. If not, please visit the Free
* Software Foundation website at <http://www.gnu.org/licenses/>.
*
* PHP version 5
* @copyright Leo Feyer 2005-2011
* @author Leo Feyer <http://www.contao.org>
* @package Frontend
* @license LGPL
* @filesource
*/
/**
* Initialize the system
*/
define('TL_MODE', 'FE');
require('system/initialize.php');
/**
* Class CronJob
*
* Cron job controller.
* @copyright Leo Feyer 2005-2011
* @author Leo Feyer <http://www.contao.org>
* @package Controller
*/
class CronJob extends Frontend
{
/**
* Initialize the object (do not remove)
*/
public function __construct()
{
parent::__construct();
}
/**
* Run the controller
*/
public function run()
{
// Do not run if there is POST data or the last execution was less than five minutes ago
if (!empty($_POST) || $this->hasToWait())
{
return;
}
$intWeekly = date('YW');
$intDaily = date('Ymd');
$intHourly = date('YmdH');
// Weekly jobs
if (count($GLOBALS['TL_CRON']['weekly']) && $GLOBALS['TL_CONFIG']['cron_weekly'] != $intWeekly)
{
$this->log('Running weekly cron jobs', 'CronJobs run()', TL_CRON);
foreach ($GLOBALS['TL_CRON']['weekly'] as $callback)
{
$this->import($callback[0]);
$this->$callback[0]->$callback[1]();
}
$this->log('Weekly cron jobs complete', 'CronJobs run()', TL_CRON);
$this->Config->update("\$GLOBALS['TL_CONFIG']['cron_weekly']", $intWeekly);
}
// Daily jobs
elseif (count($GLOBALS['TL_CRON']['daily']) && $GLOBALS['TL_CONFIG']['cron_daily'] != $intDaily)
{
$this->log('Running daily cron jobs', 'CronJobs run()', TL_CRON);
foreach ($GLOBALS['TL_CRON']['daily'] as $callback)
{
$this->import($callback[0]);
$this->$callback[0]->$callback[1]();
}
$this->log('Daily cron jobs complete', 'CronJobs run()', TL_CRON);
$this->Config->update("\$GLOBALS['TL_CONFIG']['cron_daily']", $intDaily);
}
// Hourly jobs
elseif (count($GLOBALS['TL_CRON']['hourly']) && $GLOBALS['TL_CONFIG']['cron_hourly'] != $intHourly)
{
$this->log('Running hourly cron jobs', 'CronJobs run()', TL_CRON);
foreach ($GLOBALS['TL_CRON']['hourly'] as $callback)
{
$this->import($callback[0]);
$this->$callback[0]->$callback[1]();
}
$this->log('Hourly cron jobs complete', 'CronJobs run()', TL_CRON);
$this->Config->update("\$GLOBALS['TL_CONFIG']['cron_hourly']", $intHourly);
}
}
/**
* Check whether the last script execution was less than five minutes ago
* @return boolean
*/
protected function hasToWait()
{
$time = time();
// Lock the table
$this->Database->lockTables(array('tl_lock'=>'WRITE'));
// Get the last execution date
$objCron = $this->Database->prepare("SELECT * FROM tl_lock WHERE name='cron'")
->limit(1)
->execute();
// Add the cron entry
if ($objCron->numRows < 1)
{
$this->updateCronTxt($time);
$this->Database->query("INSERT INTO tl_lock (name, tstamp) VALUES ('cron', $time)");
$this->Database->unlockTables();
return false;
}
// Last execution was less than five minutes ago
if ($objCron->tstamp > (time() - 300))
{
$this->Database->unlockTables();
return true;
}
// Store the new value
$this->updateCronTxt($time);
$this->Database->query("UPDATE tl_lock SET tstamp=$time WHERE name='cron'");
$this->Database->unlockTables();
return false;
}
/**
* Update the cron.txt file
* @param integer
*/
protected function updateCronTxt($time)
{
$objFile = new File('system/html/cron.txt');
$objFile->write($time);
$objFile->close();
}
}
/**
* Instantiate controller
*/
$objCronJob = new CronJob();
$objCronJob->run();
?>