X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=api%2Fv3%2FContribution.php;h=cb138a484e0af7120db4d18cccb72075b2f70f85;hb=64a155b595059761e3a852be1a44225b29107366;hp=4420a22802b6a81217f3f3886d65afa78e25f534;hpb=816cac04ea398ad81637209f70e76e2c761f0f85;p=civicrm-core.git diff --git a/api/v3/Contribution.php b/api/v3/Contribution.php index 4420a22802..cb138a484e 100644 --- a/api/v3/Contribution.php +++ b/api/v3/Contribution.php @@ -46,14 +46,24 @@ function civicrm_api3_contribution_create(&$params) { _civicrm_api3_custom_format_params($params, $values, 'Contribution'); $params = array_merge($params, $values); - if (empty($params['id'])) { - $op = 'add'; - } - CRM_Financial_BAO_FinancialType::getAvailableFinancialTypes($types, $op); - if (!in_array($params['financial_type_id'], array_keys($types))) { - return civicrm_api3_create_error('You do not have permission to create this contribution'); + if (CRM_Financial_BAO_FinancialType::isACLFinancialTypeStatus()) { + if (empty($params['id'])) { + $op = 'add'; + } + else { + if (empty($params['financial_type_id'])) { + $params['financial_type_id'] = civicrm_api3('Contribution', 'getvalue', array( + 'id' => $params['id'], + 'return' => 'financial_type_id', + )); + } + $op = 'edit'; + } + CRM_Financial_BAO_FinancialType::getAvailableFinancialTypes($types, $op); + if (!in_array($params['financial_type_id'], array_keys($types))) { + return civicrm_api3_create_error('You do not have permission to create this contribution'); + } } - if (!empty($params['id']) && !empty($params['contribution_status_id'])) { $error = array(); //throw error for invalid status change such as setting completed back to pending @@ -113,21 +123,21 @@ function _civicrm_api3_contribution_create_spec(&$params) { $params['soft_credit_to'] = array( 'name' => 'soft_credit_to', 'title' => 'Soft Credit contact ID (legacy)', - 'type' => 1, + 'type' => CRM_Utils_Type::T_INT, 'description' => 'ID of Contact to be Soft credited to (deprecated - use contribution_soft api)', 'FKClassName' => 'CRM_Contact_DAO_Contact', ); $params['honor_contact_id'] = array( 'name' => 'honor_contact_id', 'title' => 'Honoree contact ID (legacy)', - 'type' => 1, + 'type' => CRM_Utils_Type::T_INT, 'description' => 'ID of honoree contact (deprecated - use contribution_soft api)', 'FKClassName' => 'CRM_Contact_DAO_Contact', ); $params['honor_type_id'] = array( 'name' => 'honor_type_id', 'title' => 'Honoree Type (legacy)', - 'type' => 1, + 'type' => CRM_Utils_Type::T_INT, 'description' => 'Type of honoree contact (deprecated - use contribution_soft api)', 'pseudoconstant' => TRUE, ); @@ -148,9 +158,14 @@ function _civicrm_api3_contribution_create_spec(&$params) { ); $params['batch_id'] = array( 'title' => 'Batch', - 'type' => 1, + 'type' => CRM_Utils_Type::T_INT, 'description' => 'Batch which relevant transactions should be added to', ); + $params['refund_trxn_id'] = array( + 'title' => 'Refund Transaction ID', + 'type' => CRM_Utils_Type::T_STRING, + 'description' => 'Transaction ID specific to the refund taking place', + ); } /** @@ -191,6 +206,15 @@ function _civicrm_api3_contribution_create_legacy_support_45(&$params) { function civicrm_api3_contribution_delete($params) { $contributionID = !empty($params['contribution_id']) ? $params['contribution_id'] : $params['id']; + // First check contribution financial type + $financialType = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_Contribution', $contributionID, 'financial_type_id'); + // Now check permissioned lineitems & permissioned contribution + if (CRM_Financial_BAO_FinancialType::isACLFinancialTypeStatus() + && !CRM_Core_Permission::check('delete contributions of type ' . CRM_Contribute_PseudoConstant::financialType($financialType)) || + !CRM_Financial_BAO_FinancialType::checkPermissionedLineItems($contributionID, 'delete', FALSE) + ) { + return civicrm_api3_create_error('You do not have permission to delete this contribution'); + } if (CRM_Contribute_BAO_Contribution::deleteContribution($contributionID)) { return civicrm_api3_create_success(array($contributionID => 1)); } @@ -222,18 +246,29 @@ function _civicrm_api3_contribution_delete_spec(&$params) { function civicrm_api3_contribution_get($params) { $mode = CRM_Contact_BAO_Query::MODE_CONTRIBUTE; - list($dao, $query) = _civicrm_api3_get_query_object($params, $mode, 'Contribution'); - - $contribution = array(); - while ($dao->fetch()) { - //CRM-8662 - $contribution_details = $query->store($dao); - $softContribution = CRM_Contribute_BAO_ContributionSoft::getSoftContribution($dao->contribution_id, TRUE); - $contribution[$dao->contribution_id] = array_merge($contribution_details, $softContribution); + $returnProperties = CRM_Contribute_BAO_Query::defaultReturnProperties($mode); + + $contributions = _civicrm_api3_get_using_query_object('Contribution', $params, array(), NULL, $mode, $returnProperties); + + foreach ($contributions as $id => $contribution) { + $softContribution = CRM_Contribute_BAO_ContributionSoft::getSoftContribution($id, TRUE); + $contributions[$id] = array_merge($contribution, $softContribution); // format soft credit for backward compatibility - _civicrm_api3_format_soft_credit($contribution[$dao->contribution_id]); + _civicrm_api3_format_soft_credit($contributions[$id]); } - return civicrm_api3_create_success($contribution, $params, 'Contribution', 'get', $dao); + return civicrm_api3_create_success($contributions, $params, 'Contribution', 'get'); +} + +/** + * Get number of contacts matching the supplied criteria. + * + * @param array $params + * + * @return int + */ +function civicrm_api3_contribution_getcount($params) { + $count = _civicrm_api3_get_using_query_object('Contribution', $params, array(), TRUE, CRM_Contact_BAO_Query::MODE_CONTRIBUTE); + return (int) $count; } /**