Merge pull request #19727 from totten/master-authx-rest
[civicrm-core.git] / api / v3 / Contribution.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11
12 /**
13 * This api exposes CiviCRM Contribution records.
14 *
15 * @package CiviCRM_APIv3
16 */
17
18 use Civi\Api4\Contribution;
19
20 /**
21 * Add or update a Contribution.
22 *
23 * @param array $params
24 * Input parameters.
25 *
26 * @throws API_Exception
27 * @return array
28 * Api result array
29 */
30 function civicrm_api3_contribution_create($params) {
31 $values = [];
32 _civicrm_api3_custom_format_params($params, $values, 'Contribution');
33 $params = array_merge($params, $values);
34 // The BAO should not clean money - it should be done in the form layer & api wrapper
35 // (although arguably the api should expect pre-cleaned it seems to do some cleaning.)
36 if (empty($params['skipCleanMoney'])) {
37 foreach (['total_amount', 'net_amount', 'fee_amount', 'non_deductible_amount'] as $field) {
38 if (isset($params[$field])) {
39 $params[$field] = CRM_Utils_Rule::cleanMoney($params[$field]);
40 }
41 }
42 }
43 $params['skipCleanMoney'] = TRUE;
44
45 if (!empty($params['check_permissions'])) {
46 // Check acls on this entity. Note that we pass in financial type id, if we have it
47 // since we know this is checked by acls. In v4 we do something more generic.
48 if (!Contribution::checkAccess()
49 ->setAction(empty($params['id']) ? 'create' : 'update')
50 ->addValue('id', $params['id'] ?? NULL)
51 ->addValue('financial_type_id', $params['financial_type_id'] ?? NULL)
52 ->execute()->first()['access']) {
53 throw new API_Exception('You do not have permission to create this contribution');
54 }
55 }
56 if (!empty($params['id']) && !empty($params['contribution_status_id'])) {
57 $error = [];
58 //throw error for invalid status change such as setting completed back to pending
59 //@todo this sort of validation belongs in the BAO not the API - if it is not an OK
60 // action it needs to be blocked there. If it is Ok through a form it needs to be OK through the api
61 CRM_Contribute_BAO_Contribution::checkStatusValidation(NULL, $params, $error);
62 if (array_key_exists('contribution_status_id', $error)) {
63 throw new API_Exception($error['contribution_status_id']);
64 }
65 }
66 if (!empty($params['id']) && !empty($params['financial_type_id'])) {
67 $error = [];
68 CRM_Contribute_BAO_Contribution::checkFinancialTypeChange($params['financial_type_id'], $params['id'], $error);
69 if (array_key_exists('financial_type_id', $error)) {
70 throw new API_Exception($error['financial_type_id']);
71 }
72 }
73 if (!isset($params['tax_amount']) && empty($params['line_item'])
74 && empty($params['skipLineItem'])
75 && empty($params['id'])
76 ) {
77 $taxRates = CRM_Core_PseudoConstant::getTaxRates();
78 $taxRate = $taxRates[$params['financial_type_id']] ?? 0;
79 if ($taxRate) {
80 // Be afraid - historically if a contribution was tax then the passed in amount is EXCLUSIVE
81 $params['tax_amount'] = $params['total_amount'] * ($taxRate / 100);
82 $params['total_amount'] += $params['tax_amount'];
83 }
84 }
85 _civicrm_api3_contribution_create_legacy_support_45($params);
86
87 return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params, 'Contribution');
88 }
89
90 /**
91 * Adjust Metadata for Create action.
92 *
93 * The metadata is used for setting defaults, documentation & validation.
94 *
95 * @param array $params
96 * Array of parameters determined by getfields.
97 */
98 function _civicrm_api3_contribution_create_spec(&$params) {
99 $params['contact_id']['api.required'] = 1;
100 $params['total_amount']['api.required'] = 1;
101 $params['payment_instrument_id']['api.aliases'] = ['payment_instrument'];
102 $params['receive_date']['api.default'] = 'now';
103 $params['receive_date']['api.required'] = TRUE;
104 $params['payment_processor'] = [
105 'name' => 'payment_processor',
106 'title' => 'Payment Processor ID',
107 'description' => 'ID of payment processor used for this contribution',
108 // field is called payment processor - not payment processor id but can only be one id so
109 // it seems likely someone will fix it up one day to be more consistent - lets alias it from the start
110 'api.aliases' => ['payment_processor_id'],
111 'type' => CRM_Utils_Type::T_INT,
112 ];
113 $params['financial_type_id']['api.aliases'] = ['contribution_type_id', 'contribution_type'];
114 $params['financial_type_id']['api.required'] = 1;
115 $params['note'] = [
116 'name' => 'note',
117 'uniqueName' => 'contribution_note',
118 'title' => 'note',
119 'type' => 2,
120 'description' => 'Associated Note in the notes table',
121 ];
122 $params['soft_credit_to'] = [
123 'name' => 'soft_credit_to',
124 'title' => 'Soft Credit contact ID (legacy)',
125 'type' => CRM_Utils_Type::T_INT,
126 'description' => 'ID of Contact to be Soft credited to (deprecated - use contribution_soft api)',
127 'FKClassName' => 'CRM_Contact_DAO_Contact',
128 ];
129 $params['honor_contact_id'] = [
130 'name' => 'honor_contact_id',
131 'title' => 'Honoree contact ID (legacy)',
132 'type' => CRM_Utils_Type::T_INT,
133 'description' => 'ID of honoree contact (deprecated - use contribution_soft api)',
134 'FKClassName' => 'CRM_Contact_DAO_Contact',
135 ];
136 $params['honor_type_id'] = [
137 'name' => 'honor_type_id',
138 'title' => 'Honoree Type (legacy)',
139 'type' => CRM_Utils_Type::T_INT,
140 'description' => 'Type of honoree contact (deprecated - use contribution_soft api)',
141 'pseudoconstant' => TRUE,
142 ];
143 // note this is a recommended option but not adding as a default to avoid
144 // creating unnecessary changes for the dev
145 $params['skipRecentView'] = [
146 'name' => 'skipRecentView',
147 'title' => 'Skip adding to recent view',
148 'type' => CRM_Utils_Type::T_BOOLEAN,
149 'description' => 'Do not add to recent view (setting this improves performance)',
150 ];
151 $params['skipLineItem'] = [
152 'name' => 'skipLineItem',
153 'title' => 'Skip adding line items',
154 'type' => CRM_Utils_Type::T_BOOLEAN,
155 'api.default' => 0,
156 'description' => 'Do not add line items by default (if you wish to add your own)',
157 ];
158 $params['batch_id'] = [
159 'title' => 'Batch',
160 'type' => CRM_Utils_Type::T_INT,
161 'description' => 'Batch which relevant transactions should be added to',
162 ];
163 $params['refund_trxn_id'] = [
164 'title' => 'Refund Transaction ID',
165 'type' => CRM_Utils_Type::T_STRING,
166 'description' => 'Transaction ID specific to the refund taking place',
167 ];
168 $params['card_type_id'] = [
169 'title' => 'Card Type ID',
170 'description' => 'Providing Credit Card Type ID',
171 'type' => CRM_Utils_Type::T_INT,
172 'pseudoconstant' => [
173 'optionGroupName' => 'accept_creditcard',
174 ],
175 ];
176 }
177
178 /**
179 * Support for schema changes made in 4.5.
180 *
181 * The main purpose of the API is to provide integrators a level of stability not provided by
182 * the core code or schema - this means we have to provide support for api calls (where possible)
183 * across schema changes.
184 *
185 * @param array $params
186 */
187 function _civicrm_api3_contribution_create_legacy_support_45(&$params) {
188 //legacy soft credit handling - recommended approach is chaining
189 if (!empty($params['soft_credit_to'])) {
190 $params['soft_credit'][] = [
191 'contact_id' => $params['soft_credit_to'],
192 'amount' => $params['total_amount'],
193 'soft_credit_type_id' => CRM_Core_OptionGroup::getDefaultValue("soft_credit_type"),
194 ];
195 }
196 if (!empty($params['honor_contact_id'])) {
197 $params['soft_credit'][] = [
198 'contact_id' => $params['honor_contact_id'],
199 'amount' => $params['total_amount'],
200 'soft_credit_type_id' => CRM_Utils_Array::value('honor_type_id', $params, CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_ContributionSoft', 'soft_credit_type_id', 'in_honor_of')),
201 ];
202 }
203 }
204
205 /**
206 * Delete a Contribution.
207 *
208 * @param array $params
209 * Input parameters.
210 *
211 * @return array
212 * @throws \API_Exception
213 */
214 function civicrm_api3_contribution_delete($params) {
215
216 $contributionID = !empty($params['contribution_id']) ? $params['contribution_id'] : $params['id'];
217 if (!empty($params['check_permissions']) && !\Civi\Api4\Utils\CoreUtil::checkAccessDelegated('Contribution', 'delete', ['id' => $contributionID], CRM_Core_Session::getLoggedInContactID() ?: 0)) {
218 throw new API_Exception('You do not have permission to delete this contribution');
219 }
220 if (CRM_Contribute_BAO_Contribution::deleteContribution($contributionID)) {
221 return civicrm_api3_create_success([$contributionID => 1]);
222 }
223 throw new API_Exception('Could not delete contribution');
224 }
225
226 /**
227 * Modify metadata for delete action.
228 *
229 * Legacy support for contribution_id.
230 *
231 * @param array $params
232 */
233 function _civicrm_api3_contribution_delete_spec(&$params) {
234 $params['id']['api.aliases'] = ['contribution_id'];
235 }
236
237 /**
238 * Retrieve a set of contributions.
239 *
240 * @param array $params
241 * Input parameters.
242 *
243 * @return array
244 * Array of contributions, if error an array with an error id and error message
245 */
246 function civicrm_api3_contribution_get($params) {
247
248 $mode = CRM_Contact_BAO_Query::MODE_CONTRIBUTE;
249 $additionalOptions = _civicrm_api3_contribution_get_support_nonunique_returns($params);
250 $returnProperties = CRM_Contribute_BAO_Query::defaultReturnProperties($mode);
251
252 // Get the contributions based on parameters passed in
253 $contributions = _civicrm_api3_get_using_query_object('Contribution', $params, $additionalOptions, NULL, $mode, $returnProperties);
254 if (!empty($contributions)) {
255 $softContributions = CRM_Contribute_BAO_ContributionSoft::getSoftCreditContributionFields(array_keys($contributions), TRUE);
256 foreach ($contributions as $id => $contribution) {
257 $contributions[$id] = isset($softContributions[$id]) ? array_merge($contribution, $softContributions[$id]) : $contribution;
258 // format soft credit for backward compatibility
259 _civicrm_api3_format_soft_credit($contributions[$id]);
260 _civicrm_api3_contribution_add_supported_fields($contributions[$id]);
261 }
262 }
263 return civicrm_api3_create_success($contributions, $params, 'Contribution', 'get');
264 }
265
266 /**
267 * Fix the return values to reflect cases where the schema has been changed.
268 *
269 * At the query object level using uniquenames dismbiguates between tables.
270 *
271 * However, adding uniquename can change inputs accepted by the api, so we need
272 * to ensure we are asking for the unique name return fields.
273 *
274 * @param array $params
275 *
276 * @return array
277 * @throws \API_Exception
278 */
279 function _civicrm_api3_contribution_get_support_nonunique_returns($params) {
280 $additionalOptions = [];
281 $options = _civicrm_api3_get_options_from_params($params, TRUE);
282 foreach (['check_number', 'address_id', 'cancel_date'] as $changedVariable) {
283 if (isset($options['return']) && !empty($options['return'][$changedVariable])) {
284 $additionalOptions['return']['contribution_' . $changedVariable] = 1;
285 }
286 }
287 return $additionalOptions;
288 }
289
290 /**
291 * Support for supported output variables.
292 *
293 * @param array $contribution
294 */
295 function _civicrm_api3_contribution_add_supported_fields(&$contribution) {
296 // These are output fields that are supported in our test contract.
297 // Arguably we should also do the same with 'campaign_id' &
298 // 'source' - which are also fields being rendered with unique names.
299 // That seems more consistent with other api where we output the actual field names.
300 $outputAliases = [
301 'contribution_check_number' => 'check_number',
302 'contribution_address_id' => 'address_id',
303 'payment_instrument_id' => 'instrument_id',
304 'contribution_cancel_date' => 'cancel_date',
305 ];
306 foreach ($outputAliases as $returnName => $copyTo) {
307 if (array_key_exists($returnName, $contribution)) {
308 $contribution[$copyTo] = $contribution[$returnName];
309 }
310 }
311
312 }
313
314 /**
315 * Get number of contacts matching the supplied criteria.
316 *
317 * @param array $params
318 *
319 * @return int
320 */
321 function civicrm_api3_contribution_getcount($params) {
322 $count = _civicrm_api3_get_using_query_object('Contribution', $params, [], TRUE, CRM_Contact_BAO_Query::MODE_CONTRIBUTE);
323 return (int) $count;
324 }
325
326 /**
327 * This function is used to format the soft credit for backward compatibility.
328 *
329 * As of v4.4 we support multiple soft credit, so now contribution returns array with 'soft_credit' as key
330 * but we still return first soft credit as a part of contribution array
331 *
332 * @param array $contribution
333 */
334 function _civicrm_api3_format_soft_credit(&$contribution) {
335 if (!empty($contribution['soft_credit'])) {
336 $contribution['soft_credit_to'] = $contribution['soft_credit'][1]['contact_id'];
337 $contribution['soft_credit_id'] = $contribution['soft_credit'][1]['soft_credit_id'];
338 }
339 }
340
341 /**
342 * Adjust Metadata for Get action.
343 *
344 * The metadata is used for setting defaults, documentation & validation.
345 *
346 * @param array $params
347 * Array of parameters determined by getfields.
348 */
349 function _civicrm_api3_contribution_get_spec(&$params) {
350 $params['contribution_test'] = [
351 'api.default' => 0,
352 'type' => CRM_Utils_Type::T_BOOLEAN,
353 'title' => 'Get Test Contributions?',
354 'api.aliases' => ['is_test'],
355 ];
356
357 $params['financial_type_id']['api.aliases'] = ['contribution_type_id'];
358 $params['payment_instrument_id']['api.aliases'] = ['contribution_payment_instrument', 'payment_instrument'];
359 $params['contact_id'] = $params['contribution_contact_id'] ?? NULL;
360 $params['contact_id']['api.aliases'] = ['contribution_contact_id'];
361 $params['is_template']['api.default'] = 0;
362 unset($params['contribution_contact_id']);
363 }
364
365 /**
366 * Legacy handling for contribution parameters.
367 *
368 * Take the input parameter list as specified in the data model and
369 * convert it into the same format that we use in QF and BAO object.
370 *
371 * @param array $params
372 * property name/value pairs to insert in new contact.
373 * @param array $values
374 * The reformatted properties that we can use internally.
375 *
376 * @return array
377 */
378 function _civicrm_api3_contribute_format_params($params, &$values) {
379 //legacy way of formatting from v2 api - v3 way is to define metadata & do it in the api layer
380 _civicrm_api3_filter_fields_for_bao('Contribution', $params, $values);
381 return [];
382 }
383
384 /**
385 * Send a contribution confirmation (receipt or invoice).
386 *
387 * The appropriate online template will be used (the existence of related objects
388 * (e.g. memberships ) will affect this selection
389 *
390 * @param array $params
391 * Input parameters.
392 *
393 * @throws Exception
394 */
395 function civicrm_api3_contribution_sendconfirmation($params) {
396 $ids = [];
397 $allowedParams = [
398 'receipt_from_email',
399 'receipt_from_name',
400 'receipt_update',
401 'cc_receipt',
402 'bcc_receipt',
403 'receipt_text',
404 'pay_later_receipt',
405 'payment_processor_id',
406 ];
407 $input = array_intersect_key($params, array_flip($allowedParams));
408 CRM_Contribute_BAO_Contribution::sendMail($input, $ids, $params['id']);
409 return [];
410 }
411
412 /**
413 * Adjust Metadata for sendconfirmation action.
414 *
415 * The metadata is used for setting defaults, documentation & validation.
416 *
417 * @param array $params
418 * Array of parameters determined by getfields.
419 */
420 function _civicrm_api3_contribution_sendconfirmation_spec(&$params) {
421 $params['id'] = [
422 'api.required' => 1,
423 'title' => ts('Contribution ID'),
424 'type' => CRM_Utils_Type::T_INT,
425 ];
426 $params['receipt_from_email'] = [
427 'title' => ts('From Email address (string)'),
428 'type' => CRM_Utils_Type::T_STRING,
429 ];
430 $params['receipt_from_name'] = [
431 'title' => ts('From Name (string)'),
432 'type' => CRM_Utils_Type::T_STRING,
433 ];
434 $params['cc_receipt'] = [
435 'title' => ts('CC Email address (string)'),
436 'type' => CRM_Utils_Type::T_STRING,
437 ];
438 $params['bcc_receipt'] = [
439 'title' => ts('BCC Email address (string)'),
440 'type' => CRM_Utils_Type::T_STRING,
441 ];
442 $params['receipt_text'] = [
443 'title' => ts('Message (string)'),
444 'type' => CRM_Utils_Type::T_STRING,
445 ];
446 $params['pay_later_receipt'] = [
447 'title' => ts('Pay Later Message (string)'),
448 'type' => CRM_Utils_Type::T_STRING,
449 ];
450 $params['receipt_update'] = [
451 'title' => ts('Update the Receipt Date'),
452 'type' => CRM_Utils_Type::T_BOOLEAN,
453 'api.default' => TRUE,
454 ];
455 $params['payment_processor_id'] = [
456 'title' => ts('Payment processor Id (avoids mis-guesses)'),
457 'type' => CRM_Utils_Type::T_INT,
458 ];
459 }
460
461 /**
462 * Complete an existing (pending) transaction.
463 *
464 * This will update related entities (participant, membership, pledge etc)
465 * and take any complete actions from the contribution page (e.g. send receipt).
466 *
467 * @todo - most of this should live in the BAO layer but as we want it to be an addition
468 * to 4.3 which is already stable we should add it to the api layer & re-factor into the BAO layer later
469 *
470 * @param array $params
471 * Input parameters.
472 *
473 * @return array
474 * API result array
475 * @throws \API_Exception
476 * @throws \CRM_Core_Exception
477 * @throws \Exception
478 */
479 function civicrm_api3_contribution_completetransaction($params) {
480 $contribution = new CRM_Contribute_BAO_Contribution();
481 $contribution->id = $params['id'];
482 if (!$contribution->find(TRUE)) {
483 throw new API_Exception('A valid contribution ID is required', 'invalid_data');
484 }
485 if ($contribution->contribution_status_id == CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'contribution_status_id', 'Completed')) {
486 throw new API_Exception(ts('Contribution already completed'), 'contribution_completed');
487 }
488
489 $params['trxn_id'] = $params['trxn_id'] ?? $contribution->trxn_id;
490
491 $passThroughParams = [
492 'fee_amount',
493 'payment_processor_id',
494 'trxn_id',
495 ];
496 $input = array_intersect_key($params, array_fill_keys($passThroughParams, NULL));
497
498 $ids = [];
499 if (!$contribution->loadRelatedObjects(['payment_processor_id' => $input['payment_processor_id'] ?? NULL], $ids, TRUE)) {
500 throw new API_Exception('failed to load related objects');
501 }
502
503 return _ipn_process_transaction($params, $contribution, $input, $ids);
504 }
505
506 /**
507 * Provide function metadata.
508 *
509 * @param array $params
510 */
511 function _civicrm_api3_contribution_completetransaction_spec(&$params) {
512 $params['id'] = [
513 'title' => 'Contribution ID',
514 'type' => CRM_Utils_Type::T_INT,
515 'api.required' => TRUE,
516 ];
517 $params['trxn_id'] = [
518 'title' => 'Transaction ID',
519 'type' => CRM_Utils_Type::T_STRING,
520 ];
521 $params['is_email_receipt'] = [
522 'title' => 'Send email Receipt?',
523 'type' => CRM_Utils_Type::T_BOOLEAN,
524 ];
525 $params['receipt_from_email'] = [
526 'title' => 'Email to send receipt from.',
527 'description' => 'If not provided this will default to being based on domain mail or contribution page',
528 'type' => CRM_Utils_Type::T_EMAIL,
529 ];
530 $params['receipt_from_name'] = [
531 'title' => 'Name to send receipt from',
532 'description' => '. If not provided this will default to domain mail or contribution page',
533 'type' => CRM_Utils_Type::T_STRING,
534 ];
535 $params['payment_processor_id'] = [
536 'title' => 'Payment processor ID',
537 'description' => 'Providing this is strongly recommended, as not possible to calculate it accurately always',
538 'type' => CRM_Utils_Type::T_INT,
539 ];
540 $params['fee_amount'] = [
541 'title' => 'Fee charged on transaction',
542 'description' => 'If a fee has been charged then the amount',
543 'type' => CRM_Utils_Type::T_FLOAT,
544 ];
545 $params['trxn_date'] = [
546 'title' => 'Transaction Date',
547 'description' => 'Date this transaction occurred',
548 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
549 ];
550 $params['card_type_id'] = [
551 'title' => 'Card Type ID',
552 'description' => 'Providing Credit Card Type ID',
553 'type' => CRM_Utils_Type::T_INT,
554 'pseudoconstant' => [
555 'optionGroupName' => 'accept_creditcard',
556 ],
557 ];
558 // At some point we will deprecate this api in favour of calling payment create which will in turn call this
559 // api if appropriate to transition related entities and send receipts - ie. financial responsibility should
560 // not exist in completetransaction. For now we just need to allow payment.create to force a bypass on the
561 // things it does itself.
562 $params['is_post_payment_create'] = [
563 'title' => 'Is this being called from payment create?',
564 'type' => CRM_Utils_Type::T_BOOLEAN,
565 'description' => 'The \'correct\' flow is to call payment.create for the financial side & for that to call completecontribution for the entity & receipt management. However, we need to still support completetransaction directly for legacy reasons',
566 ];
567 }
568
569 /**
570 * Complete an existing (pending) transaction.
571 *
572 * This will update related entities (participant, membership, pledge etc)
573 * and take any complete actions from the contribution page (e.g. send receipt).
574 *
575 * @todo - most of this should live in the BAO layer but as we want it to be an addition
576 * to 4.3 which is already stable we should add it to the api layer & re-factor into the BAO layer later
577 *
578 * @param array $params
579 * Input parameters.
580 *
581 * @return array
582 * Api result array.
583 * @throws API_Exception
584 */
585 function civicrm_api3_contribution_repeattransaction($params) {
586 civicrm_api3_verify_one_mandatory($params, NULL, ['contribution_recur_id', 'original_contribution_id']);
587 if (empty($params['original_contribution_id'])) {
588 // CRM-19873 call with test mode.
589 $params['original_contribution_id'] = civicrm_api3('contribution', 'getvalue', [
590 'return' => 'id',
591 'contribution_status_id' => ['IN' => ['Completed']],
592 'contribution_recur_id' => $params['contribution_recur_id'],
593 'contribution_test' => CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_ContributionRecur', $params['contribution_recur_id'], 'is_test'),
594 'options' => ['limit' => 1, 'sort' => 'id DESC'],
595 ]);
596 }
597 $contribution = new CRM_Contribute_BAO_Contribution();
598 $contribution->id = $params['original_contribution_id'];
599 if (!$contribution->find(TRUE)) {
600 throw new API_Exception(
601 'A valid original contribution ID is required', 'invalid_data');
602 }
603 // We don't support repeattransaction without a related recurring contribution.
604 if (empty($contribution->contribution_recur_id)) {
605 throw new API_Exception(
606 'Repeattransaction API can only be used in the context of contributions that have a contribution_recur_id.',
607 'invalid_data'
608 );
609 }
610
611 $params['payment_processor_id'] = civicrm_api3('contributionRecur', 'getvalue', [
612 'return' => 'payment_processor_id',
613 'id' => $contribution->contribution_recur_id,
614 ]);
615
616 $passThroughParams = [
617 'trxn_id',
618 'total_amount',
619 'campaign_id',
620 'fee_amount',
621 'financial_type_id',
622 'contribution_status_id',
623 'membership_id',
624 'payment_processor_id',
625 ];
626 $input = array_intersect_key($params, array_fill_keys($passThroughParams, NULL));
627
628 $ids = [];
629 if (!$contribution->loadRelatedObjects(['payment_processor_id' => $input['payment_processor_id']], $ids, TRUE)) {
630 throw new API_Exception('failed to load related objects');
631 }
632 unset($contribution->id, $contribution->receive_date, $contribution->invoice_id);
633 $contribution->receive_date = $params['receive_date'];
634
635 return _ipn_process_transaction($params, $contribution, $input, $ids);
636 }
637
638 /**
639 * Calls IPN complete transaction for completing or repeating a transaction.
640 *
641 * The IPN function is overloaded with two purposes - this is simply a wrapper for that
642 * when separating them in the api layer.
643 *
644 * @param array $params
645 * @param CRM_Contribute_BAO_Contribution $contribution
646 * @param array $input
647 *
648 * @param array $ids
649 *
650 * @return mixed
651 * @throws \CRM_Core_Exception
652 * @throws \CiviCRM_API3_Exception
653 */
654 function _ipn_process_transaction($params, $contribution, $input, $ids) {
655 $objects = $contribution->_relatedObjects;
656 $objects['contribution'] = &$contribution;
657 $input['component'] = $contribution->_component;
658 $input['is_test'] = $contribution->is_test;
659 $input['amount'] = empty($input['total_amount']) ? $contribution->total_amount : $input['total_amount'];
660
661 if (isset($params['is_email_receipt'])) {
662 $input['is_email_receipt'] = $params['is_email_receipt'];
663 }
664 if (!empty($params['trxn_date'])) {
665 $input['trxn_date'] = $params['trxn_date'];
666 }
667 if (!empty($params['receive_date'])) {
668 $input['receive_date'] = $params['receive_date'];
669 }
670 if (empty($contribution->contribution_page_id)) {
671 static $domainFromName;
672 static $domainFromEmail;
673 if (empty($domainFromEmail) && (empty($params['receipt_from_name']) || empty($params['receipt_from_email']))) {
674 [$domainFromName, $domainFromEmail] = CRM_Core_BAO_Domain::getNameAndEmail(TRUE);
675 }
676 $input['receipt_from_name'] = CRM_Utils_Array::value('receipt_from_name', $params, $domainFromName);
677 $input['receipt_from_email'] = CRM_Utils_Array::value('receipt_from_email', $params, $domainFromEmail);
678 }
679 $input['card_type_id'] = $params['card_type_id'] ?? NULL;
680 $input['pan_truncation'] = $params['pan_truncation'] ?? NULL;
681 if (!empty($params['payment_instrument_id'])) {
682 $input['payment_instrument_id'] = $params['payment_instrument_id'];
683 }
684 return CRM_Contribute_BAO_Contribution::completeOrder($input,
685 !empty($objects['contributionRecur']) ? $objects['contributionRecur']->id : NULL,
686 $objects['contribution']->id ?? NULL,
687 $params['is_post_payment_create'] ?? NULL);
688 }
689
690 /**
691 * Provide function metadata.
692 *
693 * @param array $params
694 */
695 function _civicrm_api3_contribution_repeattransaction_spec(&$params) {
696 $params['original_contribution_id'] = [
697 'title' => 'Original Contribution ID',
698 'description' => 'Contribution ID to copy (will be calculated from recurring contribution if not provided)',
699 'type' => CRM_Utils_Type::T_INT,
700 ];
701 $params['contribution_recur_id'] = [
702 'title' => 'Recurring contribution ID',
703 'type' => CRM_Utils_Type::T_INT,
704 ];
705 $params['trxn_id'] = [
706 'title' => 'Transaction ID',
707 'type' => CRM_Utils_Type::T_STRING,
708 ];
709 $params['is_email_receipt'] = [
710 'title' => 'Send email Receipt?',
711 'type' => CRM_Utils_Type::T_BOOLEAN,
712 ];
713 $params['contribution_status_id'] = [
714 'title' => 'Contribution Status ID',
715 'name' => 'contribution_status_id',
716 'type' => CRM_Utils_Type::T_INT,
717 'pseudoconstant' => [
718 'optionGroupName' => 'contribution_status',
719 ],
720 'api.required' => TRUE,
721 'api.default' => 'Pending',
722 ];
723 $params['receive_date'] = [
724 'title' => 'Contribution Receive Date',
725 'name' => 'receive_date',
726 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
727 'api.default' => 'now',
728 ];
729 $params['trxn_id'] = [
730 'title' => 'Transaction ID',
731 'name' => 'trxn_id',
732 'type' => CRM_Utils_Type::T_STRING,
733 ];
734 $params['campaign_id'] = [
735 'title' => 'Campaign ID',
736 'name' => 'campaign_id',
737 'type' => CRM_Utils_Type::T_INT,
738 'pseudoconstant' => [
739 'table' => 'civicrm_campaign',
740 'keyColumn' => 'id',
741 'labelColumn' => 'title',
742 ],
743 ];
744 $params['financial_type_id'] = [
745 'title' => 'Financial ID (ignored if more than one line item)',
746 'name' => 'financial_type_id',
747 'type' => CRM_Utils_Type::T_INT,
748 'pseudoconstant' => [
749 'table' => 'civicrm_financial_type',
750 'keyColumn' => 'id',
751 'labelColumn' => 'name',
752 ],
753 ];
754 $params['payment_processor_id'] = [
755 'description' => ts('Payment processor ID, will be loaded from contribution_recur if not provided'),
756 'title' => 'Payment processor ID',
757 'name' => 'payment_processor_id',
758 'type' => CRM_Utils_Type::T_INT,
759 ];
760 }
761
762 /**
763 * Declare deprecated functions.
764 *
765 * @return array
766 * Array of deprecated actions
767 */
768 function _civicrm_api3_contribution_deprecation() {
769 return ['transact' => 'Contribute.transact is ureliable & unsupported - see https://docs.civicrm.org/dev/en/latest/financial/OrderAPI/ for how to move on'];
770 }