Merge pull request #15486 from demeritcowboy/displaylabel-vs-displayLabel
[civicrm-core.git] / api / v3 / Order.php
CommitLineData
31a99426
PN
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
31a99426 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
31a99426
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/**
7cad285e
JM
29 * This api exposes CiviCRM Order objects, an abstract entity
30 * comprised of contributions and related line items.
31a99426
PN
31 *
32 * @package CiviCRM_APIv3
33 */
34
35/**
36 * Retrieve a set of Order.
37 *
38 * @param array $params
39 * Input parameters.
40 *
41 * @return array
42 * Array of Order, if error an array with an error id and error message
43 */
44function civicrm_api3_order_get($params) {
cf8f0fff
CW
45 $contributions = [];
46 $params['api.line_item.get'] = ['qty' => ['<>' => 0]];
31a99426 47 $isSequential = FALSE;
de6c59ca 48 if (!empty($params['sequential'])) {
31a99426
PN
49 $params['sequential'] = 0;
50 $isSequential = TRUE;
51 }
52 $result = civicrm_api3('Contribution', 'get', $params);
53 if (!empty($result['values'])) {
54 foreach ($result['values'] as $key => $contribution) {
55 $contributions[$key] = $contribution;
56 $contributions[$key]['line_items'] = $contribution['api.line_item.get']['values'];
57 unset($contributions[$key]['api.line_item.get']);
58 }
59 }
60 $params['sequential'] = $isSequential;
61 return civicrm_api3_create_success($contributions, $params, 'Order', 'get');
62}
b8644ae3 63
785f03e2 64/**
65 * Adjust Metadata for Get action.
66 *
67 * The metadata is used for setting defaults, documentation & validation.
68 *
69 * @param array $params
70 * Array of parameters determined by getfields.
71 */
72function _civicrm_api3_order_get_spec(&$params) {
73 $params['id']['api.aliases'] = ['order_id'];
74 $params['id']['title'] = ts('Contribution / Order ID');
75}
76
b8644ae3
PN
77/**
78 * Add or update a Order.
79 *
80 * @param array $params
81 * Input parameters.
82 *
b8644ae3
PN
83 * @return array
84 * Api result array
9c5edcd4 85 *
86 * @throws \CiviCRM_API3_Exception
87 * @throws API_Exception
b8644ae3 88 */
1c31aa41 89function civicrm_api3_order_create($params) {
9c5edcd4 90 civicrm_api3_verify_one_mandatory($params, NULL, ['line_items', 'total_amount']);
b8644ae3 91 $entity = NULL;
cf8f0fff 92 $entityIds = [];
af595ac2 93 $contributionStatus = CRM_Utils_Array::value('contribution_status_id', $params);
94 if ($contributionStatus !== 'Pending' && 'Pending' !== CRM_Core_PseudoConstant::getName('CRM_Contribute_BAO_Contribution', 'contribution_status_id', $contributionStatus)) {
95 CRM_Core_Error::deprecatedFunctionWarning('Creating a Order with a status other than pending is deprecated. Currently empty defaults to "Completed" so as a transition not passing in "Pending" is deprecated');
96 }
de6c59ca 97 if (!empty($params['line_items']) && is_array($params['line_items'])) {
b8644ae3
PN
98 $priceSetID = NULL;
99 CRM_Contribute_BAO_Contribution::checkLineItems($params);
100 foreach ($params['line_items'] as $lineItems) {
cf8f0fff 101 $entityParams = CRM_Utils_Array::value('params', $lineItems, []);
b8644ae3
PN
102 if (!empty($entityParams) && !empty($lineItems['line_item'])) {
103 $item = reset($lineItems['line_item']);
104 $entity = str_replace('civicrm_', '', $item['entity_table']);
105 }
106 if ($entityParams) {
cf8f0fff 107 if (in_array($entity, ['participant', 'membership'])) {
b8644ae3 108 $entityParams['skipLineItem'] = TRUE;
af595ac2 109 if ($contributionStatus === 'Pending') {
110 $entityParams['status_id'] = ($entity === 'participant' ? 'Pending from incomplete transaction' : 'Pending');
111 }
b8644ae3
PN
112 $entityResult = civicrm_api3($entity, 'create', $entityParams);
113 $params['contribution_mode'] = $entity;
114 $entityIds[] = $params[$entity . '_id'] = $entityResult['id'];
115 foreach ($lineItems['line_item'] as &$items) {
116 $items['entity_id'] = $entityResult['id'];
117 }
118 }
119 else {
120 // pledge payment
121 }
122 }
123 if (empty($priceSetID)) {
124 $item = reset($lineItems['line_item']);
cf8f0fff 125 $priceSetID = civicrm_api3('PriceField', 'getvalue', [
b8644ae3
PN
126 'return' => 'price_set_id',
127 'id' => $item['price_field_id'],
cf8f0fff
CW
128 ]);
129 $params['line_item'][$priceSetID] = [];
b8644ae3
PN
130 }
131 $params['line_item'][$priceSetID] = array_merge($params['line_item'][$priceSetID], $lineItems['line_item']);
132 }
133 }
134 $contribution = civicrm_api3('Contribution', 'create', $params);
135 // add payments
de6c59ca 136 if ($entity && !empty($contribution['id'])) {
b8644ae3 137 foreach ($entityIds as $entityId) {
cf8f0fff 138 $paymentParams = [
b8644ae3
PN
139 'contribution_id' => $contribution['id'],
140 $entity . '_id' => $entityId,
cf8f0fff 141 ];
b8644ae3
PN
142 // if entity is pledge then build pledge param
143 if ($entity == 'pledge') {
144 $paymentParams += $entityParams;
145 }
146 $payments = civicrm_api3($entity . '_payment', 'create', $paymentParams);
147 }
148 }
149 return civicrm_api3_create_success(CRM_Utils_Array::value('values', $contribution), $params, 'Order', 'create');
150}
151
5f44f698
PN
152/**
153 * Delete a Order.
154 *
155 * @param array $params
156 * Input parameters.
5f44f698 157 * @return array
8089541a
SL
158 * @throws API_Exception
159 * @throws CiviCRM_API3_Exception
5f44f698
PN
160 */
161function civicrm_api3_order_delete($params) {
cf8f0fff
CW
162 $contribution = civicrm_api3('Contribution', 'get', [
163 'return' => ['is_test'],
95c4e89e 164 'id' => $params['id'],
cf8f0fff 165 ]);
5f44f698
PN
166 if ($contribution['id'] && $contribution['values'][$contribution['id']]['is_test'] == TRUE) {
167 $result = civicrm_api3('Contribution', 'delete', $params);
168 }
169 else {
95c4e89e 170 throw new API_Exception('Only test orders can be deleted.');
5f44f698 171 }
95c4e89e 172 return civicrm_api3_create_success($result['values'], $params, 'Order', 'delete');
5f44f698
PN
173}
174
65f7f9f6 175/**
9d8e81c8 176 * Cancel an Order.
65f7f9f6
PN
177 *
178 * @param array $params
179 * Input parameters.
180 *
181 * @return array
182 */
183function civicrm_api3_order_cancel($params) {
184 $contributionStatuses = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
a5c7fd46 185 $params['contribution_status_id'] = array_search('Cancelled', $contributionStatuses);
65f7f9f6 186 $result = civicrm_api3('Contribution', 'create', $params);
9d8e81c8
PN
187 CRM_Contribute_BAO_Contribution::transitionComponents($params);
188 return civicrm_api3_create_success($result['values'], $params, 'Order', 'cancel');
65f7f9f6
PN
189}
190
191/**
192 * Adjust Metadata for Cancel action.
193 *
194 * The metadata is used for setting defaults, documentation & validation.
195 *
196 * @param array $params
197 * Array of parameters determined by getfields.
198 */
199function _civicrm_api3_order_cancel_spec(&$params) {
cf8f0fff 200 $params['contribution_id'] = [
7c31ae57 201 'api.required' => 1,
65f7f9f6
PN
202 'title' => 'Contribution ID',
203 'type' => CRM_Utils_Type::T_INT,
cf8f0fff 204 ];
65f7f9f6
PN
205}
206
b8644ae3
PN
207/**
208 * Adjust Metadata for Create action.
209 *
210 * The metadata is used for setting defaults, documentation & validation.
211 *
212 * @param array $params
213 * Array of parameters determined by getfields.
214 */
215function _civicrm_api3_order_create_spec(&$params) {
cf8f0fff 216 $params['contact_id'] = [
b8644ae3
PN
217 'name' => 'contact_id',
218 'title' => 'Contact ID',
219 'type' => CRM_Utils_Type::T_INT,
220 'api.required' => TRUE,
cf8f0fff
CW
221 ];
222 $params['total_amount'] = [
b8644ae3
PN
223 'name' => 'total_amount',
224 'title' => 'Total Amount',
cf8f0fff 225 ];
785f03e2 226 $params['financial_type_id'] = [
b8644ae3
PN
227 'name' => 'financial_type_id',
228 'title' => 'Financial Type',
229 'type' => CRM_Utils_Type::T_INT,
230 'api.required' => TRUE,
785f03e2 231 'table_name' => 'civicrm_contribution',
232 'entity' => 'Contribution',
233 'bao' => 'CRM_Contribute_BAO_Contribution',
234 'pseudoconstant' => [
235 'table' => 'civicrm_financial_type',
236 'keyColumn' => 'id',
237 'labelColumn' => 'name',
238 ],
239 ];
b8644ae3 240}
5f44f698
PN
241
242/**
243 * Adjust Metadata for Delete action.
244 *
245 * The metadata is used for setting defaults, documentation & validation.
246 *
247 * @param array $params
248 * Array of parameters determined by getfields.
249 */
250function _civicrm_api3_order_delete_spec(&$params) {
cf8f0fff 251 $params['contribution_id'] = [
5f44f698
PN
252 'api.required' => TRUE,
253 'title' => 'Contribution ID',
254 'type' => CRM_Utils_Type::T_INT,
cf8f0fff
CW
255 ];
256 $params['id']['api.aliases'] = ['contribution_id'];
5f44f698 257}