Update debugging page text
[civicrm-core.git] / api / v3 / Pledge.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
731a0992 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
c28e1768 29 * This api exposes CiviCRM Pledge.
6a488035
TO
30 *
31 * @package CiviCRM_APIv3
6a488035
TO
32 */
33
34/**
22242c87 35 * Create or updates an Pledge.
6a488035 36 *
2e2605fe
EM
37 * @param $params
38 *
a6c01b45 39 * @return array
72b3a70c 40 * Array containing 'is_error' to denote success or failure and details of the created pledge
2e2605fe 41 * @throws \API_Exception
6a488035
TO
42 */
43function civicrm_api3_pledge_create($params) {
44 _civicrm_api3_pledge_format_params($params, TRUE);
45 $values = $params;
46 //format the custom fields
47 _civicrm_api3_custom_format_params($params, $values, 'Pledge');
48 return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $values);
49}
50
51/**
22242c87 52 * Delete a pledge.
6a488035 53 *
cf470720
TO
54 * @param array $params
55 * Array included 'pledge_id' of pledge to delete.
6a488035 56 *
22242c87 57 * @return array
6a488035 58 */
1c88e578 59function civicrm_api3_pledge_delete($params) {
60 if (CRM_Pledge_BAO_Pledge::deletePledge($params['id'])) {
61 return civicrm_api3_create_success(array(
21dfd5f5 62 'id' => $params['id'],
1c88e578 63 ), $params, 'pledge', 'delete');
64 }
65 else {
66 return civicrm_api3_create_error('Could not delete pledge');
67 }
6a488035
TO
68}
69
aa1b1481 70/**
22242c87
EM
71 * Adjust metadata for pledge delete action.
72 *
c490a46a 73 * @param array $params
aa1b1481 74 */
6a488035
TO
75function _civicrm_api3_pledge_delete_spec(&$params) {
76 // set as not required as pledge_id also acceptable & no either/or std yet
77 $params['id']['api.aliases'] = array('pledge_id');
78}
11e09c59
TO
79
80/**
22242c87
EM
81 * Adjust field specification specific to get requests.
82 *
d0997921 83 * @param array $params
6a488035
TO
84 */
85function _civicrm_api3_pledge_get_spec(&$params) {
86 $params['next_pay_date'] = array(
87 'name' => 'next_pay_date',
88 'type' => 12,
89 'title' => 'Pledge Made',
90 'api.filter' => 0,
91 'api.return' => 1,
92 );
93 $params['pledge_is_test']['api.default'] = 0;
94 $params['pledge_financial_type_id']['api.aliases'] = array('contribution_type_id', 'contribution_type');
95
96}
97
11e09c59 98/**
22242c87
EM
99 * Adjust field specification specific to get requests.
100 *
d0997921 101 * @param array $params
6a488035
TO
102 */
103function _civicrm_api3_pledge_create_spec(&$params) {
104
105 $required = array('contact_id', 'amount', 'installments', 'start_date', 'financial_type_id');
106 foreach ($required as $required_field) {
107 $params[$required_field]['api.required'] = 1;
108 }
109 // @todo this can come from xml
110 $params['amount']['api.aliases'] = array('pledge_amount');
111 $params['financial_type_id']['api.aliases'] = array('contribution_type_id', 'contribution_type');
112}
113
114/**
22242c87 115 * Retrieve a set of pledges, given a set of input params.
6a488035 116 *
cf470720
TO
117 * @param array $params
118 * Input parameters. Use interrogate for possible fields.
6a488035 119 *
a6c01b45 120 * @return array
72b3a70c 121 * array of pledges, if error an array with an error id and error message
6a488035
TO
122 */
123function civicrm_api3_pledge_get($params) {
82f7d8b2
EM
124 $mode = CRM_Contact_BAO_Query::MODE_PLEDGE;
125 $entity = 'pledge';
126
127 list($dao, $query) = _civicrm_api3_get_query_object($params, $mode, $entity);
6a488035 128
6a488035
TO
129 $pledge = array();
130 while ($dao->fetch()) {
131 $pledge[$dao->pledge_id] = $query->store($dao);
132 }
133
134 return civicrm_api3_create_success($pledge, $params, 'pledge', 'get', $dao);
135}
136
11e09c59 137/**
22242c87 138 * Set default to not return test params.
6a488035
TO
139 */
140function _civicrm_api3_pledge_get_defaults() {
141 return array('pledge_test' => 0);
142}
143
144/**
22242c87
EM
145 * Legacy function to format pledge parameters.
146 *
147 * I removed a bunch of stuff no longer required from here but it still needs
6a488035
TO
148 * more culling
149 * take the input parameter list as specified in the data model and
150 * convert it into the same format that we use in QF and BAO object
151 *
cf470720
TO
152 * @param array $values
153 * The reformatted properties that we can use internally.
6a488035 154 */
54f1aa2a 155function _civicrm_api3_pledge_format_params(&$values) {
6a488035
TO
156
157 // probably most of the below can be removed.... just needs a little more review
158 if (array_key_exists('original_installment_amount', $values)) {
159 $values['installment_amount'] = $values['original_installment_amount'];
160 //it seems it will only create correctly with BOTH installment amount AND pledge_installment_amount set
161 //pledge installment amount required for pledge payments
162 $values['pledge_original_installment_amount'] = $values['original_installment_amount'];
163 }
164
165 if (array_key_exists('pledge_original_installment_amount', $values)) {
166 $values['installment_amount'] = $values['pledge_original_installment_amount'];
167 }
168
169 if (empty($values['id'])) {
170 //at this point both should be the same so unset both if not set - passing in empty
171 //value causes crash rather creating new - do it before next section as null values ignored in 'switch'
172 unset($values['id']);
173
174 //if you have a single installment when creating & you don't set the pledge status (not a required field) then
175 //status id is left null for pledge payments in BAO
176 // so we are hacking in the addition of the pledge_status_id to pending here
177 if (empty($values['status_id']) && $values['installments'] == 1) {
178 $contributionStatus = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
179 $values['status_id'] = array_search('Pending', $contributionStatus);
180 }
181 }
182 if (empty($values['scheduled_date']) && array_key_exists('start_date', $values)) {
183 $values['scheduled_date'] = $values['start_date'];
184 }
185}