Merge pull request #14981 from eileenmcnaughton/load_extract
[civicrm-core.git] / api / v3 / Payment.php
CommitLineData
d2545e26
PN
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
d2545e26 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
d2545e26
PN
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 Payment records.
30 *
31 * @package CiviCRM_APIv3
32 */
33
34/**
35 * Retrieve a set of financial transactions which are payments.
36 *
37 * @param array $params
38 * Input parameters.
39 *
40 * @return array
41 * Array of financial transactions which are payments, if error an array with an error id and error message
42 */
43function civicrm_api3_payment_get($params) {
cf8f0fff 44 $financialTrxn = [];
cf33c6cb 45 $limit = '';
de6c59ca 46 if (isset($params['options']) && !empty($params['options']['limit'])) {
cf33c6cb
E
47 $limit = CRM_Utils_Array::value('limit', $params['options']);
48 }
49 $params['options']['limit'] = 0;
d2545e26
PN
50 $eft = civicrm_api3('EntityFinancialTrxn', 'get', $params);
51 if (!empty($eft['values'])) {
cf8f0fff 52 $eftIds = [];
d2545e26 53 foreach ($eft['values'] as $efts) {
2ff2ff26
PN
54 if (empty($efts['financial_trxn_id'])) {
55 continue;
56 }
d2545e26
PN
57 $eftIds[] = $efts['financial_trxn_id'];
58 $map[$efts['financial_trxn_id']] = $efts['entity_id'];
59 }
2ff2ff26 60 if (!empty($eftIds)) {
cf8f0fff
CW
61 $ftParams = [
62 'id' => ['IN' => $eftIds],
2ff2ff26 63 'is_payment' => 1,
cf8f0fff 64 ];
2ff2ff26
PN
65 if ($limit) {
66 $ftParams['options']['limit'] = $limit;
67 }
68 $financialTrxn = civicrm_api3('FinancialTrxn', 'get', $ftParams);
69 foreach ($financialTrxn['values'] as &$values) {
70 $values['contribution_id'] = $map[$values['id']];
71 }
d2545e26
PN
72 }
73 }
cf8f0fff 74 return civicrm_api3_create_success(CRM_Utils_Array::value('values', $financialTrxn, []), $params, 'Payment', 'get');
d2545e26
PN
75}
76
77/**
78 * Delete a payment.
79 *
80 * @param array $params
81 * Input parameters.
82 *
83 * @throws API_Exception
84 * @return array
85 * Api result array
86 */
1c31aa41 87function civicrm_api3_payment_delete($params) {
d2545e26
PN
88 return civicrm_api3('FinancialTrxn', 'delete', $params);
89}
90
91/**
92 * Cancel/Refund a payment for a Contribution.
93 *
94 * @param array $params
95 * Input parameters.
96 *
97 * @throws API_Exception
98 * @return array
99 * Api result array
100 */
1c31aa41 101function civicrm_api3_payment_cancel($params) {
cf8f0fff 102 $eftParams = [
d2545e26
PN
103 'entity_table' => 'civicrm_contribution',
104 'financial_trxn_id' => $params['id'],
cf8f0fff 105 ];
d2545e26 106 $entity = civicrm_api3('EntityFinancialTrxn', 'getsingle', $eftParams);
d2545e26 107
2561fc11 108 $paymentParams = [
109 'total_amount' => -$entity['amount'],
110 'contribution_id' => $entity['entity_id'],
111 'trxn_date' => CRM_Utils_Array::value('trxn_date', $params, 'now'),
112 ];
d2545e26 113
2561fc11 114 foreach (['trxn_id', 'payment_instrument_id'] as $permittedParam) {
115 if (isset($params[$permittedParam])) {
116 $paymentParams[$permittedParam] = $params[$permittedParam];
117 }
118 }
119 $result = civicrm_api3('Payment', 'create', $paymentParams);
120 return civicrm_api3_create_success($result['values'], $params, 'Payment', 'cancel');
d2545e26
PN
121}
122
123/**
124 * Add a payment for a Contribution.
125 *
126 * @param array $params
127 * Input parameters.
128 *
129 * @throws API_Exception
130 * @return array
131 * Api result array
132 */
1c31aa41 133function civicrm_api3_payment_create($params) {
d2545e26 134 // Check if it is an update
de6c59ca 135 if (!empty($params['id'])) {
d2545e26
PN
136 $amount = $params['total_amount'];
137 civicrm_api3('Payment', 'cancel', $params);
138 $params['total_amount'] = $amount;
139 }
0c9b306a 140 $trxn = CRM_Financial_BAO_Payment::create($params);
5625fdf0 141
cf8f0fff 142 $values = [];
d2545e26
PN
143 _civicrm_api3_object_to_array_unique_fields($trxn, $values[$trxn->id]);
144 return civicrm_api3_create_success($values, $params, 'Payment', 'create', $trxn);
145}
146
147/**
148 * Adjust Metadata for Create action.
149 *
150 * The metadata is used for setting defaults, documentation & validation.
151 *
152 * @param array $params
153 * Array of parameters.
154 */
155function _civicrm_api3_payment_create_spec(&$params) {
cf8f0fff
CW
156 $params = [
157 'contribution_id' => [
7c31ae57 158 'api.required' => 1,
d1987324 159 'title' => ts('Contribution ID'),
d2545e26 160 'type' => CRM_Utils_Type::T_INT,
cf8f0fff
CW
161 ],
162 'total_amount' => [
7c31ae57 163 'api.required' => 1,
d1987324 164 'title' => ts('Total Payment Amount'),
d2545e26 165 'type' => CRM_Utils_Type::T_FLOAT,
cf8f0fff
CW
166 ],
167 'payment_processor_id' => [
d1987324 168 'title' => ts('Payment Processor ID'),
d2545e26
PN
169 'type' => CRM_Utils_Type::T_INT,
170 'description' => ts('Payment processor ID - required for payment processor payments'),
cf8f0fff
CW
171 ],
172 'id' => [
d1987324 173 'title' => ts('Payment ID'),
d2545e26 174 'type' => CRM_Utils_Type::T_INT,
cf8f0fff
CW
175 'api.aliases' => ['payment_id'],
176 ],
2561fc11 177 'trxn_date' => [
d1987324 178 'title' => ts('Cancel Date'),
2561fc11 179 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
180 ],
cf8f0fff 181 ];
d2545e26
PN
182}
183
184/**
185 * Adjust Metadata for Get action.
186 *
187 * The metadata is used for setting defaults, documentation & validation.
188 *
189 * @param array $params
190 * Array of parameters determined by getfields.
191 */
192function _civicrm_api3_payment_get_spec(&$params) {
cf8f0fff
CW
193 $params = [
194 'contribution_id' => [
d2545e26
PN
195 'title' => 'Contribution ID',
196 'type' => CRM_Utils_Type::T_INT,
cf8f0fff
CW
197 ],
198 'entity_table' => [
d2545e26
PN
199 'title' => 'Entity Table',
200 'api.default' => 'civicrm_contribution',
cf8f0fff
CW
201 ],
202 'entity_id' => [
d2545e26
PN
203 'title' => 'Entity ID',
204 'type' => CRM_Utils_Type::T_INT,
cf8f0fff
CW
205 'api.aliases' => ['contribution_id'],
206 ],
207 ];
d2545e26
PN
208}
209
210/**
211 * Adjust Metadata for Delete action.
212 *
213 * The metadata is used for setting defaults, documentation & validation.
214 *
215 * @param array $params
216 * Array of parameters.
217 */
218function _civicrm_api3_payment_delete_spec(&$params) {
cf8f0fff
CW
219 $params = [
220 'id' => [
7c31ae57 221 'api.required' => 1,
d2545e26
PN
222 'title' => 'Payment ID',
223 'type' => CRM_Utils_Type::T_INT,
cf8f0fff
CW
224 'api.aliases' => ['payment_id'],
225 ],
226 ];
d2545e26
PN
227}
228
229/**
230 * Adjust Metadata for Cancel action.
231 *
232 * The metadata is used for setting defaults, documentation & validation.
233 *
234 * @param array $params
235 * Array of parameters.
236 */
237function _civicrm_api3_payment_cancel_spec(&$params) {
cf8f0fff
CW
238 $params = [
239 'id' => [
7c31ae57 240 'api.required' => 1,
d2545e26
PN
241 'title' => 'Payment ID',
242 'type' => CRM_Utils_Type::T_INT,
cf8f0fff
CW
243 'api.aliases' => ['payment_id'],
244 ],
2561fc11 245 'trxn_date' => [
246 'title' => 'Cancel Date',
247 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
248 ],
cf8f0fff 249 ];
d2545e26 250}
a79d2ec2 251
252/**
253 * Send a payment confirmation.
254 *
255 * @param array $params
256 * Input parameters.
257 *
258 * @return array
259 * @throws Exception
260 */
261function civicrm_api3_payment_sendconfirmation($params) {
262 $allowedParams = [
263 'receipt_from_email',
264 'receipt_from_name',
265 'cc_receipt',
266 'bcc_receipt',
267 'receipt_text',
268 'id',
269 ];
270 $input = array_intersect_key($params, array_flip($allowedParams));
271 // use either the contribution or membership receipt, based on whether it’s a membership-related contrib or not
272 $result = CRM_Financial_BAO_Payment::sendConfirmation($input);
273 return civicrm_api3_create_success([
274 $params['id'] => [
275 'is_sent' => $result[0],
276 'subject' => $result[1],
277 'message_txt' => $result[2],
278 'message_html' => $result[3],
7c31ae57
SL
279 ],
280 ]);
a79d2ec2 281}
282
283/**
284 * Adjust Metadata for sendconfirmation 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 */
291function _civicrm_api3_payment_sendconfirmation_spec(&$params) {
cf8f0fff 292 $params['id'] = [
a79d2ec2 293 'api.required' => 1,
294 'title' => ts('Payment ID'),
295 'type' => CRM_Utils_Type::T_INT,
cf8f0fff 296 ];
a79d2ec2 297}