Commit | Line | Data |
---|---|---|
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 | +--------------------------------------------------------------------+ | |
26 | */ | |
27 | ||
28 | /** | |
b081365f | 29 | * This api exposes CiviCRM group contacts. |
6a488035 | 30 | * |
b081365f CW |
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. | |
6a488035 | 39 | * |
b081365f | 40 | * @package CiviCRM_APIv3 |
6a488035 TO |
41 | */ |
42 | ||
43 | ||
44 | /** | |
22242c87 EM |
45 | * This API will give list of the groups for particular contact. |
46 | * | |
47 | * Particular status can be sent in params array. | |
48 | * | |
6a488035 TO |
49 | * If no status mentioned in params, by default 'added' will be used |
50 | * to fetch the records | |
51 | * | |
cf470720 TO |
52 | * @param array $params |
53 | * Name value pair of contact information. | |
6a488035 | 54 | * |
a6c01b45 | 55 | * @return array |
72b3a70c | 56 | * list of groups, given contact subsribed to |
6a488035 TO |
57 | */ |
58 | function civicrm_api3_group_contact_get($params) { | |
59 | ||
60 | if (empty($params['contact_id'])) { | |
61 | if (empty($params['status'])) { | |
62 | //default to 'Added' | |
63 | $params['status'] = 'Added'; | |
64 | } | |
65 | //ie. id passed in so we have to return something | |
3d700d00 | 66 | return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params); |
6a488035 TO |
67 | } |
68 | $status = CRM_Utils_Array::value('status', $params, 'Added'); | |
69 | ||
49fb4e06 RK |
70 | $groupId = CRM_Utils_Array::value('group_id', $params); |
71 | $values = &CRM_Contact_BAO_GroupContact::getContactGroup($params['contact_id'], $status, NULL, FALSE, TRUE, FALSE, TRUE, $groupId); | |
6a488035 TO |
72 | return civicrm_api3_create_success($values, $params); |
73 | } | |
74 | ||
75 | /** | |
22242c87 EM |
76 | * Add contact(s) to group(s). |
77 | * | |
b081365f CW |
78 | * This api has a legacy/nonstandard signature. |
79 | * On success, the return array will be structured as follows: | |
80 | * @code | |
81 | * array( | |
6a488035 TO |
82 | * "is_error" => 0, |
83 | * "version" => 3, | |
84 | * "count" => 3, | |
85 | * "values" => array( | |
86 | * "not_added" => integer, | |
87 | * "added" => integer, | |
88 | * "total_count" => integer | |
89 | * ) | |
b081365f CW |
90 | * ) |
91 | * @endcode | |
6a488035 | 92 | * |
b081365f CW |
93 | * On failure, the return array will be structured as follows: |
94 | * @code | |
95 | * array( | |
6a488035 TO |
96 | * 'is_error' => 1, |
97 | * 'error_message' = string, | |
98 | * 'error_data' = mixed or undefined | |
b081365f CW |
99 | * ) |
100 | * @endcode | |
101 | * | |
102 | * @param array $params | |
103 | * Input parameters. | |
104 | * - "contact_id" (required) : first contact to add | |
105 | * - "group_id" (required): first group to add contact(s) to | |
106 | * - "contact_id.1" etc. (optional) : another contact to add | |
107 | * - "group_id.1" etc. (optional) : additional group to add contact(s) to | |
108 | * - "status" (optional) : one of "Added", "Pending" or "Removed" (default is "Added") | |
109 | * | |
110 | * @return array | |
111 | * Information about operation results | |
6a488035 TO |
112 | */ |
113 | function civicrm_api3_group_contact_create($params) { | |
3d700d00 CW |
114 | // Nonstandard bao - doesn't accept ID as a param, so convert id to group_id + contact_id |
115 | if (!empty($params['id'])) { | |
116 | $getParams = array('id' => $params['id']); | |
117 | $info = _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $getParams); | |
118 | if (!empty($info['values'][$params['id']])) { | |
119 | $params['group_id'] = $info['values'][$params['id']]['group_id']; | |
120 | $params['contact_id'] = $info['values'][$params['id']]['contact_id']; | |
121 | } | |
122 | } | |
123 | civicrm_api3_verify_mandatory($params, NULL, array('group_id', 'contact_id')); | |
6a488035 TO |
124 | $action = CRM_Utils_Array::value('status', $params, 'Added'); |
125 | return _civicrm_api3_group_contact_common($params, $action); | |
126 | } | |
11e09c59 | 127 | |
6a488035 | 128 | /** |
22242c87 | 129 | * Delete group contact record. |
6a488035 | 130 | * |
72b3a70c | 131 | * @param array $params |
6a488035 | 132 | * |
a6c01b45 | 133 | * @return array |
22242c87 | 134 | * |
e0b82b44 | 135 | * @deprecated |
6a488035 TO |
136 | */ |
137 | function civicrm_api3_group_contact_delete($params) { | |
3d700d00 CW |
138 | $params['status'] = CRM_Utils_Array::value('status', $params, empty($params['skip_undelete']) ? 'Removed' : 'Deleted'); |
139 | // "Deleted" isn't a real option so skip the api wrapper to avoid pseudoconstant validation | |
140 | return civicrm_api3_group_contact_create($params); | |
6a488035 | 141 | } |
11e09c59 TO |
142 | |
143 | /** | |
dc64d047 EM |
144 | * Adjust metadata. |
145 | * | |
d0997921 | 146 | * @param array $params |
6a488035 TO |
147 | */ |
148 | function _civicrm_api3_group_contact_delete_spec(&$params) { | |
149 | // set as not required no either/or std yet | |
150 | $params['id']['api.required'] = 0; | |
151 | } | |
152 | ||
153 | /** | |
d1b0d05e | 154 | * Get pending group contacts. |
6a488035 | 155 | * |
72b3a70c | 156 | * @param array $params |
6a488035 | 157 | * |
72b3a70c | 158 | * @return array|int |
e0b82b44 | 159 | * @deprecated |
6a488035 TO |
160 | */ |
161 | function civicrm_api3_group_contact_pending($params) { | |
162 | $params['status'] = 'Pending'; | |
163 | return civicrm_api('GroupContact', 'Create', $params); | |
164 | } | |
165 | ||
166 | /** | |
dc64d047 | 167 | * Group contact helper function. |
6a488035 | 168 | * |
b081365f CW |
169 | * @todo behaviour is highly non-standard - need to figure out how to make this 'behave' |
170 | * & at the very least return IDs & details of the groups created / changed | |
171 | * | |
6a488035 TO |
172 | * @param array $params |
173 | * @param string $op | |
174 | * | |
5396af74 | 175 | * @return array |
6a488035 TO |
176 | */ |
177 | function _civicrm_api3_group_contact_common($params, $op = 'Added') { | |
178 | ||
179 | $contactIDs = array(); | |
180 | $groupIDs = array(); | |
181 | foreach ($params as $n => $v) { | |
182 | if (substr($n, 0, 10) == 'contact_id') { | |
183 | $contactIDs[] = $v; | |
184 | } | |
185 | elseif (substr($n, 0, 8) == 'group_id') { | |
186 | $groupIDs[] = $v; | |
187 | } | |
188 | } | |
189 | ||
190 | if (empty($contactIDs)) { | |
191 | return civicrm_api3_create_error('contact_id is a required field'); | |
192 | } | |
193 | ||
194 | if (empty($groupIDs)) { | |
195 | return civicrm_api3_create_error('group_id is a required field'); | |
196 | } | |
197 | ||
198 | $method = CRM_Utils_Array::value('method', $params, 'API'); | |
199 | $status = CRM_Utils_Array::value('status', $params, $op); | |
200 | $tracking = CRM_Utils_Array::value('tracking', $params); | |
6a488035 TO |
201 | |
202 | if ($op == 'Added' || $op == 'Pending') { | |
2241036a | 203 | $extraReturnValues = array( |
6a488035 TO |
204 | 'total_count' => 0, |
205 | 'added' => 0, | |
21dfd5f5 | 206 | 'not_added' => 0, |
6a488035 TO |
207 | ); |
208 | foreach ($groupIDs as $groupID) { | |
209 | list($tc, $a, $na) = CRM_Contact_BAO_GroupContact::addContactsToGroup($contactIDs, | |
210 | $groupID, | |
211 | $method, | |
212 | $status, | |
213 | $tracking | |
214 | ); | |
215 | $extraReturnValues['total_count'] += $tc; | |
216 | $extraReturnValues['added'] += $a; | |
217 | $extraReturnValues['not_added'] += $na; | |
218 | } | |
219 | } | |
220 | else { | |
2241036a | 221 | $extraReturnValues = array( |
6a488035 TO |
222 | 'total_count' => 0, |
223 | 'removed' => 0, | |
21dfd5f5 | 224 | 'not_removed' => 0, |
6a488035 TO |
225 | ); |
226 | foreach ($groupIDs as $groupID) { | |
227 | list($tc, $r, $nr) = CRM_Contact_BAO_GroupContact::removeContactsFromGroup($contactIDs, $groupID, $method, $status, $tracking); | |
228 | $extraReturnValues['total_count'] += $tc; | |
229 | $extraReturnValues['removed'] += $r; | |
230 | $extraReturnValues['not_removed'] += $nr; | |
231 | } | |
232 | } | |
5396af74 | 233 | $dao = NULL;// can't pass this by reference |
234 | return civicrm_api3_create_success(1, $params, 'group_contact', 'create', $dao, $extraReturnValues); | |
6a488035 | 235 | } |
11e09c59 TO |
236 | |
237 | /** | |
dc64d047 EM |
238 | * Update group contact status. |
239 | * | |
6a488035 | 240 | * @deprecated - this should be part of create but need to know we aren't missing something |
dc64d047 | 241 | * |
d0997921 | 242 | * @param array $params |
dc64d047 | 243 | * |
645ee340 EM |
244 | * @return bool |
245 | * @throws \API_Exception | |
6a488035 TO |
246 | */ |
247 | function civicrm_api3_group_contact_update_status($params) { | |
248 | ||
249 | civicrm_api3_verify_mandatory($params, NULL, array('contact_id', 'group_id')); | |
250 | ||
c49a2977 CW |
251 | CRM_Contact_BAO_GroupContact::addContactsToGroup( |
252 | array($params['contact_id']), | |
253 | $params['group_id'], | |
254 | CRM_Utils_Array::value('method', $params, 'API'), | |
255 | 'Added', | |
256 | CRM_Utils_Array::value('tracking', $params) | |
257 | ); | |
6a488035 TO |
258 | |
259 | return TRUE; | |
260 | } | |
261 | ||
a14e9d08 | 262 | /** |
dc64d047 EM |
263 | * Deprecated function notices. |
264 | * | |
a14e9d08 | 265 | * @deprecated api notice |
a6c01b45 | 266 | * @return array |
16b10e64 | 267 | * Array of deprecated actions |
a14e9d08 CW |
268 | */ |
269 | function _civicrm_api3_group_contact_deprecation() { | |
270 | return array( | |
271 | 'delete' => 'GroupContact "delete" action is deprecated in favor of "create".', | |
272 | 'pending' => 'GroupContact "pending" action is deprecated in favor of "create".', | |
273 | 'update_status' => 'GroupContact "update_status" action is deprecated in favor of "create".', | |
274 | ); | |
275 | } |