Fix return for contribution api call
[civicrm-core.git] / api / v3 / Contribution.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2017 |
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 api exposes CiviCRM Contribution records.
30 *
31 * @package CiviCRM_APIv3
32 */
33
34 /**
35 * Add or update a Contribution.
36 *
37 * @param array $params
38 * Input parameters.
39 *
40 * @throws API_Exception
41 * @return array
42 * Api result array
43 */
44 function civicrm_api3_contribution_create(&$params) {
45 $values = array();
46 _civicrm_api3_custom_format_params($params, $values, 'Contribution');
47 $params = array_merge($params, $values);
48
49 if (CRM_Financial_BAO_FinancialType::isACLFinancialTypeStatus()) {
50 if (empty($params['id'])) {
51 $op = CRM_Core_Action::ADD;
52 }
53 else {
54 if (empty($params['financial_type_id'])) {
55 $params['financial_type_id'] = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_Contribution', $params['id'], 'financial_type_id');
56 }
57 $op = CRM_Core_Action::UPDATE;
58 }
59 CRM_Financial_BAO_FinancialType::getAvailableFinancialTypes($types, $op);
60 if (!in_array($params['financial_type_id'], array_keys($types))) {
61 return civicrm_api3_create_error('You do not have permission to create this contribution');
62 }
63 }
64 if (!empty($params['id']) && !empty($params['contribution_status_id'])) {
65 $error = array();
66 //throw error for invalid status change such as setting completed back to pending
67 //@todo this sort of validation belongs in the BAO not the API - if it is not an OK
68 // action it needs to be blocked there. If it is Ok through a form it needs to be OK through the api
69 CRM_Contribute_BAO_Contribution::checkStatusValidation(NULL, $params, $error);
70 if (array_key_exists('contribution_status_id', $error)) {
71 throw new API_Exception($error['contribution_status_id']);
72 }
73 }
74 if (!empty($params['id']) && !empty($params['financial_type_id'])) {
75 $error = array();
76 CRM_Contribute_BAO_Contribution::checkFinancialTypeChange($params['financial_type_id'], $params['id'], $error);
77 if (array_key_exists('financial_type_id', $error)) {
78 throw new API_Exception($error['financial_type_id']);
79 }
80 }
81 _civicrm_api3_contribution_create_legacy_support_45($params);
82
83 return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params, 'Contribution');
84 }
85
86 /**
87 * Adjust Metadata for Create action.
88 *
89 * The metadata is used for setting defaults, documentation & validation.
90 *
91 * @param array $params
92 * Array of parameters determined by getfields.
93 */
94 function _civicrm_api3_contribution_create_spec(&$params) {
95 $params['contact_id']['api.required'] = 1;
96 $params['total_amount']['api.required'] = 1;
97 $params['payment_instrument_id']['api.aliases'] = array('payment_instrument');
98 $params['receive_date']['api.default'] = 'now';
99 $params['payment_processor'] = array(
100 'name' => 'payment_processor',
101 'title' => 'Payment Processor ID',
102 'description' => 'ID of payment processor used for this contribution',
103 // field is called payment processor - not payment processor id but can only be one id so
104 // it seems likely someone will fix it up one day to be more consistent - lets alias it from the start
105 'api.aliases' => array('payment_processor_id'),
106 'type' => CRM_Utils_Type::T_INT,
107 );
108 $params['financial_type_id']['api.aliases'] = array('contribution_type_id', 'contribution_type');
109 $params['financial_type_id']['api.required'] = 1;
110 $params['note'] = array(
111 'name' => 'note',
112 'uniqueName' => 'contribution_note',
113 'title' => 'note',
114 'type' => 2,
115 'description' => 'Associated Note in the notes table',
116 );
117 $params['soft_credit_to'] = array(
118 'name' => 'soft_credit_to',
119 'title' => 'Soft Credit contact ID (legacy)',
120 'type' => CRM_Utils_Type::T_INT,
121 'description' => 'ID of Contact to be Soft credited to (deprecated - use contribution_soft api)',
122 'FKClassName' => 'CRM_Contact_DAO_Contact',
123 );
124 $params['honor_contact_id'] = array(
125 'name' => 'honor_contact_id',
126 'title' => 'Honoree contact ID (legacy)',
127 'type' => CRM_Utils_Type::T_INT,
128 'description' => 'ID of honoree contact (deprecated - use contribution_soft api)',
129 'FKClassName' => 'CRM_Contact_DAO_Contact',
130 );
131 $params['honor_type_id'] = array(
132 'name' => 'honor_type_id',
133 'title' => 'Honoree Type (legacy)',
134 'type' => CRM_Utils_Type::T_INT,
135 'description' => 'Type of honoree contact (deprecated - use contribution_soft api)',
136 'pseudoconstant' => TRUE,
137 );
138 // note this is a recommended option but not adding as a default to avoid
139 // creating unnecessary changes for the dev
140 $params['skipRecentView'] = array(
141 'name' => 'skipRecentView',
142 'title' => 'Skip adding to recent view',
143 'type' => CRM_Utils_Type::T_BOOLEAN,
144 'description' => 'Do not add to recent view (setting this improves performance)',
145 );
146 $params['skipLineItem'] = array(
147 'name' => 'skipLineItem',
148 'title' => 'Skip adding line items',
149 'type' => CRM_Utils_Type::T_BOOLEAN,
150 'api.default' => 0,
151 'description' => 'Do not add line items by default (if you wish to add your own)',
152 );
153 $params['batch_id'] = array(
154 'title' => 'Batch',
155 'type' => CRM_Utils_Type::T_INT,
156 'description' => 'Batch which relevant transactions should be added to',
157 );
158 $params['refund_trxn_id'] = array(
159 'title' => 'Refund Transaction ID',
160 'type' => CRM_Utils_Type::T_STRING,
161 'description' => 'Transaction ID specific to the refund taking place',
162 );
163 }
164
165 /**
166 * Support for schema changes made in 4.5.
167 *
168 * The main purpose of the API is to provide integrators a level of stability not provided by
169 * the core code or schema - this means we have to provide support for api calls (where possible)
170 * across schema changes.
171 *
172 * @param array $params
173 */
174 function _civicrm_api3_contribution_create_legacy_support_45(&$params) {
175 //legacy soft credit handling - recommended approach is chaining
176 if (!empty($params['soft_credit_to'])) {
177 $params['soft_credit'][] = array(
178 'contact_id' => $params['soft_credit_to'],
179 'amount' => $params['total_amount'],
180 'soft_credit_type_id' => CRM_Core_OptionGroup::getDefaultValue("soft_credit_type"),
181 );
182 }
183 if (!empty($params['honor_contact_id'])) {
184 $params['soft_credit'][] = array(
185 'contact_id' => $params['honor_contact_id'],
186 'amount' => $params['total_amount'],
187 'soft_credit_type_id' => CRM_Utils_Array::value('honor_type_id', $params, CRM_Core_OptionGroup::getValue('soft_credit_type', 'in_honor_of', 'name')),
188 );
189 }
190 }
191
192 /**
193 * Delete a Contribution.
194 *
195 * @param array $params
196 * Input parameters.
197 *
198 * @return array
199 */
200 function civicrm_api3_contribution_delete($params) {
201
202 $contributionID = !empty($params['contribution_id']) ? $params['contribution_id'] : $params['id'];
203 // First check contribution financial type
204 $financialType = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_Contribution', $contributionID, 'financial_type_id');
205 // Now check permissioned lineitems & permissioned contribution
206 if (CRM_Financial_BAO_FinancialType::isACLFinancialTypeStatus()
207 && !CRM_Core_Permission::check('delete contributions of type ' . CRM_Contribute_PseudoConstant::financialType($financialType)) ||
208 !CRM_Financial_BAO_FinancialType::checkPermissionedLineItems($contributionID, 'delete', FALSE)
209 ) {
210 return civicrm_api3_create_error('You do not have permission to delete this contribution');
211 }
212 if (CRM_Contribute_BAO_Contribution::deleteContribution($contributionID)) {
213 return civicrm_api3_create_success(array($contributionID => 1));
214 }
215 else {
216 return civicrm_api3_create_error('Could not delete contribution');
217 }
218 }
219
220 /**
221 * Modify metadata for delete action.
222 *
223 * Legacy support for contribution_id.
224 *
225 * @param array $params
226 */
227 function _civicrm_api3_contribution_delete_spec(&$params) {
228 $params['id']['api.aliases'] = array('contribution_id');
229 }
230
231 /**
232 * Retrieve a set of contributions.
233 *
234 * @param array $params
235 * Input parameters.
236 *
237 * @return array
238 * Array of contributions, if error an array with an error id and error message
239 */
240 function civicrm_api3_contribution_get($params) {
241
242 $mode = CRM_Contact_BAO_Query::MODE_CONTRIBUTE;
243 $returnProperties = CRM_Contribute_BAO_Query::defaultReturnProperties($mode);
244
245 $contributions = _civicrm_api3_get_using_query_object('Contribution', $params, array(), NULL, $mode, $returnProperties);
246
247 foreach ($contributions as $id => $contribution) {
248 $softContribution = CRM_Contribute_BAO_ContributionSoft::getSoftContribution($id, TRUE);
249 $contributions[$id] = array_merge($contribution, $softContribution);
250 // format soft credit for backward compatibility
251 _civicrm_api3_format_soft_credit($contributions[$id]);
252 }
253 return civicrm_api3_create_success($contributions, $params, 'Contribution', 'get');
254 }
255
256 /**
257 * Get number of contacts matching the supplied criteria.
258 *
259 * @param array $params
260 *
261 * @return int
262 */
263 function civicrm_api3_contribution_getcount($params) {
264 $count = _civicrm_api3_get_using_query_object('Contribution', $params, array(), TRUE, CRM_Contact_BAO_Query::MODE_CONTRIBUTE);
265 return (int) $count;
266 }
267
268 /**
269 * This function is used to format the soft credit for backward compatibility.
270 *
271 * As of v4.4 we support multiple soft credit, so now contribution returns array with 'soft_credit' as key
272 * but we still return first soft credit as a part of contribution array
273 *
274 * @param $contribution
275 */
276 function _civicrm_api3_format_soft_credit(&$contribution) {
277 if (!empty($contribution['soft_credit'])) {
278 $contribution['soft_credit_to'] = $contribution['soft_credit'][1]['contact_id'];
279 $contribution['soft_credit_id'] = $contribution['soft_credit'][1]['soft_credit_id'];
280 }
281 }
282
283 /**
284 * Adjust Metadata for Get action.
285 *
286 * The metadata is used for setting defaults, documentation & validation.
287 *
288 * @param array $params
289 * Array of parameters determined by getfields.
290 */
291 function _civicrm_api3_contribution_get_spec(&$params) {
292 $params['contribution_test'] = array(
293 'api.default' => 0,
294 'type' => CRM_Utils_Type::T_BOOLEAN,
295 'title' => 'Get Test Contributions?',
296 'api.aliases' => array('is_test'),
297 );
298
299 $params['financial_type_id']['api.aliases'] = array('contribution_type_id');
300 $params['payment_instrument_id']['api.aliases'] = array('contribution_payment_instrument', 'payment_instrument');
301 $params['contact_id'] = $params['contribution_contact_id'];
302 $params['contact_id']['api.aliases'] = array('contribution_contact_id');
303 unset($params['contribution_contact_id']);
304 }
305
306 /**
307 * Legacy handling for contribution parameters.
308 *
309 * Take the input parameter list as specified in the data model and
310 * convert it into the same format that we use in QF and BAO object.
311 *
312 * @param array $params
313 * property name/value pairs to insert in new contact.
314 * @param array $values
315 * The reformatted properties that we can use internally.
316 *
317 * @return array
318 */
319 function _civicrm_api3_contribute_format_params($params, &$values) {
320 //legacy way of formatting from v2 api - v3 way is to define metadata & do it in the api layer
321 _civicrm_api3_filter_fields_for_bao('Contribution', $params, $values);
322 return array();
323 }
324
325 /**
326 * Adjust Metadata for Transact action.
327 *
328 * The metadata is used for setting defaults, documentation & validation.
329 *
330 * @param array $params
331 * Array of parameters determined by getfields.
332 */
333 function _civicrm_api3_contribution_transact_spec(&$params) {
334 $fields = civicrm_api3('Contribution', 'getfields', array('action' => 'create'));
335 $params = array_merge($params, $fields['values']);
336 $params['receive_date']['api.default'] = 'now';
337 }
338
339 /**
340 * Process a transaction and record it against the contact.
341 *
342 * @param array $params
343 * Input parameters.
344 *
345 * @return array
346 * contribution of created or updated record (or a civicrm error)
347 */
348 function civicrm_api3_contribution_transact($params) {
349 // Set some params specific to payment processing
350 // @todo - fix this function - none of the results checked by civicrm_error would ever be an array with
351 // 'is_error' set
352 // also trxn_id is not saved.
353 // but since there is no test it's not desirable to jump in & make the obvious changes.
354 $params['payment_processor_mode'] = empty($params['is_test']) ? 'live' : 'test';
355 $params['amount'] = $params['total_amount'];
356 if (!isset($params['net_amount'])) {
357 $params['net_amount'] = $params['amount'];
358 }
359 if (!isset($params['invoiceID']) && isset($params['invoice_id'])) {
360 $params['invoiceID'] = $params['invoice_id'];
361 }
362
363 // Some payment processors expect a unique invoice_id - generate one if not supplied
364 $params['invoice_id'] = CRM_Utils_Array::value('invoice_id', $params, md5(uniqid(rand(), TRUE)));
365
366 $paymentProcessor = CRM_Financial_BAO_PaymentProcessor::getPayment($params['payment_processor'], $params['payment_processor_mode']);
367 $paymentProcessor['object']->doPayment($params);
368
369 $params['payment_instrument_id'] = CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_PaymentProcessorType', $paymentProcessor['payment_processor_type_id'], 'payment_type') == 1 ? 'Credit Card' : 'Debit Card';
370 return civicrm_api('Contribution', 'create', $params);
371 }
372
373 /**
374 * Send a contribution confirmation (receipt or invoice).
375 *
376 * The appropriate online template will be used (the existence of related objects
377 * (e.g. memberships ) will affect this selection
378 *
379 * @param array $params
380 * Input parameters.
381 *
382 * @throws Exception
383 */
384 function civicrm_api3_contribution_sendconfirmation($params) {
385 $ids = $values = array();
386 $allowedParams = array(
387 'receipt_from_email',
388 'receipt_from_name',
389 'receipt_update',
390 'cc_receipt',
391 'bcc_receipt',
392 'receipt_text',
393 'payment_processor_id',
394 );
395 $input = array_intersect_key($params, array_flip($allowedParams));
396 CRM_Contribute_BAO_Contribution::sendMail($input, $ids, $params['id'], $values);
397 }
398
399 /**
400 * Adjust Metadata for sendconfirmation action.
401 *
402 * The metadata is used for setting defaults, documentation & validation.
403 *
404 * @param array $params
405 * Array of parameters determined by getfields.
406 */
407 function _civicrm_api3_contribution_sendconfirmation_spec(&$params) {
408 $params['id'] = array(
409 'api.required' => 1,
410 'title' => ts('Contribution ID'),
411 'type' => CRM_Utils_Type::T_INT,
412 );
413 $params['receipt_from_email'] = array(
414 'title' => ts('From Email address (string)'),
415 'type' => CRM_Utils_Type::T_STRING,
416 );
417 $params['receipt_from_name'] = array(
418 'title' => ts('From Name (string)'),
419 'type' => CRM_Utils_Type::T_STRING,
420 );
421 $params['cc_receipt'] = array(
422 'title' => ts('CC Email address (string)'),
423 'type' => CRM_Utils_Type::T_STRING,
424 );
425 $params['bcc_receipt'] = array(
426 'title' => ts('BCC Email address (string)'),
427 'type' => CRM_Utils_Type::T_STRING,
428 );
429 $params['receipt_text'] = array(
430 'title' => ts('Message (string)'),
431 'type' => CRM_Utils_Type::T_STRING,
432 );
433 $params['receipt_update'] = array(
434 'title' => ts('Update the Receipt Date'),
435 'type' => CRM_Utils_Type::T_BOOLEAN,
436 'api.default' => TRUE,
437 );
438 $params['payment_processor_id'] = array(
439 'title' => ts('Payment processor Id (avoids mis-guesses)'),
440 'type' => CRM_Utils_Type::T_INT,
441 );
442 }
443
444 /**
445 * Complete an existing (pending) transaction.
446 *
447 * This will update related entities (participant, membership, pledge etc)
448 * and take any complete actions from the contribution page (e.g. send receipt).
449 *
450 * @todo - most of this should live in the BAO layer but as we want it to be an addition
451 * to 4.3 which is already stable we should add it to the api layer & re-factor into the BAO layer later
452 *
453 * @param array $params
454 * Input parameters.
455 *
456 * @return array
457 * API result array
458 * @throws \API_Exception
459 * @throws \CRM_Core_Exception
460 * @throws \Exception
461 */
462 function civicrm_api3_contribution_completetransaction(&$params) {
463
464 $input = $ids = array();
465 if (isset($params['payment_processor_id'])) {
466 $input['payment_processor_id'] = $params['payment_processor_id'];
467 }
468 $contribution = new CRM_Contribute_BAO_Contribution();
469 $contribution->id = $params['id'];
470 $contribution->find(TRUE);
471 if (!$contribution->id == $params['id']) {
472 throw new API_Exception('A valid contribution ID is required', 'invalid_data');
473 }
474
475 if (!$contribution->loadRelatedObjects($input, $ids, TRUE)) {
476 throw new API_Exception('failed to load related objects');
477 }
478 elseif ($contribution->contribution_status_id == CRM_Core_OptionGroup::getValue('contribution_status', 'Completed', 'name')) {
479 throw new API_Exception(ts('Contribution already completed'), 'contribution_completed');
480 }
481 $input['trxn_id'] = !empty($params['trxn_id']) ? $params['trxn_id'] : $contribution->trxn_id;
482 if (!empty($params['fee_amount'])) {
483 $input['fee_amount'] = $params['fee_amount'];
484 }
485 return _ipn_process_transaction($params, $contribution, $input, $ids);
486
487 }
488
489 /**
490 * Provide function metadata.
491 *
492 * @param array $params
493 */
494 function _civicrm_api3_contribution_completetransaction_spec(&$params) {
495 $params['id'] = array(
496 'title' => 'Contribution ID',
497 'type' => CRM_Utils_Type::T_INT,
498 'api.required' => TRUE,
499 );
500 $params['trxn_id'] = array(
501 'title' => 'Transaction ID',
502 'type' => CRM_Utils_Type::T_STRING,
503 );
504 $params['is_email_receipt'] = array(
505 'title' => 'Send email Receipt?',
506 'type' => CRM_Utils_Type::T_BOOLEAN,
507 );
508 $params['receipt_from_email'] = array(
509 'title' => 'Email to send receipt from.',
510 'description' => 'If not provided this will default to being based on domain mail or contribution page',
511 'type' => CRM_Utils_Type::T_EMAIL,
512 );
513 $params['receipt_from_name'] = array(
514 'title' => 'Name to send receipt from',
515 'description' => '. If not provided this will default to domain mail or contribution page',
516 'type' => CRM_Utils_Type::T_STRING,
517 );
518 $params['payment_processor_id'] = array(
519 'title' => 'Payment processor ID',
520 'description' => 'Providing this is strongly recommended, as not possible to calculate it accurately always',
521 'type' => CRM_Utils_Type::T_INT,
522 );
523 $params['fee_amount'] = array(
524 'title' => 'Fee charged on transaction',
525 'description' => 'If a fee has been charged then the amount',
526 'type' => CRM_Utils_Type::T_FLOAT,
527 );
528 $params['trxn_date'] = array(
529 'title' => 'Transaction Date',
530 'description' => 'Date this transaction occurred',
531 'type' => CRM_Utils_Type::T_DATE,
532 );
533 }
534
535 /**
536 * Complete an existing (pending) transaction.
537 *
538 * This will update related entities (participant, membership, pledge etc)
539 * and take any complete actions from the contribution page (e.g. send receipt).
540 *
541 * @todo - most of this should live in the BAO layer but as we want it to be an addition
542 * to 4.3 which is already stable we should add it to the api layer & re-factor into the BAO layer later
543 *
544 * @param array $params
545 * Input parameters.
546 *
547 * @return array
548 * Api result array.
549 * @throws API_Exception
550 */
551 function civicrm_api3_contribution_repeattransaction(&$params) {
552 $input = $ids = array();
553 civicrm_api3_verify_one_mandatory($params, NULL, array('contribution_recur_id', 'original_contribution_id'));
554 if (empty($params['original_contribution_id'])) {
555 $params['original_contribution_id'] = civicrm_api3('contribution', 'getvalue', array(
556 'return' => 'id',
557 'contribution_recur_id' => $params['contribution_recur_id'],
558 'options' => array('limit' => 1, 'sort' => 'id DESC'),
559 ));
560 }
561 $contribution = new CRM_Contribute_BAO_Contribution();
562 $contribution->id = $params['original_contribution_id'];
563 if (!$contribution->find(TRUE)) {
564 throw new API_Exception(
565 'A valid original contribution ID is required', 'invalid_data');
566 }
567 $original_contribution = clone $contribution;
568 $input['payment_processor_id'] = civicrm_api3('contributionRecur', 'getvalue', array(
569 'return' => 'payment_processor_id',
570 'id' => $contribution->contribution_recur_id,
571 ));
572 try {
573 if (!$contribution->loadRelatedObjects($input, $ids, TRUE)) {
574 throw new API_Exception('failed to load related objects');
575 }
576
577 unset($contribution->id, $contribution->receive_date, $contribution->invoice_id);
578 $contribution->receive_date = $params['receive_date'];
579
580 $passThroughParams = array(
581 'trxn_id',
582 'total_amount',
583 'campaign_id',
584 'fee_amount',
585 'financial_type_id',
586 'contribution_status_id',
587 );
588 $input = array_intersect_key($params, array_fill_keys($passThroughParams, NULL));
589
590 return _ipn_process_transaction($params, $contribution, $input, $ids, $original_contribution);
591 }
592 catch(Exception $e) {
593 throw new API_Exception('failed to load related objects' . $e->getMessage() . "\n" . $e->getTraceAsString());
594 }
595 }
596
597 /**
598 * Calls IPN complete transaction for completing or repeating a transaction.
599 *
600 * The IPN function is overloaded with two purposes - this is simply a wrapper for that
601 * when separating them in the api layer.
602 *
603 * @param array $params
604 * @param CRM_Contribute_BAO_Contribution $contribution
605 * @param array $input
606 *
607 * @param array $ids
608 *
609 * @param CRM_Contribute_BAO_Contribution $firstContribution
610 *
611 * @return mixed
612 */
613 function _ipn_process_transaction(&$params, $contribution, $input, $ids, $firstContribution = NULL) {
614 $objects = $contribution->_relatedObjects;
615 $objects['contribution'] = &$contribution;
616
617 if ($firstContribution) {
618 $objects['first_contribution'] = $firstContribution;
619 }
620 $input['component'] = $contribution->_component;
621 $input['is_test'] = $contribution->is_test;
622 $input['amount'] = empty($input['total_amount']) ? $contribution->total_amount : $input['total_amount'];
623
624 if (isset($params['is_email_receipt'])) {
625 $input['is_email_receipt'] = $params['is_email_receipt'];
626 }
627 if (!empty($params['trxn_date'])) {
628 $input['trxn_date'] = $params['trxn_date'];
629 }
630 if (!empty($params['receive_date'])) {
631 $input['receive_date'] = $params['receive_date'];
632 }
633 if (empty($contribution->contribution_page_id)) {
634 static $domainFromName;
635 static $domainFromEmail;
636 if (empty($domainFromEmail) && (empty($params['receipt_from_name']) || empty($params['receipt_from_email']))) {
637 list($domainFromName, $domainFromEmail) = CRM_Core_BAO_Domain::getNameAndEmail(TRUE);
638 }
639 $input['receipt_from_name'] = CRM_Utils_Array::value('receipt_from_name', $params, $domainFromName);
640 $input['receipt_from_email'] = CRM_Utils_Array::value('receipt_from_email', $params, $domainFromEmail);
641 }
642 $transaction = new CRM_Core_Transaction();
643 return CRM_Contribute_BAO_Contribution::completeOrder($input, $ids, $objects, $transaction, !empty
644 ($contribution->contribution_recur_id), $contribution,
645 FALSE, FALSE);
646 }
647
648 /**
649 * Provide function metadata.
650 *
651 * @param array $params
652 */
653 function _civicrm_api3_contribution_repeattransaction_spec(&$params) {
654 $params['original_contribution_id'] = array(
655 'title' => 'Original Contribution ID',
656 'description' => 'Contribution ID to copy (will be calculated from recurring contribution if not provided)',
657 'type' => CRM_Utils_Type::T_INT,
658 );
659 $params['contribution_recur_id'] = array(
660 'title' => 'Recurring contribution ID',
661 'type' => CRM_Utils_Type::T_INT,
662 );
663 $params['trxn_id'] = array(
664 'title' => 'Transaction ID',
665 'type' => CRM_Utils_Type::T_STRING,
666 );
667 $params['is_email_receipt'] = array(
668 'title' => 'Send email Receipt?',
669 'type' => CRM_Utils_Type::T_BOOLEAN,
670 );
671 $params['contribution_status_id'] = array(
672 'title' => 'Contribution Status ID',
673 'name' => 'contribution_status_id',
674 'type' => CRM_Utils_Type::T_INT,
675 'pseudoconstant' => array(
676 'optionGroupName' => 'contribution_status',
677 ),
678 'api.required' => TRUE,
679 );
680 $params['receive_date'] = array(
681 'title' => 'Contribution Receive Date',
682 'name' => 'receive_date',
683 'type' => CRM_Utils_Type::T_DATE,
684 'api.default' => 'now',
685 );
686 $params['trxn_id'] = array(
687 'title' => 'Transaction ID',
688 'name' => 'trxn_id',
689 'type' => CRM_Utils_Type::T_STRING,
690 );
691 $params['campaign_id'] = array(
692 'title' => 'Campaign ID',
693 'name' => 'campaign_id',
694 'type' => CRM_Utils_Type::T_INT,
695 'pseudoconstant' => array(
696 'table' => 'civicrm_campaign',
697 'keyColumn' => 'id',
698 'labelColumn' => 'title',
699 ),
700 );
701 $params['financial_type_id'] = array(
702 'title' => 'Financial ID (ignored if more than one line item)',
703 'name' => 'financial_type_id',
704 'type' => CRM_Utils_Type::T_INT,
705 'pseudoconstant' => array(
706 'table' => 'civicrm_financial_type',
707 'keyColumn' => 'id',
708 'labelColumn' => 'name',
709 ),
710 );
711 $params['payment_processor_id'] = array(
712 'description' => ts('Payment processor ID, will be loaded from contribution_recur if not provided'),
713 'title' => 'Payment processor ID',
714 'name' => 'payment_processor_id',
715 'type' => CRM_Utils_Type::T_INT,
716 );
717 }