3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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-2013
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');
155 while ($dao->fetch()) {
157 CRM_Core_DAO
::storeValues($dao, $temp);
158 $jobs[$dao->id
] = new CRM_Core_ScheduledJob($temp);
164 * Retrieves specific job from the database by id
165 * and creates ScheduledJob object.
171 private function _getJob($id = NULL, $entity = NULL, $action = NULL) {
172 if (is_null($id) && is_null($action)) {
173 CRM_Core_Error
::fatal('You need to provide either id or name to use this method');
175 $dao = new CRM_Core_DAO_Job();
177 $dao->api_entity
= $entity;
178 $dao->api_action
= $action;
180 while ($dao->fetch()) {
181 CRM_Core_DAO
::storeValues($dao, $temp);
182 $job = new CRM_Core_ScheduledJob($temp);
187 public function setSingleRunParams($entity, $job, $params, $source = NULL) {
188 $this->_source
= $source;
189 $key = strtolower($entity . '_' . $job);
190 $this->singleRunParams
[$key] = $params;
191 $this->singleRunParams
[$key]['version'] = 3;
196 * @return array|null collection of permissions, null if none
200 public function logEntry($message) {
201 $domainID = CRM_Core_Config
::domainID();
202 $dao = new CRM_Core_DAO_JobLog();
204 $dao->domain_id
= $domainID;
205 $dao->description
= substr($message, 0, 235);
206 if (strlen($message) > 235) {
207 $dao->description
.= " (...)";
209 if ($this->currentJob
) {
210 $dao->job_id
= $this->currentJob
->id
;
211 $dao->name
= $this->currentJob
->name
;
212 $dao->command
= ts("Entity:") . " " +
$this->currentJob
->api_entity +
" " . ts("Action:") . " " +
$this->currentJob
->api_action
;
214 if (!empty($this->currentJob
->parameters
)) {
215 $data .= "\n\nParameters raw (from db settings): \n" . $this->currentJob
->parameters
;
217 $singleRunParamsKey = strtolower($this->currentJob
->api_entity
. '_' . $this->currentJob
->api_action
);
218 if (array_key_exists($singleRunParamsKey, $this->singleRunParams
)) {
219 $data .= "\n\nParameters raw (" . $this->_source
. "): \n" . serialize($this->singleRunParams
[$singleRunParamsKey]);
220 $data .= "\n\nParameters parsed (and passed to API method): \n" . serialize($this->singleRunParams
[$singleRunParamsKey]);
223 $data .= "\n\nParameters parsed (and passed to API method): \n" . serialize($this->currentJob
->apiParams
);
226 $data .= "\n\nFull message: \n" . $message;
233 private function _apiResultToMessage($apiResult) {
234 $status = $apiResult['is_error'] ?
ts('Failure') : ts('Success');
235 $msg = CRM_Utils_Array
::value('error_message', $apiResult, 'empty error_message!');
236 $vals = CRM_Utils_Array
::value('values', $apiResult, 'empty values!');
237 if (is_array($msg)) {
238 $msg = serialize($msg);
240 if (is_array($vals)) {
241 $vals = serialize($vals);
243 $message = $apiResult['is_error'] ?
', Error message: ' . $msg : " (" . $vals . ")";
244 return $status . $message;
248 function CRM_Core_JobManager_scheduledJobFatalErrorHandler($message) {
249 throw new Exception("{$message['message']}: {$message['code']}");