Enable api_v3_syntaxConformaceTest::testInvalidID_delete (#9068)
[civicrm-core.git] / api / v3 / Job.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
81621fee 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
fa938177 6 | Copyright CiviCRM LLC (c) 2004-2016 |
6a488035
TO
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
244bbdd8 29 * This api is used for working with scheduled "cron" jobs.
6a488035
TO
30 *
31 * @package CiviCRM_APIv3
6a488035
TO
32 */
33
6a488035 34/**
c1a920f1
EM
35 * Adjust metadata for "Create" action.
36 *
37 * The metadata is used for setting defaults, documentation & validation.
6a488035 38 *
cf470720 39 * @param array $params
b081365f 40 * Array of parameters determined by getfields.
6a488035
TO
41 */
42function _civicrm_api3_job_create_spec(&$params) {
43 $params['run_frequency']['api.required'] = 1;
44 $params['name']['api.required'] = 1;
45 $params['api_entity']['api.required'] = 1;
46 $params['api_action']['api.required'] = 1;
47
48 $params['domain_id']['api.default'] = CRM_Core_Config::domainID();
49 $params['is_active']['api.default'] = 1;
50}
51
52/**
c1a920f1 53 * Create scheduled job.
6a488035 54 *
cf470720
TO
55 * @param array $params
56 * Associative array of property name/value pairs to insert in new job.
6a488035 57 *
72b3a70c 58 * @return array
6a488035
TO
59 */
60function civicrm_api3_job_create($params) {
f39bacdf 61 return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params);
6a488035
TO
62}
63
64/**
211e2fca 65 * Retrieve one or more job.
971d41b1
CW
66 *
67 * @param array $params
68 * input parameters
971d41b1 69 *
211e2fca 70 * @return array
6a488035
TO
71 */
72function civicrm_api3_job_get($params) {
73 return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
74}
75
76/**
211e2fca 77 * Delete a job.
6a488035 78 *
9657ccf2 79 * @param array $params
6a488035
TO
80 */
81function civicrm_api3_job_delete($params) {
61ef23bd 82 _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);
6a488035
TO
83}
84
85/**
211e2fca
EM
86 * Dumb wrapper to execute scheduled jobs.
87 *
88 * Always creates success - errors and results are handled in the job log.
6a488035 89 *
cf470720 90 * @param array $params
971d41b1 91 * input parameters (unused).
6a488035 92 *
a6c01b45 93 * @return array
72b3a70c 94 * API Result Array
6a488035 95 */
608e6658 96function civicrm_api3_job_execute($params) {
608e6658 97
6a488035
TO
98 $facility = new CRM_Core_JobManager();
99 $facility->execute(FALSE);
100
61fe4988 101 // Always creates success - results are handled elsewhere.
244bbdd8 102 return civicrm_api3_create_success(1, $params, 'Job');
6a488035
TO
103}
104
105/**
211e2fca 106 * Adjust Metadata for Execute action.
6a488035 107 *
cf470720 108 * @param array $params
b081365f 109 * Array of parameters determined by getfields.
6a488035
TO
110 */
111function _civicrm_api3_job_execute_spec(&$params) {
112}
113
114/**
211e2fca 115 * Geocode group of contacts based on given params.
6a488035 116 *
cf470720 117 * @param array $params
971d41b1 118 * input parameters.
6a488035 119 *
a6c01b45 120 * @return array
72b3a70c 121 * API Result Array
6a488035
TO
122 */
123function civicrm_api3_job_geocode($params) {
6a488035
TO
124 $gc = new CRM_Utils_Address_BatchUpdate($params);
125
6a488035
TO
126 $result = $gc->run();
127
128 if ($result['is_error'] == 0) {
129 return civicrm_api3_create_success($result['messages']);
130 }
131 else {
132 return civicrm_api3_create_error($result['messages']);
133 }
134}
9657ccf2 135
6a488035 136/**
c1a920f1 137 * First check on Code documentation.
9657ccf2
EM
138 *
139 * @param array $params
6a488035
TO
140 */
141function _civicrm_api3_job_geocode_spec(&$params) {
d142432b 142 $params['start'] = array(
8ebf8a02
DG
143 'title' => 'Starting Contact ID',
144 'type' => CRM_Utils_Type::T_INT,
d142432b
EM
145 );
146 $params['end'] = array(
8ebf8a02
DG
147 'title' => 'Ending Contact ID',
148 'type' => CRM_Utils_Type::T_INT,
d142432b
EM
149 );
150 $params['geocoding'] = array(
151 'title' => 'Geocode address?',
152 'type' => CRM_Utils_Type::T_BOOLEAN,
153 );
154 $params['parse'] = array(
155 'title' => 'Parse street address?',
156 'type' => CRM_Utils_Type::T_BOOLEAN,
157 );
b2ed8e73
CW
158 $params['throttle'] = array(
159 'title' => 'Throttle?',
d142432b
EM
160 'description' => 'If enabled, geo-codes at a slow rate',
161 'type' => CRM_Utils_Type::T_BOOLEAN,
b2ed8e73 162 );
6a488035
TO
163}
164
165/**
c1a920f1 166 * Send the scheduled reminders for all contacts (either for activities or events).
6a488035 167 *
cf470720
TO
168 * @param array $params
169 * (reference ) input parameters.
6a488035
TO
170 * now - the time to use, in YmdHis format
171 * - makes testing a bit simpler since we can simulate past/future time
172 *
c23f45d3 173 * @return array
6a488035
TO
174 */
175function civicrm_api3_job_send_reminder($params) {
e27a3472
EM
176 //note that $params['rowCount' can be overridden by one of the preferred syntaxes ($options['limit'] = x
177 //It's not clear whether than syntax can be passed in via the UI config - but this keeps the pre 4.4.4 behaviour
c23f45d3 178 // in that case (ie. makes it non-configurable via the UI). Another approach would be to set a default of 0
e27a3472
EM
179 // in the _spec function - but since that is a deprecated value it seems more contentious than this approach
180 $params['rowCount'] = 0;
83617886 181 $lock = Civi::lockManager()->acquire('worker.core.ActionSchedule');
39fefc30 182 if (!$lock->isAcquired()) {
33c5988b 183 return civicrm_api3_create_error('Could not acquire lock, another ActionSchedule process is running');
39fefc30
KJ
184 }
185
73f3e293 186 $result = CRM_Core_BAO_ActionSchedule::processQueue(CRM_Utils_Array::value('now', $params), $params);
39fefc30 187 $lock->release();
6a488035
TO
188
189 if ($result['is_error'] == 0) {
190 return civicrm_api3_create_success();
191 }
192 else {
193 return civicrm_api3_create_error($result['messages']);
194 }
195}
73f3e293 196/**
c1a920f1
EM
197 * Adjust metadata for "send_reminder" action.
198 *
199 * The metadata is used for setting defaults, documentation & validation.
73f3e293 200 *
cf470720 201 * @param array $params
b081365f 202 * Array of parameters determined by getfields.
73f3e293
E
203 */
204function _civicrm_api3_job_send_reminder(&$params) {
205 //@todo this function will now take all fields in action_schedule as params
206 // as it is calling the api fn to set the filters - update getfields to reflect
207 $params['id'] = array(
208 'type' => CRM_Utils_Type::T_INT,
21dfd5f5 209 'title' => 'Action Schedule ID',
73f3e293
E
210 );
211}
6a488035 212/**
c1a920f1 213 * Execute a specific report instance and send the output via email.
6a488035 214 *
cf470720
TO
215 * @param array $params
216 * (reference ) input parameters.
6a488035
TO
217 * sendmail - Boolean - should email be sent?, required
218 * instanceId - Integer - the report instance ID
219 * resetVal - Integer - should we reset form state (always true)?
220 *
c23f45d3 221 * @return array
6a488035
TO
222 */
223function civicrm_api3_job_mail_report($params) {
6a488035
TO
224 $result = CRM_Report_Utils_Report::processReport($params);
225
226 if ($result['is_error'] == 0) {
227 // this should be handling by throwing exceptions but can't remove until we can test that.
228 return civicrm_api3_create_success();
229 }
230 else {
231 return civicrm_api3_create_error($result['messages']);
232 }
233}
234
235/**
6a488035 236 * This method allows to update Email Greetings, Postal Greetings and Addressee for a specific contact type.
211e2fca 237 *
6a488035
TO
238 * IMPORTANT: You must first create valid option value before using via admin interface.
239 * Check option lists for Email Greetings, Postal Greetings and Addressee
240 *
211e2fca 241 * @todo - is this here by mistake or should it be added to _spec function :id - Integer - greetings option group.
6a488035 242 *
9657ccf2 243 * @param array $params
77b97be7 244 *
3f83a242 245 * @return array
6a488035
TO
246 */
247function civicrm_api3_job_update_greeting($params) {
6a488035 248 if (isset($params['ct']) && isset($params['gt'])) {
6a488035
TO
249 $ct = explode(',', $params['ct']);
250 $gt = explode(',', $params['gt']);
251 foreach ($ct as $ctKey => $ctValue) {
252 foreach ($gt as $gtKey => $gtValue) {
253 $params['ct'] = trim($ctValue);
254 $params['gt'] = trim($gtValue);
3f83a242 255 CRM_Contact_BAO_Contact_Utils::updateGreeting($params);
6a488035
TO
256 }
257 }
258 }
259 else {
3f83a242 260 CRM_Contact_BAO_Contact_Utils::updateGreeting($params);
6a488035 261 }
3f83a242 262 return civicrm_api3_create_success();
6a488035
TO
263}
264
265/**
211e2fca 266 * Adjust Metadata for Get action.
72b3a70c 267 *
c1a920f1
EM
268 * The metadata is used for setting defaults, documentation & validation.
269 *
72b3a70c 270 * @param array $params
b081365f 271 * Array of parameters determined by getfields.
72b3a70c 272 */
6a488035
TO
273function _civicrm_api3_job_update_greeting_spec(&$params) {
274 $params['ct'] = array(
275 'api.required' => 1,
276 'title' => 'Contact Type',
277 'type' => CRM_Utils_Type::T_STRING,
278 );
279 $params['gt'] = array(
971d41b1
CW
280 'api.required' => 1,
281 'title' => 'Greeting Type',
282 'type' => CRM_Utils_Type::T_STRING,
6a488035
TO
283 );
284}
285
286/**
c1a920f1 287 * Mass update pledge statuses.
6a488035 288 *
cf470720 289 * @param array $params
c1a920f1 290 *
c23f45d3 291 * @return array
6a488035
TO
292 */
293function civicrm_api3_job_process_pledge($params) {
294 // *** Uncomment the next line if you want automated reminders to be sent
295 // $params['send_reminders'] = true;
296 $result = CRM_Pledge_BAO_Pledge::updatePledgeStatus($params);
297
298 if ($result['is_error'] == 0) {
299 // experiment: detailed execution log is a result here
300 return civicrm_api3_create_success($result['messages']);
301 }
302 else {
303 return civicrm_api3_create_error($result['error_message']);
304 }
305}
306
307/**
c1a920f1 308 * Process mail queue.
6a488035
TO
309 *
310 * @param array $params
311 *
312 * @return array
313 */
314function civicrm_api3_job_process_mailing($params) {
ec782609 315 $mailsProcessedOrig = CRM_Mailing_BAO_MailingJob::$mailsProcessed;
6a488035
TO
316
317 if (!CRM_Mailing_BAO_Mailing::processQueue()) {
318 return civicrm_api3_create_error('Process Queue failed');
319 }
320 else {
ec782609
TO
321 $values = array(
322 'processed' => CRM_Mailing_BAO_MailingJob::$mailsProcessed - $mailsProcessedOrig,
323 );
244bbdd8 324 return civicrm_api3_create_success($values, $params, 'Job', 'process_mailing');
6a488035
TO
325 }
326}
327
328/**
cd5823ae 329 * Process sms queue.
6a488035
TO
330 *
331 * @param array $params
332 *
333 * @return array
334 */
335function civicrm_api3_job_process_sms($params) {
ec782609
TO
336 $mailsProcessedOrig = CRM_Mailing_BAO_MailingJob::$mailsProcessed;
337
6a488035
TO
338 if (!CRM_Mailing_BAO_Mailing::processQueue('sms')) {
339 return civicrm_api3_create_error('Process Queue failed');
340 }
341 else {
ec782609
TO
342 $values = array(
343 'processed' => CRM_Mailing_BAO_MailingJob::$mailsProcessed - $mailsProcessedOrig,
344 );
244bbdd8 345 return civicrm_api3_create_success($values, $params, 'Job', 'process_sms');
6a488035
TO
346 }
347}
39fefc30 348
6a488035 349/**
c1a920f1 350 * Job to get mail responses from civiMailing.
9657ccf2
EM
351 *
352 * @param array $params
353 *
354 * @return array
6a488035
TO
355 */
356function civicrm_api3_job_fetch_bounces($params) {
83617886 357 $lock = Civi::lockManager()->acquire('worker.mailing.EmailProcessor');
6a488035
TO
358 if (!$lock->isAcquired()) {
359 return civicrm_api3_create_error('Could not acquire lock, another EmailProcessor process is running');
360 }
361 if (!CRM_Utils_Mail_EmailProcessor::processBounces()) {
39fefc30 362 $lock->release();
6a488035
TO
363 return civicrm_api3_create_error('Process Bounces failed');
364 }
6a488035 365 $lock->release();
39fefc30
KJ
366
367 // FIXME: processBounces doesn't return true/false on success/failure
368 $values = array();
244bbdd8 369 return civicrm_api3_create_success($values, $params, 'Job', 'fetch_bounces');
6a488035
TO
370}
371
372/**
35823763 373 * Job to get mail and create activities.
9657ccf2
EM
374 *
375 * @param array $params
376 *
377 * @return array
6a488035
TO
378 */
379function civicrm_api3_job_fetch_activities($params) {
83617886 380 $lock = Civi::lockManager()->acquire('worker.mailing.EmailProcessor');
6a488035
TO
381 if (!$lock->isAcquired()) {
382 return civicrm_api3_create_error('Could not acquire lock, another EmailProcessor process is running');
383 }
39fefc30
KJ
384
385 try {
386 CRM_Utils_Mail_EmailProcessor::processActivities();
481a74f4 387 $values = array();
6a488035 388 $lock->release();
244bbdd8 389 return civicrm_api3_create_success($values, $params, 'Job', 'fetch_activities');
0db6c3e1
TO
390 }
391 catch (Exception $e) {
6a488035
TO
392 $lock->release();
393 return civicrm_api3_create_error('Process Activities failed');
394 }
395}
396
397/**
35823763 398 * Process participant statuses.
6a488035 399 *
cf470720 400 * @param array $params
35823763 401 * Input parameters.
6a488035 402 *
a6c01b45 403 * @return array
72b3a70c 404 * array of properties, if error an array with an error id and error message
6a488035
TO
405 */
406function civicrm_api3_job_process_participant($params) {
6a488035
TO
407 $result = CRM_Event_BAO_ParticipantStatusType::process($params);
408
409 if (!$result['is_error']) {
410 return civicrm_api3_create_success(implode("\r\r", $result['messages']));
411 }
412 else {
413 return civicrm_api3_create_error('Error while processing participant statuses');
414 }
415}
416
417
418/**
61fe4988
EM
419 * This api checks and updates the status of all membership records for a given domain.
420 *
421 * The function uses the calc_membership_status and update_contact_membership APIs.
6a488035
TO
422 *
423 * IMPORTANT:
424 * Sending renewal reminders has been migrated from this job to the Scheduled Reminders function as of 4.3.
425 *
cf470720
TO
426 * @param array $params
427 * Input parameters NOT USED.
6a488035 428 *
971d41b1 429 * @return bool
72b3a70c 430 * true if success, else false
6a488035 431 */
608e6658 432function civicrm_api3_job_process_membership($params) {
83617886 433 $lock = Civi::lockManager()->acquire('worker.member.UpdateMembership');
39fefc30 434 if (!$lock->isAcquired()) {
017877e1 435 return civicrm_api3_create_error('Could not acquire lock, another Membership Processing process is running');
39fefc30
KJ
436 }
437
6a488035 438 $result = CRM_Member_BAO_Membership::updateAllMembershipStatus();
39fefc30 439 $lock->release();
6a488035
TO
440
441 if ($result['is_error'] == 0) {
244bbdd8 442 return civicrm_api3_create_success($result['messages'], $params, 'Job', 'process_membership');
6a488035
TO
443 }
444 else {
445 return civicrm_api3_create_error($result['messages']);
446 }
447}
448
449/**
3f83a242 450 * This api checks and updates the status of all survey respondents.
6a488035 451 *
cf470720
TO
452 * @param array $params
453 * (reference ) input parameters.
6a488035 454 *
971d41b1 455 * @return bool
72b3a70c 456 * true if success, else false
6a488035
TO
457 */
458function civicrm_api3_job_process_respondent($params) {
6a488035
TO
459 $result = CRM_Campaign_BAO_Survey::releaseRespondent($params);
460
461 if ($result['is_error'] == 0) {
462 return civicrm_api3_create_success();
463 }
464 else {
465 return civicrm_api3_create_error($result['messages']);
466 }
467}
468
469/**
470 * Merges given pair of duplicate contacts.
471 *
cf470720
TO
472 * @param array $params
473 * Input parameters.
6a488035 474 *
a6c01b45 475 * @return array
72b3a70c 476 * API Result Array
76ddbc8e 477 * @throws \CiviCRM_API3_Exception
6a488035
TO
478 */
479function civicrm_api3_job_process_batch_merge($params) {
6c866f0c 480 $rule_group_id = CRM_Utils_Array::value('rule_group_id', $params);
76ddbc8e 481 if (!$rule_group_id) {
482 $rule_group_id = civicrm_api3('RuleGroup', 'getvalue', array(
483 'contact_type' => 'Individual',
484 'used' => 'Unsupervised',
485 'return' => 'id',
6c866f0c 486 'options' => array('limit' => 1),
76ddbc8e 487 ));
488 }
6a488035
TO
489 $gid = CRM_Utils_Array::value('gid', $params);
490
491 $mode = CRM_Utils_Array::value('mode', $params, 'safe');
492 $autoFlip = CRM_Utils_Array::value('auto_flip', $params, TRUE);
493
3058f4d9 494 $result = CRM_Dedupe_Merger::batchMerge($rule_group_id, $gid, $mode, $autoFlip, 1, 2, CRM_Utils_Array::value('criteria', $params, array()), CRM_Utils_Array::value('check_permissions', $params));
6a488035 495
76ddbc8e 496 return civicrm_api3_create_success($result, $params);
6a488035
TO
497}
498
3f83a242 499/**
61fe4988
EM
500 * Metadata for batch merge function.
501 *
3f83a242
EM
502 * @param $params
503 */
504function _civicrm_api3_job_process_batch_merge_spec(&$params) {
6c866f0c 505 $params['rule_group_id'] = array(
76ddbc8e 506 'title' => 'Dedupe rule group id, defaults to Contact Unsupervised rule',
3f83a242 507 'type' => CRM_Utils_Type::T_INT,
6c866f0c 508 'api.aliases' => array('rgid'),
3f83a242
EM
509 );
510 $params['gid'] = array(
511 'title' => 'group id',
512 'type' => CRM_Utils_Type::T_INT,
513 );
514 $params['mode'] = array(
515 'title' => 'Mode',
608e6658 516 'description' => 'helps decide how to behave when there are conflicts. A \'safe\' value skips the merge if there are no conflicts. Does a force merge otherwise.',
3f83a242
EM
517 'type' => CRM_Utils_Type::T_STRING,
518 );
519 $params['auto_flip'] = array(
520 'title' => 'Auto Flip',
521 'description' => 'let the api decide which contact to retain and which to delete?',
522 'type' => CRM_Utils_Type::T_BOOLEAN,
523 );
524}
525
6a488035 526/**
61fe4988 527 * Runs handlePaymentCron method in the specified payment processor.
6a488035 528 *
cf470720
TO
529 * @param array $params
530 * Input parameters.
6a488035 531 *
61fe4988
EM
532 * Expected @params array keys are: INCORRECTLY DOCUMENTED AND SHOULD BE IN THE _spec function
533 * for retrieval via getfields.
6a488035 534 * {string 'processor_name' - the name of the payment processor, eg: Sagepay}
6a488035
TO
535 */
536function civicrm_api3_job_run_payment_cron($params) {
537
6a488035
TO
538 // live mode
539 CRM_Core_Payment::handlePaymentMethod(
540 'PaymentCron',
541 array_merge(
542 $params,
543 array(
544 'caller' => 'api',
545 )
546 )
547 );
548
549 // test mode
550 CRM_Core_Payment::handlePaymentMethod(
551 'PaymentCron',
552 array_merge(
553 $params,
554 array(
555 'mode' => 'test',
556 )
557 )
558 );
559}
560
561/**
61fe4988
EM
562 * This api cleans up all the old session entries and temp tables.
563 *
564 * We recommend that sites run this on an hourly basis.
6a488035 565 *
cf470720 566 * @param array $params
971d41b1 567 * Sends in various config parameters to decide what needs to be cleaned.
6a488035 568 */
481a74f4 569function civicrm_api3_job_cleanup($params) {
971d41b1
CW
570 $session = CRM_Utils_Array::value('session', $params, TRUE);
571 $tempTable = CRM_Utils_Array::value('tempTables', $params, TRUE);
572 $jobLog = CRM_Utils_Array::value('jobLog', $params, TRUE);
573 $prevNext = CRM_Utils_Array::value('prevNext', $params, TRUE);
574 $dbCache = CRM_Utils_Array::value('dbCache', $params, FALSE);
575 $memCache = CRM_Utils_Array::value('memCache', $params, FALSE);
9db8dfb7 576 $tplCache = CRM_Utils_Array::value('tplCache', $params, FALSE);
577 $wordRplc = CRM_Utils_Array::value('wordRplc', $params, FALSE);
6a488035 578
481a74f4
TO
579 if ($session || $tempTable || $prevNext) {
580 CRM_Core_BAO_Cache::cleanup($session, $tempTable, $prevNext);
6a488035
TO
581 }
582
481a74f4
TO
583 if ($jobLog) {
584 CRM_Core_BAO_Job::cleanup();
6a488035
TO
585 }
586
9db8dfb7 587 if ($tplCache) {
4dd6dceb 588 $config = CRM_Core_Config::singleton();
589 $config->cleanup(1, FALSE);
590 }
591
481a74f4
TO
592 if ($dbCache) {
593 CRM_Core_Config::clearDBCache();
6a488035
TO
594 }
595
481a74f4
TO
596 if ($memCache) {
597 CRM_Utils_System::flushCache();
6a488035 598 }
4dd6dceb 599
9db8dfb7 600 if ($wordRplc) {
4dd6dceb 601 CRM_Core_BAO_WordReplacement::rebuild();
602 }
6a488035
TO
603}
604
605/**
606 * Set expired relationships to disabled.
61fe4988
EM
607 *
608 * @param array $params
609 *
9657ccf2 610 * @return array
3f83a242 611 * @throws \API_Exception
6a488035 612 */
608e6658 613function civicrm_api3_job_disable_expired_relationships($params) {
6a488035 614 $result = CRM_Contact_BAO_Relationship::disableExpiredRelationships();
3f83a242
EM
615 if (!$result) {
616 throw new API_Exception('Failed to disable all expired relationships.');
6a488035 617 }
244bbdd8 618 return civicrm_api3_create_success(1, $params, 'Job', 'disable_expired_relationships');
6a488035
TO
619}
620
621/**
61fe4988
EM
622 * This api reloads all the smart groups.
623 *
624 * If the org has a large number of smart groups it is recommended that they use the limit clause
625 * to limit the number of smart groups evaluated on a per job basis.
626 *
627 * Might also help to increase the smartGroupCacheTimeout and use the cache.
9657ccf2
EM
628 *
629 * @param array $params
61fe4988 630 *
9657ccf2 631 * @return array
3f83a242 632 * @throws \API_Exception
6a488035 633 */
9657ccf2 634function civicrm_api3_job_group_rebuild($params) {
83617886 635 $lock = Civi::lockManager()->acquire('worker.core.GroupRebuild');
39fefc30 636 if (!$lock->isAcquired()) {
3f83a242 637 throw new API_Exception('Could not acquire lock, another EmailProcessor process is running');
39fefc30
KJ
638 }
639
481a74f4 640 $limit = CRM_Utils_Array::value('limit', $params, 0);
6a488035 641
971d41b1 642 CRM_Contact_BAO_GroupContactCache::loadAll(NULL, $limit);
39fefc30
KJ
643 $lock->release();
644
f9e16e9a 645 return civicrm_api3_create_success();
6a488035 646}
999128a9 647
a357281f 648/**
649 * Flush smart groups caches.
650 *
651 * This job purges aged smart group cache data (based on the timeout value). Sites can decide whether they want this
652 * job and / or the group cache rebuild job to run. In some cases performance is better when old caches are cleared out
653 * prior to any attempt to rebuild them. Also, many sites are very happy to have caches built on demand, provided the
654 * user is not having to wait for deadlocks to clear when invalidating them.
655 *
656 * @param array $params
657 *
658 * @return array
659 * @throws \API_Exception
660 */
661function civicrm_api3_job_group_cache_flush($params) {
2b68a50c 662 CRM_Contact_BAO_GroupContactCache::deterministicCacheFlush();
a357281f 663 return civicrm_api3_create_success();
664}
665
999128a9
CW
666/**
667 * Check for CiviCRM software updates.
668 *
669 * Anonymous site statistics are sent back to civicrm.org during this check.
670 */
671function civicrm_api3_job_version_check() {
672 $vc = new CRM_Utils_VersionCheck();
673 $vc->fetch();
e9e60a8c 674 return civicrm_api3_create_success();
999128a9 675}