3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
29 * This interface defines methods that need to be implemented
30 * by every scheduled job (cron task) in CiviCRM.
33 * @copyright CiviCRM LLC (c) 2004-2014
37 class CRM_Core_JobManager
{
40 * @var array ($id => CRM_Core_ScheduledJob)
45 * @var CRM_Core_ScheduledJob
47 var $currentJob = NULL;
49 var $singleRunParams = array();
61 public function __construct() {
62 $config = CRM_Core_Config
::singleton();
63 $config->fatalErrorHandler
= 'CRM_Core_JobManager_scheduledJobFatalErrorHandler';
65 $this->jobs
= $this->_getJobs();
74 public function execute($auth = TRUE) {
76 $this->logEntry('Starting scheduled jobs execution');
78 if ($auth && !CRM_Utils_System
::authenticateKey(TRUE)) {
79 $this->logEntry('Could not authenticate the site key.');
81 require_once 'api/api.php';
83 // it's not asynchronous at this stage
84 CRM_Utils_Hook
::cron($this);
85 foreach ($this->jobs
as $job) {
86 if ($job->is_active
) {
87 if ($job->needsRunning()) {
88 $this->executeJob($job);
92 $this->logEntry('Finishing scheduled jobs execution.');
102 public function __destruct() {}
104 public function executeJobByAction($entity, $action) {
105 $job = $this->_getJob(NULL, $entity, $action);
106 $this->executeJob($job);
109 public function executeJobById($id) {
110 $job = $this->_getJob($id);
111 $this->executeJob($job);
115 * @param CRM_Core_ScheduledJob $job
117 public function executeJob($job) {
118 $this->currentJob
= $job;
119 $this->logEntry('Starting execution of ' . $job->name
);
122 $singleRunParamsKey = strtolower($job->api_entity
. '_' . $job->api_action
);
124 if (array_key_exists($singleRunParamsKey, $this->singleRunParams
)) {
125 $params = $this->singleRunParams
[$singleRunParamsKey];
128 $params = $job->apiParams
;
132 $result = civicrm_api($job->api_entity
, $job->api_action
, $params);
135 $this->logEntry('Error while executing ' . $job->name
. ': ' . $e->getMessage());
137 $this->logEntry('Finished execution of ' . $job->name
. ' with result: ' . $this->_apiResultToMessage($result));
138 $this->currentJob
= FALSE;
142 * Retrieves the list of jobs from the database,
143 * populates class param.
146 * @return array ($id => CRM_Core_ScheduledJob)
150 private function _getJobs() {
152 $dao = new CRM_Core_DAO_Job();
153 $dao->orderBy('name');
154 $dao->domain_id
= CRM_Core_Config
::domainID();
156 while ($dao->fetch()) {
158 CRM_Core_DAO
::storeValues($dao, $temp);
159 $jobs[$dao->id
] = new CRM_Core_ScheduledJob($temp);
165 * Retrieves specific job from the database by id
166 * and creates ScheduledJob object.
172 private function _getJob($id = NULL, $entity = NULL, $action = NULL) {
173 if (is_null($id) && is_null($action)) {
174 CRM_Core_Error
::fatal('You need to provide either id or name to use this method');
176 $dao = new CRM_Core_DAO_Job();
178 $dao->api_entity
= $entity;
179 $dao->api_action
= $action;
181 while ($dao->fetch()) {
182 CRM_Core_DAO
::storeValues($dao, $temp);
183 $job = new CRM_Core_ScheduledJob($temp);
188 public function setSingleRunParams($entity, $job, $params, $source = NULL) {
189 $this->_source
= $source;
190 $key = strtolower($entity . '_' . $job);
191 $this->singleRunParams
[$key] = $params;
192 $this->singleRunParams
[$key]['version'] = 3;
197 * @return array|null collection of permissions, null if none
201 public function logEntry($message) {
202 $domainID = CRM_Core_Config
::domainID();
203 $dao = new CRM_Core_DAO_JobLog();
205 $dao->domain_id
= $domainID;
206 $dao->description
= substr($message, 0, 235);
207 if (strlen($message) > 235) {
208 $dao->description
.= " (...)";
210 if ($this->currentJob
) {
211 $dao->job_id
= $this->currentJob
->id
;
212 $dao->name
= $this->currentJob
->name
;
213 $dao->command
= ts("Entity:") . " " +
$this->currentJob
->api_entity +
" " . ts("Action:") . " " +
$this->currentJob
->api_action
;
215 if (!empty($this->currentJob
->parameters
)) {
216 $data .= "\n\nParameters raw (from db settings): \n" . $this->currentJob
->parameters
;
218 $singleRunParamsKey = strtolower($this->currentJob
->api_entity
. '_' . $this->currentJob
->api_action
);
219 if (array_key_exists($singleRunParamsKey, $this->singleRunParams
)) {
220 $data .= "\n\nParameters raw (" . $this->_source
. "): \n" . serialize($this->singleRunParams
[$singleRunParamsKey]);
221 $data .= "\n\nParameters parsed (and passed to API method): \n" . serialize($this->singleRunParams
[$singleRunParamsKey]);
224 $data .= "\n\nParameters parsed (and passed to API method): \n" . serialize($this->currentJob
->apiParams
);
227 $data .= "\n\nFull message: \n" . $message;
234 private function _apiResultToMessage($apiResult) {
235 $status = $apiResult['is_error'] ?
ts('Failure') : ts('Success');
236 $msg = CRM_Utils_Array
::value('error_message', $apiResult, 'empty error_message!');
237 $vals = CRM_Utils_Array
::value('values', $apiResult, 'empty values!');
238 if (is_array($msg)) {
239 $msg = serialize($msg);
241 if (is_array($vals)) {
242 $vals = serialize($vals);
244 $message = $apiResult['is_error'] ?
', Error message: ' . $msg : " (" . $vals . ")";
245 return $status . $message;
249 function CRM_Core_JobManager_scheduledJobFatalErrorHandler($message) {
250 throw new Exception("{$message['message']}: {$message['code']}");