_errors[0]['message']); } _civicrm_api3_object_to_array($contribution, $contributeArray[$contribution->id]); return civicrm_api3_create_success($contributeArray, $params, 'contribution', 'create', $contribution); } /** * Adjust Metadata for Create action * * The metadata is used for setting defaults, documentation & validation * @param array $params array or parameters determined by getfields */ function _civicrm_api3_contribution_create_spec(&$params) { $params['contact_id']['api.required'] = 1; $params['total_amount']['api.required'] = 1; $params['payment_processor'] = array( 'name' => 'payment_processor', 'title' => 'Payment Processor ID', 'description' => 'ID of payment processor used for this contribution', // field is called payment processor - not payment processor id but can only be one id so // it seems likely someone will fix it up one day to be more consistent - lets alias it from the start 'api.aliases' => array('payment_processor_id'), ); $params['financial_type_id']['api.aliases'] = array('contribution_type_id', 'contribution_type'); $params['financial_type_id']['api.required'] = 1; $params['note'] = array( 'name' => 'note', 'uniqueName' => 'contribution_note', 'title' => 'note', 'type' => 2, 'description' => 'Associated Note in the notes table', ); $params['soft_credit_to'] = array( 'name' => 'soft_credit_to', 'title' => 'Soft Credit contact ID', 'type' => 1, 'description' => 'ID of Contact to be Soft credited to', 'FKClassName' => 'CRM_Contact_DAO_Contact', ); // note this is a recommended option but not adding as a default to avoid // creating unecessary changes for the dev $params['skipRecentView'] = array( 'name' => 'skipRecentView', 'title' => 'Skip adding to recent view', 'type' => 1, 'description' => 'Do not add to recent view (setting this improves performance)', ); $params['skipLineItem'] = array( 'name' => 'skipLineItem', 'title' => 'Skip adding line items', 'type' => 1, 'api.default' => 0, 'description' => 'Do not add line items by default (if you wish to add your own)', ); } /** * Delete a contribution * * @param array $params (reference ) input parameters * * @return boolean true if success, else false * @static void * @access public * {@getfields Contribution_delete} * @example ContributionDelete.php */ function civicrm_api3_contribution_delete($params) { $contributionID = CRM_Utils_Array::value('contribution_id', $params) ? $params['contribution_id'] : $params['id']; if (CRM_Contribute_BAO_Contribution::deleteContribution($contributionID)) { return civicrm_api3_create_success(array($contributionID => 1)); } else { return civicrm_api3_create_error('Could not delete contribution'); } } /** * modify metadata. Legacy support for contribution_id */ function _civicrm_api3_contribution_delete_spec(&$params) { $params['id']['api.aliases'] = array('contribution_id'); } /** * Retrieve a set of contributions, given a set of input params * * @param array $params (reference ) input parameters * @param array $returnProperties Which properties should be included in the * returned Contribution object. If NULL, the default * set of properties will be included. * * @return array (reference ) array of contributions, if error an array with an error id and error message * @static void * @access public * {@getfields Contribution_get} * @example ContributionGet.php */ function civicrm_api3_contribution_get($params) { $options = _civicrm_api3_get_options_from_params($params, TRUE,'contribution','get'); $sort = CRM_Utils_Array::value('sort', $options, NULL); $offset = CRM_Utils_Array::value('offset', $options); $rowCount = CRM_Utils_Array::value('limit', $options); $smartGroupCache = CRM_Utils_Array::value('smartGroupCache', $params); $inputParams = CRM_Utils_Array::value('input_params', $options, array()); $returnProperties = CRM_Utils_Array::value('return', $options, NULL); require_once 'CRM/Contribute/BAO/Query.php'; require_once 'CRM/Contact/BAO/Query.php'; if (empty($returnProperties)) { $returnProperties = CRM_Contribute_BAO_Query::defaultReturnProperties(CRM_Contact_BAO_Query::MODE_CONTRIBUTE); } $newParams = CRM_Contact_BAO_Query::convertFormValues($inputParams); $query = new CRM_Contact_BAO_Query($newParams, $returnProperties, NULL, FALSE, FALSE, CRM_Contact_BAO_Query::MODE_CONTRIBUTE ); list($select, $from, $where, $having) = $query->query(); $sql = "$select $from $where $having"; if (!empty($sort)) { $sql .= " ORDER BY $sort "; } $sql .= " LIMIT $offset, $rowCount "; $dao = CRM_Core_DAO::executeQuery($sql); $contribution = array(); while ($dao->fetch()) { //CRM-8662 $contribution_details = $query->store ( $dao ); $soft_params = array('contribution_id' => $dao->contribution_id); $soft_contribution = CRM_Contribute_BAO_Contribution::getSoftContribution ( $soft_params , true); $contribution [$dao->contribution_id] = array_merge($contribution_details, $soft_contribution); } return civicrm_api3_create_success($contribution, $params, 'contribution', 'get', $dao); } /** * Adjust Metadata for Get action * * The metadata is used for setting defaults, documentation & validation * @param array $params array or parameters determined by getfields */ function _civicrm_api3_contribution_get_spec(&$params) { $params['contribution_test']['api.default'] = 0; $params['financial_type_id']['api.aliases'] = array('contribution_type_id'); $params['contact_id'] = $params['contribution_contact_id']; $params['contact_id']['api.aliases'] = array('contribution_contact_id'); unset($params['contribution_contact_id']); } /** * take the input parameter list as specified in the data model and * convert it into the same format that we use in QF and BAO object * * @param array $params Associative array of property name/value * pairs to insert in new contact. * @param array $values The reformatted properties that we can use internally * ' * * @return array|CRM_Error * @access public */ function _civicrm_api3_contribute_format_params($params, &$values, $create = FALSE) { //legacy way of formatting from v2 api - v3 way is to define metadata & do it in the api layer require_once 'api/v3/utils.php'; _civicrm_api3_filter_fields_for_bao('Contribution', $params, $values); foreach ($params as $key => $value) { // ignore empty values or empty arrays etc if (CRM_Utils_System::isNull($value)) { continue; } // note that this is legacy handling - these should be handled at the api layer switch ($key) { case 'financial_type' :// should be dealt with either api pseudoconstant in validate_integer fn $contributionTypeId = CRM_Utils_Array::key ( ucfirst ( $value ), CRM_Contribute_PseudoConstant::financialType() ); if ($contributionTypeId) { if (CRM_Utils_Array::value('financial_type_id', $values) && $contributionTypeId != $values['financial_type_id']) { throw new Exception("Mismatched Financial Type and Financial Type Id"); } $values ['financial_type_id'] = $contributionTypeId; } else { throw new Exception("Invalid Financial Type"); } break; case 'soft_credit_to':// should be dealt with by validate integer if (!CRM_Utils_Rule::integer($value)) { return civicrm_api3_create_error("$key not a valid Id: $value"); } $values['soft_credit_to'] = $value; break; default: break; } } return array(); } /** * Process a transaction and record it against the contact. * * @param array $params (reference ) input parameters * * @return array (reference ) contribution of created or updated record (or a civicrm error) * @static void * @access public * */ function civicrm_api3_contribution_transact($params) { $required = array('amount'); foreach ($required as $key) { if (!isset($params[$key])) { return civicrm_api3_create_error("Missing parameter $key: civicrm_contribute_transact() requires a parameter '$key'."); } } // allow people to omit some values for convenience // 'payment_processor_id' => NULL /* we could retrieve the default processor here, but only if it's missing to avoid an extra lookup */ $defaults = array( 'payment_processor_mode' => 'live', ); $params = array_merge($defaults, $params); // clean up / adjust some values which if (!isset($params['total_amount'])) { $params['total_amount'] = $params['amount']; } if (!isset($params['net_amount'])) { $params['net_amount'] = $params['amount']; } if (!isset($params['receive_date'])) { $params['receive_date'] = date('Y-m-d'); } if (!isset($params['invoiceID']) && isset($params['invoice_id'])) { $params['invoiceID'] = $params['invoice_id']; } require_once 'CRM/Financial/BAO/PaymentProcessor.php'; $paymentProcessor = CRM_Financial_BAO_PaymentProcessor::getPayment($params['payment_processor_id'], $params['payment_processor_mode']); if (civicrm_error($paymentProcessor)) { return $paymentProcessor; } require_once 'CRM/Core/Payment.php'; $payment = &CRM_Core_Payment::singleton($params['payment_processor_mode'], $paymentProcessor); if (civicrm_error($payment)) { return $payment; } $transaction = $payment->doDirectPayment($params); if (civicrm_error($transaction)) { return $transaction; } // but actually, $payment->doDirectPayment() doesn't return a // CRM_Core_Error by itself if (get_class($transaction) == 'CRM_Core_Error') { $errs = $transaction->getErrors(); if (!empty($errs)) { $last_error = array_shift($errs); return CRM_Core_Error::createApiError($last_error['message']); } } $contribution = civicrm_api('contribution', 'create', $params); return $contribution['values']; } /** * Send a contribution confirmation (receipt or invoice) * The appropriate online template will be used (the existence of related objects * (e.g. memberships ) will affect this selection * @param array $params input parameters * {@getfields Contribution_sendconfirmation} * @return array Api result array * @static void * @access public * */ function civicrm_api3_contribution_sendconfirmation($params) { $contribution = new CRM_Contribute_BAO_Contribution(); $contribution->id = $params['id']; if (! $contribution->find(true)) { throw new Exception('Contribution does not exist'); } $input = $ids = $cvalues = array('receipt_from_email' => $params['receipt_from_email']); $contribution->loadRelatedObjects($input, $ids, FALSE, true); $contribution->composeMessageArray($input, $ids, $cvalues, false, false); } /** * Adjust Metadata for Create action * * The metadata is used for setting defaults, documentation & validation * @param array $params array or parameters determined by getfields */ function _civicrm_api3_contribution_sendconfirmation_spec(&$params) { $params['id'] = array( 'api.required' => 1, 'title' => 'Contribution ID' ); $params['receipt_from_email'] = array( 'api.required' =>1, 'title' => 'From Email (required until someone provides a patch :-)', ); } /** * Complete an existing (pending) transaction, updating related entities (participant, membership, pledge etc) * and taking any complete actions from the contribution page (e.g. send receipt) * * @todo - most of this should live in the BAO layer but as we want it to be an addition * to 4.3 which is already stable we should add it to the api layer & re-factor into the BAO layer later * * @param array $params input parameters * {@getfields Contribution_completetransaction} * @return array Api result array * @static void * @access public * */ function civicrm_api3_contribution_completetransaction(&$params) { $input = $ids = array(); $contribution = new CRM_Contribute_BAO_Contribution(); $contribution->id = $params['id']; $contribution->find(TRUE); if(!$contribution->id == $params['id']){ throw new API_Exception('A valid contribution ID is required', 'invalid_data'); } try { if(!$contribution->loadRelatedObjects($input, $ids, FALSE, TRUE)){ throw new API_Exception('failed to load related objects'); } $objects = $contribution->_relatedObjects; $objects['contribution'] = &$contribution; $input['component'] = $contribution->_component; $input['is_test'] = $contribution->is_test; $input['trxn_id']= $contribution->trxn_id; $input['amount'] = $contribution->total_amount; if(isset($params['is_email_receipt'])){ $input['is_email_receipt'] = $params['is_email_receipt']; } // @todo required for base ipn but problematic as api layer handles this $transaction = new CRM_Core_Transaction(); $ipn = new CRM_Core_Payment_BaseIPN(); $ipn->completeTransaction($input, $ids, $objects, $transaction); } catch(Exception$e) { throw new API_Exception('failed to load related objects' . $e->getMessage() . "\n" . $e->getTraceAsString()); } } function _civicrm_api3_contribution_completetransaction(&$params) { }