Merge pull request #911 from agh1/membership-dash-counts-new
[civicrm-core.git] / CRM / Core / JobManager.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
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. |
13 | |
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. |
18 | |
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 +--------------------------------------------------------------------+
26 */
27
28 /**
29 * This interface defines methods that need to be implemented
30 * by every scheduled job (cron task) in CiviCRM.
31 *
32 * @package CRM
33 * @copyright CiviCRM LLC (c) 2004-2013
34 * $Id$
35 *
36 */
37 class CRM_Core_JobManager {
38
39 /**
40 * @var array ($id => CRM_Core_ScheduledJob)
41 */
42 var $jobs = NULL;
43
44 /**
45 * @var CRM_Core_ScheduledJob
46 */
47 var $currentJob = NULL;
48
49 var $singleRunParams = array();
50
51 var $_source = NULL;
52
53
54 /*
55 * Class constructor
56 *
57 * @param void
58 * @access public
59 *
60 */
61 public function __construct() {
62 $config = CRM_Core_Config::singleton();
63 $config->fatalErrorHandler = 'CRM_Core_JobManager_scheduledJobFatalErrorHandler';
64
65 $this->jobs = $this->_getJobs();
66 }
67
68 /*
69 *
70 * @param void
71 * @access private
72 *
73 */
74 public function execute($auth = TRUE) {
75
76 $this->logEntry('Starting scheduled jobs execution');
77
78 if ($auth && !CRM_Utils_System::authenticateKey(TRUE)) {
79 $this->logEntry('Could not authenticate the site key.');
80 }
81 require_once 'api/api.php';
82
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);
89 }
90 }
91 }
92 $this->logEntry('Finishing scheduled jobs execution.');
93 }
94
95 /*
96 * Class destructor
97 *
98 * @param void
99 * @access public
100 *
101 */
102 public function __destruct() {}
103
104 public function executeJobByAction($entity, $action) {
105 $job = $this->_getJob(NULL, $entity, $action);
106 $this->executeJob($job);
107 }
108
109 public function executeJobById($id) {
110 $job = $this->_getJob($id);
111 $this->executeJob($job);
112 }
113
114 /**
115 * @param CRM_Core_ScheduledJob $job
116 */
117 public function executeJob($job) {
118 $this->currentJob = $job;
119 $this->logEntry('Starting execution of ' . $job->name);
120 $job->saveLastRun();
121
122 $singleRunParamsKey = strtolower($job->api_entity . '_' . $job->api_action);
123
124 if (array_key_exists($singleRunParamsKey, $this->singleRunParams)) {
125 $params = $this->singleRunParams[$singleRunParamsKey];
126 }
127 else {
128 $params = $job->apiParams;
129 }
130
131 try {
132 $result = civicrm_api($job->api_entity, $job->api_action, $params);
133 }
134 catch(Exception$e) {
135 $this->logEntry('Error while executing ' . $job->name . ': ' . $e->getMessage());
136 }
137 $this->logEntry('Finished execution of ' . $job->name . ' with result: ' . $this->_apiResultToMessage($result));
138 $this->currentJob = FALSE;
139 }
140
141 /*
142 * Retrieves the list of jobs from the database,
143 * populates class param.
144 *
145 * @param void
146 * @return array ($id => CRM_Core_ScheduledJob)
147 * @access private
148 *
149 */
150 private function _getJobs() {
151 $jobs = array();
152 $dao = new CRM_Core_DAO_Job();
153 $dao->orderBy('name');
154 $dao->find();
155 while ($dao->fetch()) {
156 $temp = array();
157 CRM_Core_DAO::storeValues($dao, $temp);
158 $jobs[$dao->id] = new CRM_Core_ScheduledJob($temp);
159 }
160 return $jobs;
161 }
162
163 /*
164 * Retrieves specific job from the database by id
165 * and creates ScheduledJob object.
166 *
167 * @param void
168 * @access private
169 *
170 */
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');
174 }
175 $dao = new CRM_Core_DAO_Job();
176 $dao->id = $id;
177 $dao->api_entity = $entity;
178 $dao->api_action = $action;
179 $dao->find();
180 while ($dao->fetch()) {
181 CRM_Core_DAO::storeValues($dao, $temp);
182 $job = new CRM_Core_ScheduledJob($temp);
183 }
184 return $job;
185 }
186
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;
192 }
193
194 /*
195 *
196 * @return array|null collection of permissions, null if none
197 * @access public
198 *
199 */
200 public function logEntry($message) {
201 $domainID = CRM_Core_Config::domainID();
202 $dao = new CRM_Core_DAO_JobLog();
203
204 $dao->domain_id = $domainID;
205 $dao->description = substr($message, 0, 235);
206 if (strlen($message) > 235) {
207 $dao->description .= " (...)";
208 }
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;
213 $data = "";
214 if (!empty($this->currentJob->parameters)) {
215 $data .= "\n\nParameters raw (from db settings): \n" . $this->currentJob->parameters;
216 }
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]);
221 }
222 else {
223 $data .= "\n\nParameters parsed (and passed to API method): \n" . serialize($this->currentJob->apiParams);
224 }
225
226 $data .= "\n\nFull message: \n" . $message;
227
228 $dao->data = $data;
229 }
230 $dao->save();
231 }
232
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);
239 }
240 if (is_array($vals)) {
241 $vals = serialize($vals);
242 }
243 $message = $apiResult['is_error'] ? ', Error message: ' . $msg : " (" . $vals . ")";
244 return $status . $message;
245 }
246 }
247
248 function CRM_Core_JobManager_scheduledJobFatalErrorHandler($message) {
249 throw new Exception("{$message['message']}: {$message['code']}");
250 }
251