-
Notifications
You must be signed in to change notification settings - Fork 37
/
vtigercron.php
117 lines (93 loc) · 4.26 KB
/
vtigercron.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
<?php
/*+*******************************************************************************
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
* The Original Code is: vtiger CRM Open Source
* The Initial Developer of the Original Code is vtiger.
* Portions created by vtiger are Copyright (C) vtiger.
* All Rights Reserved.
********************************************************************************/
/**
* Start the cron services configured.
*/
include_once 'vtlib/Vtiger/Cron.php';
require_once 'config.inc.php';
require_once('modules/Emails/mail.php');
require_once('modules/Users/Users.php');
require_once('includes/runtime/BaseModel.php');
require_once('includes/runtime/Globals.php');
require_once('includes/runtime/LanguageHandler.php');
if (file_exists('config_override.php')) {
include_once 'config_override.php';
}
// Extended inclusions
require_once 'includes/Loader.php';
vimport ('includes.runtime.EntryPoint');
$version = explode('.', phpversion());
$php = ($version[0] * 10000 + $version[1] * 100 + $version[2]);
if($php < 50300){
$hostName = php_uname('n');
} else {
$hostName = gethostname();
}
if(PHP_SAPI === "cgi-fcgi" || empty($_SERVER['REMOTE_ADDR']) || (isset($_SESSION["authenticated_user_id"]) && isset($_SESSION["app_unique_key"]) && $_SESSION["app_unique_key"] == $application_unique_key)){
$cronTasks = false;
//crm-now: removed dependency on $_REQUEST = always execute all crons
$cronTasks = Vtiger_Cron::listAllActiveInstances();
$cronRunId = microtime(true);
$cronStarts = date('Y-m-d H:i:s');
//set global current user permissions
global $current_user, $site_URL;
$current_user = Users::getActiveAdminUser();
echo sprintf('[CRON],"%s",%s,Instance,"%s","",[STARTS]',$cronRunId,$site_URL,$cronStarts)."\n";
foreach ($cronTasks as $cronTask) {
try {
$cronTask->setBulkMode(true);
// Not ready to run yet?
if (!$cronTask->isRunnable()) {
echo sprintf("[INFO] %s - not ready to run as the time to run again is not completed\n", $cronTask->getName());
continue;
}
// already running?
if ($cronTask->isRunning()) {
// check if it timed out too long ago, if > 24h then reset and inform admin
$lastStart = $cronTask->getLastStart();
$now = time();
if ($lastStart == 0 || $now - $lastStart > 86400) {
$subject = sprintf(vtranslate('LBL_CRON_TIMEOUT_SUBJECT'), $cronTask->getName(), $site_URL);
$content = sprintf(vtranslate('LBL_CRON_TIMEOUT_CONTENT'), $site_URL, $cronTask->getName());
send_mail('Settings', $current_user->email1, $current_user->user_name, $current_user->email1, $subject, $content);
echo sprintf("[INFO] %s - running for more than 24h, informed admin and restarted", $cronTask->getName());
// if time since last start < 24h just skip it
} else {
echo sprintf("[INFO] %s - not ready to run because it is running already", $cronTask->getName());
continue;
}
}
// Timeout could happen if intermediate cron-tasks fails
// and affect the next task. Which need to be handled in this cycle.
// doesn't work, 0 is returned from 'lastend' entry
// if ($cronTask->hadTimedout()) {
// echo sprintf("[INFO] %s - cron task had timedout as it is not completed last time it run- restarting\n", $cronTask->getName());
// }
// Mark the status - running
$cronTask->markRunning();
echo sprintf('[CRON],"%s",%s,%s,"%s","",[STARTS]',$cronRunId,$site_URL,$cronTask->getName(),date('Y-m-d H:i:s',$cronTask->getLastStart()))."\n";
checkFileAccess($cronTask->getHandlerFile());
require_once $cronTask->getHandlerFile();
// Mark the status - finished
$cronTask->markFinished();
echo "\n".sprintf('[CRON],"%s",%s,%s,"%s","%s",[ENDS]',$cronRunId,$site_URL,$cronTask->getName(),date('Y-m-d H:i:s',$cronTask->getLastStart()),date('Y-m-d H:i:s',$cronTask->getLastEnd()))."\n";
} catch (Exception $e) {
echo sprintf("[ERROR]: %s - cron task execution throwed exception.\n", $cronTask->getName());
echo $e->getMessage();
echo "\n";
}
}
$cronEnds = date('Y-m-d H:i:s');
echo sprintf('[CRON],"%s",%s,Instance,"%s","%s",[ENDS]',$cronRunId,$site_URL,$cronStarts,$cronEnds)."\n";
}
else{
echo("Access denied!");
}
?>