Merge pull request #6450 from civicrm/4.6
[civicrm-core.git] / api / v3 / GroupContact.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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 GroupContact records.
30 *
31 * This api is for adding/removing contacts from a group,
32 * or fetching a list of groups for a contact.
33 *
34 * Important note: This api does not fetch smart groups for a contact.
35 * To fetch all contacts in a smart group, use the Contact api
36 * passing a contact_id and group_id.
37 *
38 * To create/delete groups, use the group api instead.
39 *
40 * @package CiviCRM_APIv3
41 */
42
43 /**
44 * Fetch a list of groups for a contact, or contacts for a group.
45 *
46 * @Note: this only applies to static groups, not smart groups.
47 * To fetch all contacts in a smart group, use the Contact api
48 * passing a contact_id and group_id.
49 *
50 * If no status mentioned in params, by default 'added' will be used
51 * to fetch the records
52 *
53 * @param array $params
54 * Name value pair of contact information.
55 *
56 * @return array
57 * list of groups, given contact subsribed to
58 */
59 function civicrm_api3_group_contact_get($params) {
60
61 if (empty($params['contact_id'])) {
62 if (empty($params['status'])) {
63 //default to 'Added'
64 $params['status'] = 'Added';
65 }
66 //ie. id passed in so we have to return something
67 return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
68 }
69 $status = CRM_Utils_Array::value('status', $params, 'Added');
70
71 $groupId = CRM_Utils_Array::value('group_id', $params);
72 $values = CRM_Contact_BAO_GroupContact::getContactGroup($params['contact_id'], $status, NULL, FALSE, TRUE, FALSE, TRUE, $groupId);
73 return civicrm_api3_create_success($values, $params, 'GroupContact');
74 }
75
76 /**
77 * Adjust metadata for Create action.
78 *
79 * @param array $params
80 */
81 function _civicrm_api3_group_contact_create_spec(&$params) {
82 $params['contact_id']['api.required'] = 1;
83 $params['group_id']['api.required'] = 1;
84 }
85
86 /**
87 * Add contact(s) to group(s).
88 *
89 * This api has a legacy/nonstandard signature.
90 * On success, the return array will be structured as follows:
91 * @code
92 * array(
93 * "is_error" => 0,
94 * "version" => 3,
95 * "count" => 3,
96 * "values" => array(
97 * "not_added" => integer,
98 * "added" => integer,
99 * "total_count" => integer
100 * )
101 * )
102 * @endcode
103 *
104 * On failure, the return array will be structured as follows:
105 * @code
106 * array(
107 * 'is_error' => 1,
108 * 'error_message' = string,
109 * 'error_data' = mixed or undefined
110 * )
111 * @endcode
112 *
113 * @param array $params
114 * Input parameters:
115 * - "contact_id" (required): First contact to add, or array of Contact IDs
116 * - "group_id" (required): First group to add contact(s) to, or array of Group IDs
117 * - "status" (optional): "Added" (default), "Pending" or "Removed"
118 * Legacy input parameters (will be deprecated):
119 * - "contact_id.1" etc. (optional): Additional contact_id to add to group(s)
120 * - "group_id.1" etc. (optional): Additional groups to add contact(s) to
121 *
122 * @return array
123 * Information about operation results
124 */
125 function civicrm_api3_group_contact_create($params) {
126 // Nonstandard bao - doesn't accept ID as a param, so convert id to group_id + contact_id
127 if (!empty($params['id'])) {
128 $getParams = array('id' => $params['id']);
129 $info = _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $getParams);
130 if (!empty($info['values'][$params['id']])) {
131 $params['group_id'] = $info['values'][$params['id']]['group_id'];
132 $params['contact_id'] = $info['values'][$params['id']]['contact_id'];
133 }
134 }
135 $action = CRM_Utils_Array::value('status', $params, 'Added');
136 return _civicrm_api3_group_contact_common($params, $action);
137 }
138
139 /**
140 * Delete group contact record.
141 *
142 * @param array $params
143 *
144 * @return array
145 *
146 * @deprecated
147 */
148 function civicrm_api3_group_contact_delete($params) {
149 $params['status'] = CRM_Utils_Array::value('status', $params, empty($params['skip_undelete']) ? 'Removed' : 'Deleted');
150 // "Deleted" isn't a real option so skip the api wrapper to avoid pseudoconstant validation
151 return civicrm_api3_group_contact_create($params);
152 }
153
154 /**
155 * Adjust metadata.
156 *
157 * @param array $params
158 */
159 function _civicrm_api3_group_contact_delete_spec(&$params) {
160 // set as not required no either/or std yet
161 $params['id']['api.required'] = 0;
162 }
163
164 /**
165 * Get pending group contacts.
166 *
167 * @param array $params
168 *
169 * @return array|int
170 * @deprecated
171 */
172 function civicrm_api3_group_contact_pending($params) {
173 $params['status'] = 'Pending';
174 return civicrm_api('GroupContact', 'Create', $params);
175 }
176
177 /**
178 * Group contact helper function.
179 *
180 * @todo behaviour is highly non-standard - need to figure out how to make this 'behave'
181 * & at the very least return IDs & details of the groups created / changed
182 *
183 * @param array $params
184 * @param string $op
185 *
186 * @return array
187 */
188 function _civicrm_api3_group_contact_common($params, $op = 'Added') {
189
190 $contactIDs = array();
191 $groupIDs = array();
192
193 // CRM-16959: Handle multiple Contact IDs and Group IDs in legacy format
194 // (contact_id.1, contact_id.2) or as an array
195 foreach ($params as $n => $v) {
196 if (substr($n, 0, 10) == 'contact_id') {
197 if (is_array($v)) {
198 foreach ($v as $arr_v) {
199 $contactIDs[] = $arr_v;
200 }
201 }
202 else {
203 $contactIDs[] = $v;
204 }
205 }
206 elseif (substr($n, 0, 8) == 'group_id') {
207 if (is_array($v)) {
208 foreach ($v as $arr_v) {
209 $groupIDs[] = $arr_v;
210 }
211 }
212 else {
213 $groupIDs[] = $v;
214 }
215 }
216 }
217
218 $method = CRM_Utils_Array::value('method', $params, 'API');
219 $status = CRM_Utils_Array::value('status', $params, $op);
220 $tracking = CRM_Utils_Array::value('tracking', $params);
221
222 if ($op == 'Added' || $op == 'Pending') {
223 $extraReturnValues = array(
224 'total_count' => 0,
225 'added' => 0,
226 'not_added' => 0,
227 );
228 foreach ($groupIDs as $groupID) {
229 list($tc, $a, $na) = CRM_Contact_BAO_GroupContact::addContactsToGroup($contactIDs,
230 $groupID,
231 $method,
232 $status,
233 $tracking
234 );
235 $extraReturnValues['total_count'] += $tc;
236 $extraReturnValues['added'] += $a;
237 $extraReturnValues['not_added'] += $na;
238 }
239 }
240 else {
241 $extraReturnValues = array(
242 'total_count' => 0,
243 'removed' => 0,
244 'not_removed' => 0,
245 );
246 foreach ($groupIDs as $groupID) {
247 list($tc, $r, $nr) = CRM_Contact_BAO_GroupContact::removeContactsFromGroup($contactIDs, $groupID, $method, $status, $tracking);
248 $extraReturnValues['total_count'] += $tc;
249 $extraReturnValues['removed'] += $r;
250 $extraReturnValues['not_removed'] += $nr;
251 }
252 }
253 // can't pass this by reference
254 $dao = NULL;
255 return civicrm_api3_create_success(1, $params, 'GroupContact', 'create', $dao, $extraReturnValues);
256 }
257
258 /**
259 * Update group contact status.
260 *
261 * @deprecated - this should be part of create but need to know we aren't missing something
262 *
263 * @param array $params
264 *
265 * @return bool
266 * @throws \API_Exception
267 */
268 function civicrm_api3_group_contact_update_status($params) {
269
270 civicrm_api3_verify_mandatory($params, NULL, array('contact_id', 'group_id'));
271
272 CRM_Contact_BAO_GroupContact::addContactsToGroup(
273 array($params['contact_id']),
274 $params['group_id'],
275 CRM_Utils_Array::value('method', $params, 'API'),
276 'Added',
277 CRM_Utils_Array::value('tracking', $params)
278 );
279
280 return TRUE;
281 }
282
283 /**
284 * Deprecated function notices.
285 *
286 * @deprecated api notice
287 * @return array
288 * Array of deprecated actions
289 */
290 function _civicrm_api3_group_contact_deprecation() {
291 return array(
292 'delete' => 'GroupContact "delete" action is deprecated in favor of "create".',
293 'pending' => 'GroupContact "pending" action is deprecated in favor of "create".',
294 'update_status' => 'GroupContact "update_status" action is deprecated in favor of "create".',
295 );
296 }