Api docblock cleanup.
[civicrm-core.git] / api / v3 / Contribution.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 (!empty($params['id']) && !empty($params['contribution_status_id'])) {
50 $error = array();
51 //throw error for invalid status change such as setting completed back to pending
52 //@todo this sort of validation belongs in the BAO not the API - if it is not an OK
53 // action it needs to be blocked there. If it is Ok through a form it needs to be OK through the api
54 CRM_Contribute_BAO_Contribution::checkStatusValidation(NULL, $params, $error);
55 if (array_key_exists('contribution_status_id', $error)) {
56 throw new API_Exception($error['contribution_status_id']);
57 }
58 }
59
60 _civicrm_api3_contribution_create_legacy_support_45($params);
61
62 // Make sure tax calculation is handled via api.
63 $params = CRM_Contribute_BAO_Contribution::checkTaxAmount($params);
64
65 return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params, 'Contribution');
66 }
67
68 /**
69 * Adjust Metadata for Create action.
70 *
71 * The metadata is used for setting defaults, documentation & validation.
72 *
73 * @param array $params
74 * Array of parameters determined by getfields.
75 */
76 function _civicrm_api3_contribution_create_spec(&$params) {
77 $params['contact_id']['api.required'] = 1;
78 $params['total_amount']['api.required'] = 1;
79 $params['payment_instrument_id']['api.aliases'] = array('payment_instrument');
80 $params['receive_date']['api.default'] = 'now';
81 $params['payment_processor'] = array(
82 'name' => 'payment_processor',
83 'title' => 'Payment Processor ID',
84 'description' => 'ID of payment processor used for this contribution',
85 // field is called payment processor - not payment processor id but can only be one id so
86 // it seems likely someone will fix it up one day to be more consistent - lets alias it from the start
87 'api.aliases' => array('payment_processor_id'),
88 );
89 $params['financial_type_id']['api.aliases'] = array('contribution_type_id', 'contribution_type');
90 $params['financial_type_id']['api.required'] = 1;
91 $params['note'] = array(
92 'name' => 'note',
93 'uniqueName' => 'contribution_note',
94 'title' => 'note',
95 'type' => 2,
96 'description' => 'Associated Note in the notes table',
97 );
98 $params['soft_credit_to'] = array(
99 'name' => 'soft_credit_to',
100 'title' => 'Soft Credit contact ID (legacy)',
101 'type' => 1,
102 'description' => 'ID of Contact to be Soft credited to (deprecated - use contribution_soft api)',
103 'FKClassName' => 'CRM_Contact_DAO_Contact',
104 );
105 $params['honor_contact_id'] = array(
106 'name' => 'honor_contact_id',
107 'title' => 'Honoree contact ID (legacy)',
108 'type' => 1,
109 'description' => 'ID of honoree contact (deprecated - use contribution_soft api)',
110 'FKClassName' => 'CRM_Contact_DAO_Contact',
111 );
112 $params['honor_type_id'] = array(
113 'name' => 'honor_type_id',
114 'title' => 'Honoree Type (legacy)',
115 'type' => 1,
116 'description' => 'Type of honoree contact (deprecated - use contribution_soft api)',
117 'pseudoconstant' => TRUE,
118 );
119 // note this is a recommended option but not adding as a default to avoid
120 // creating unnecessary changes for the dev
121 $params['skipRecentView'] = array(
122 'name' => 'skipRecentView',
123 'title' => 'Skip adding to recent view',
124 'type' => CRM_Utils_Type::T_BOOLEAN,
125 'description' => 'Do not add to recent view (setting this improves performance)',
126 );
127 $params['skipLineItem'] = array(
128 'name' => 'skipLineItem',
129 'title' => 'Skip adding line items',
130 'type' => 1,
131 'api.default' => 0,
132 'description' => 'Do not add line items by default (if you wish to add your own)',
133 );
134 $params['batch_id'] = array(
135 'title' => 'Batch',
136 'type' => 1,
137 'description' => 'Batch which relevant transactions should be added to',
138 );
139 }
140
141 /**
142 * Support for schema changes made in 4.5.
143 *
144 * The main purpose of the API is to provide integrators a level of stability not provided by
145 * the core code or schema - this means we have to provide support for api calls (where possible)
146 * across schema changes.
147 *
148 * @param array $params
149 */
150 function _civicrm_api3_contribution_create_legacy_support_45(&$params) {
151 //legacy soft credit handling - recommended approach is chaining
152 if (!empty($params['soft_credit_to'])) {
153 $params['soft_credit'][] = array(
154 'contact_id' => $params['soft_credit_to'],
155 'amount' => $params['total_amount'],
156 'soft_credit_type_id' => CRM_Core_OptionGroup::getDefaultValue("soft_credit_type"),
157 );
158 }
159 if (!empty($params['honor_contact_id'])) {
160 $params['soft_credit'][] = array(
161 'contact_id' => $params['honor_contact_id'],
162 'amount' => $params['total_amount'],
163 'soft_credit_type_id' => CRM_Utils_Array::value('honor_type_id', $params, CRM_Core_OptionGroup::getValue('soft_credit_type', 'in_honor_of', 'name')),
164 );
165 }
166 }
167
168 /**
169 * Delete a contribution.
170 *
171 * @param array $params
172 * Input parameters.
173 *
174 * @return array
175 */
176 function civicrm_api3_contribution_delete($params) {
177
178 $contributionID = !empty($params['contribution_id']) ? $params['contribution_id'] : $params['id'];
179 if (CRM_Contribute_BAO_Contribution::deleteContribution($contributionID)) {
180 return civicrm_api3_create_success(array($contributionID => 1));
181 }
182 else {
183 return civicrm_api3_create_error('Could not delete contribution');
184 }
185 }
186
187 /**
188 * Modify metadata for delete action.
189 *
190 * Legacy support for contribution_id.
191 *
192 * @param array $params
193 */
194 function _civicrm_api3_contribution_delete_spec(&$params) {
195 $params['id']['api.aliases'] = array('contribution_id');
196 }
197
198 /**
199 * Retrieve a set of contributions.
200 *
201 * @param array $params
202 * Input parameters.
203 *
204 * @return array
205 * Array of contributions, if error an array with an error id and error message
206 */
207 function civicrm_api3_contribution_get($params) {
208
209 $mode = CRM_Contact_BAO_Query::MODE_CONTRIBUTE;
210 $entity = 'contribution';
211 list($dao, $query) = _civicrm_api3_get_query_object($params, $mode, $entity);
212
213 $contribution = array();
214 while ($dao->fetch()) {
215 //CRM-8662
216 $contribution_details = $query->store($dao);
217 $softContribution = CRM_Contribute_BAO_ContributionSoft::getSoftContribution($dao->contribution_id, TRUE);
218 $contribution[$dao->contribution_id] = array_merge($contribution_details, $softContribution);
219 // format soft credit for backward compatibility
220 _civicrm_api3_format_soft_credit($contribution[$dao->contribution_id]);
221 }
222 return civicrm_api3_create_success($contribution, $params, 'contribution', 'get', $dao);
223 }
224
225 /**
226 * This function is used to format the soft credit for backward compatibility.
227 *
228 * As of v4.4 we support multiple soft credit, so now contribution returns array with 'soft_credit' as key
229 * but we still return first soft credit as a part of contribution array
230 *
231 * @param $contribution
232 */
233 function _civicrm_api3_format_soft_credit(&$contribution) {
234 if (!empty($contribution['soft_credit'])) {
235 $contribution['soft_credit_to'] = $contribution['soft_credit'][1]['contact_id'];
236 $contribution['soft_credit_id'] = $contribution['soft_credit'][1]['soft_credit_id'];
237 }
238 }
239
240 /**
241 * Adjust Metadata for Get action.
242 *
243 * The metadata is used for setting defaults, documentation & validation.
244 *
245 * @param array $params
246 * Array of parameters determined by getfields.
247 */
248 function _civicrm_api3_contribution_get_spec(&$params) {
249 $params['contribution_test']['api.default'] = 0;
250 $params['contribution_test']['title'] = 'Get Test Contributions?';
251 $params['financial_type_id']['api.aliases'] = array('contribution_type_id');
252 $params['contact_id'] = $params['contribution_contact_id'];
253 $params['contact_id']['api.aliases'] = array('contribution_contact_id');
254 unset($params['contribution_contact_id']);
255 }
256
257 /**
258 * Legacy handling for contribution parameters.
259 *
260 * Take the input parameter list as specified in the data model and
261 * convert it into the same format that we use in QF and BAO object.
262 *
263 * @param array $params
264 * property name/value pairs to insert in new contact.
265 * @param array $values
266 * The reformatted properties that we can use internally.
267 *
268 * @return array
269 */
270 function _civicrm_api3_contribute_format_params($params, &$values) {
271 //legacy way of formatting from v2 api - v3 way is to define metadata & do it in the api layer
272 _civicrm_api3_filter_fields_for_bao('Contribution', $params, $values);
273 return array();
274 }
275
276 /**
277 * Adjust Metadata for Transact action.
278 *
279 * The metadata is used for setting defaults, documentation & validation.
280 *
281 * @param array $params
282 * Array of parameters determined by getfields.
283 */
284 function _civicrm_api3_contribution_transact_spec(&$params) {
285 $fields = civicrm_api3('contribution', 'getfields', array('action' => 'create'));
286 $params = array_merge($params, $fields['values']);
287 $params['receive_date']['api.default'] = 'now';
288 }
289
290 /**
291 * Process a transaction and record it against the contact.
292 *
293 * @param array $params
294 * Input parameters.
295 *
296 * @return array
297 * contribution of created or updated record (or a civicrm error)
298 */
299 function civicrm_api3_contribution_transact($params) {
300 // Set some params specific to payment processing
301 // @todo - fix this function - none of the results checked by civicrm_error would ever be an array with
302 // 'is_error' set
303 // also trxn_id is not saved.
304 // but since there is no test it's not desirable to jump in & make the obvious changes.
305 $params['payment_processor_mode'] = empty($params['is_test']) ? 'live' : 'test';
306 $params['amount'] = $params['total_amount'];
307 if (!isset($params['net_amount'])) {
308 $params['net_amount'] = $params['amount'];
309 }
310 if (!isset($params['invoiceID']) && isset($params['invoice_id'])) {
311 $params['invoiceID'] = $params['invoice_id'];
312 }
313
314 // Some payment processors expect a unique invoice_id - generate one if not supplied
315 $params['invoice_id'] = CRM_Utils_Array::value('invoice_id', $params, md5(uniqid(rand(), TRUE)));
316
317 $paymentProcessor = CRM_Financial_BAO_PaymentProcessor::getPayment($params['payment_processor'], $params['payment_processor_mode']);
318 if (civicrm_error($paymentProcessor)) {
319 return $paymentProcessor;
320 }
321
322 $payment = CRM_Core_Payment::singleton($params['payment_processor_mode'], $paymentProcessor);
323 if (civicrm_error($payment)) {
324 return $payment;
325 }
326
327 $transaction = $payment->doPayment($params);
328
329 $params['payment_instrument_id'] = CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_PaymentProcessorType', $paymentProcessor['payment_processor_type_id'], 'payment_type') == 1 ? 'Credit Card' : 'Debit Card';
330 return civicrm_api('contribution', 'create', $params);
331 }
332
333 /**
334 * Send a contribution confirmation (receipt or invoice).
335 *
336 * The appropriate online template will be used (the existence of related objects
337 * (e.g. memberships ) will affect this selection
338 *
339 * @param array $params
340 * Input parameters.
341 *
342 * @throws Exception
343 */
344 function civicrm_api3_contribution_sendconfirmation($params) {
345 $contribution = new CRM_Contribute_BAO_Contribution();
346 $contribution->id = $params['id'];
347 if (!$contribution->find(TRUE)) {
348 throw new Exception('Contribution does not exist');
349 }
350 $input = $ids = $cvalues = array('receipt_from_email' => $params['receipt_from_email']);
351 $contribution->loadRelatedObjects($input, $ids, FALSE, TRUE);
352 $contribution->composeMessageArray($input, $ids, $cvalues, FALSE, FALSE);
353 }
354
355 /**
356 * Adjust Metadata for sendconfirmation action.
357 *
358 * The metadata is used for setting defaults, documentation & validation.
359 *
360 * @param array $params
361 * Array of parameters determined by getfields.
362 */
363 function _civicrm_api3_contribution_sendconfirmation_spec(&$params) {
364 $params['id'] = array(
365 'api.required' => 1,
366 'title' => 'Contribution ID',
367 );
368 $params['receipt_from_email'] = array(
369 'api.required' => 1,
370 'title' => 'From Email address (string) required until someone provides a patch :-)',
371 );
372 $params['receipt_from_name'] = array(
373 'title' => 'From Name (string)',
374 );
375 $params['cc_receipt'] = array(
376 'title' => 'CC Email address (string)',
377 );
378 $params['bcc_receipt'] = array(
379 'title' => 'BCC Email address (string)',
380 );
381 $params['receipt_text'] = array(
382 'title' => 'Message (string)',
383 );
384 }
385
386 /**
387 * Complete an existing (pending) transaction.
388 *
389 * This will update related entities (participant, membership, pledge etc)
390 * and take any complete actions from the contribution page (e.g. send receipt).
391 *
392 * @todo - most of this should live in the BAO layer but as we want it to be an addition
393 * to 4.3 which is already stable we should add it to the api layer & re-factor into the BAO layer later
394 *
395 * @param array $params
396 * Input parameters.
397 *
398 * @throws API_Exception
399 * Api result array.
400 */
401 function civicrm_api3_contribution_completetransaction(&$params) {
402
403 $input = $ids = array();
404 $contribution = new CRM_Contribute_BAO_Contribution();
405 $contribution->id = $params['id'];
406 $contribution->find(TRUE);
407 if (!$contribution->id == $params['id']) {
408 throw new API_Exception('A valid contribution ID is required', 'invalid_data');
409 }
410 try {
411 if (!$contribution->loadRelatedObjects($input, $ids, FALSE, TRUE)) {
412 throw new API_Exception('failed to load related objects');
413 }
414 elseif ($contribution->contribution_status_id == CRM_Core_OptionGroup::getValue('contribution_status', 'Completed', 'name')) {
415 throw new API_Exception(ts('Contribution already completed'));
416 }
417 $objects = $contribution->_relatedObjects;
418 $objects['contribution'] = &$contribution;
419 $input['component'] = $contribution->_component;
420 $input['is_test'] = $contribution->is_test;
421 $input['trxn_id'] = !empty($params['trxn_id']) ? $params['trxn_id'] : $contribution->trxn_id;
422 $input['amount'] = $contribution->total_amount;
423 if (isset($params['is_email_receipt'])) {
424 $input['is_email_receipt'] = $params['is_email_receipt'];
425 }
426 // @todo required for base ipn but problematic as api layer handles this
427 $transaction = new CRM_Core_Transaction();
428 $ipn = new CRM_Core_Payment_BaseIPN();
429 $ipn->completeTransaction($input, $ids, $objects, $transaction, !empty($contribution->contribution_recur_id));
430 }
431 catch(Exception $e) {
432 throw new API_Exception('failed to load related objects' . $e->getMessage() . "\n" . $e->getTraceAsString());
433 }
434 }
435
436 /**
437 * Provide function metadata.
438 *
439 * @param array $params
440 */
441 function _civicrm_api3_contribution_completetransaction_spec(&$params) {
442 $params['id'] = array(
443 'title' => 'Contribution ID',
444 'type' => CRM_Utils_Type::T_INT,
445 'api.required' => TRUE,
446 );
447 $params['trxn_id'] = array(
448 'title' => 'Transaction ID',
449 'type' => CRM_Utils_Type::T_STRING,
450 );
451 $params['is_email_receipt'] = array(
452 'title' => 'Send email Receipt?',
453 'type' => CRM_Utils_Type::T_BOOLEAN,
454 );
455 }