Merge pull request #3679 from yashodha/CRM-14951
[civicrm-core.git] / api / v3 / Relationship.php
1 <?php
2
3 /*
4 +--------------------------------------------------------------------+
5 | CiviCRM version 4.5 |
6 +--------------------------------------------------------------------+
7 | Copyright CiviCRM LLC (c) 2004-2014 |
8 +--------------------------------------------------------------------+
9 | This file is a part of CiviCRM. |
10 | |
11 | CiviCRM is free software; you can copy, modify, and distribute it |
12 | under the terms of the GNU Affero General Public License |
13 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
14 | |
15 | CiviCRM is distributed in the hope that it will be useful, but |
16 | WITHOUT ANY WARRANTY; without even the implied warranty of |
17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
18 | See the GNU Affero General Public License for more details. |
19 | |
20 | You should have received a copy of the GNU Affero General Public |
21 | License and the CiviCRM Licensing Exception along |
22 | with this program; if not, contact CiviCRM LLC |
23 | at info[AT]civicrm[DOT]org. If you have questions about the |
24 | GNU Affero General Public License or the licensing of CiviCRM, |
25 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
26 +--------------------------------------------------------------------+
27 */
28
29 /**
30 * File for the CiviCRM APIv3 relationship functions
31 *
32 * @package CiviCRM_APIv3
33 * @subpackage API_Relationship
34 *
35 * @copyright CiviCRM LLC (c) 2004-2014
36 * @version $Id: Relationship.php 30486 2010-11-02 16:12:09Z shot $
37 *
38 */
39
40 /**
41 * Add or update a relationship
42 *
43 * @param array $params input parameters
44 *
45 * @throws API_Exception
46 * @example RelationshipCreate.php Std Create example
47 *
48 * @return array API Result Array
49 * {@getfields relationship_create}
50 * @static void
51 * @access public
52 */
53 function civicrm_api3_relationship_create($params) {
54
55 $values = array();
56 _civicrm_api3_relationship_format_params($params, $values);
57 $ids = array();
58
59 if (!empty($params['id'])) {
60 $ids['contactTarget'] = $values['contact_id_b'];
61 }
62
63 $values['relationship_type_id'] = $values['relationship_type_id'] . '_a_b';
64 if(!empty($params['contact_id_b'])){
65 $values['contact_check'] = array($params['contact_id_b'] => $params['contact_id_b']);
66 }
67 if(!empty($values['contact_id_a'])){
68 $ids['contact'] = $values['contact_id_a'];
69 }
70 $relationshipBAO = CRM_Contact_BAO_Relationship::create($values, $ids);
71
72 if ($relationshipBAO[1]) {
73 throw new API_Exception('Relationship is not valid');
74 }
75 elseif ($relationshipBAO[2]) {
76 throw new API_Exception('Relationship already exists');
77 }
78 $id = $relationshipBAO[4][0];
79 $values = array();
80 _civicrm_api3_object_to_array($relationshipBAO[5][$id], $values[$id]);
81 return civicrm_api3_create_success($values, $params, 'relationship', 'create');
82 }
83
84 /**
85 * Adjust Metadata for Create action
86 *
87 * @param array $params array or parameters determined by getfields
88 */
89 function _civicrm_api3_relationship_create_spec(&$params) {
90 $params['contact_id_a']['api.required'] = 1;
91 $params['contact_id_b']['api.required'] = 1;
92 $params['relationship_type_id']['api.required'] = 1;
93 $params['is_active']['api.default'] = 1;
94 }
95
96 /**
97 * Delete a relationship
98 *
99 * @param array $params
100 *
101 * @return array API Result Array
102 * {@getfields relationship_delete}
103 * @example RelationshipDelete.php Delete Example
104 *
105 * @static void
106 * @access public
107 */
108 function civicrm_api3_relationship_delete($params) {
109
110 if (!CRM_Utils_Rule::integer($params['id'])) {
111 return civicrm_api3_create_error('Invalid value for relationship ID');
112 }
113
114 $relationBAO = new CRM_Contact_BAO_Relationship();
115 $relationBAO->id = $params['id'];
116 if (!$relationBAO->find(TRUE)) {
117 return civicrm_api3_create_error('Relationship id is not valid');
118 }
119 else {
120 $relationBAO->del($params['id']);
121 return civicrm_api3_create_success('Deleted relationship successfully');
122 }
123 }
124
125 /**
126 * Function to get the relationship
127 *
128 * @param array $params input parameters.
129 * @todo Result is inconsistent depending on whether contact_id is passed in :
130 * - if you pass in contact_id - it just returns all relationships for 'contact_id'
131 * - if you don't pass in contact_id then it does a filter on the relationship table (DAO based search)
132 *
133 * @return Array API Result Array
134 * {@getfields relationship_get}
135 * @example RelationshipGet.php
136 * @access public
137 */
138 function civicrm_api3_relationship_get($params) {
139 $options = _civicrm_api3_get_options_from_params($params);
140
141 if (empty($params['contact_id'])) {
142 if(!empty($params['membership_type_id']) && empty($params['relationship_type_id'])) {
143 CRM_Contact_BAO_Relationship::membershipTypeToRelationshipTypes($params);
144 }
145 $relationships = _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params, FALSE);
146 }
147 else {
148 $relationships = array();
149 $relationships = CRM_Contact_BAO_Relationship::getRelationship($params['contact_id'],
150 CRM_Utils_Array::value('status_id', $params),
151 0,
152 CRM_Utils_Array::value('is_count', $options),
153 CRM_Utils_Array::value('id', $params),
154 NULL,
155 NULL,
156 FALSE,
157 $params
158 );
159 }
160 //perhaps we should add a 'getcount' but at this stage lets just handle getcount output
161 if($options['is_count']) {
162 return array('count' => $relationships);
163 }
164 foreach ($relationships as $relationshipId => $values) {
165 _civicrm_api3_custom_data_get($relationships[$relationshipId], 'Relationship', $relationshipId, NULL, CRM_Utils_Array::value('relationship_type_id',$values));
166 }
167 return civicrm_api3_create_success($relationships, $params);
168 }
169
170 /**
171 * take the input parameter list as specified in the data model and
172 * convert it into the same format that we use in QF and BAO object
173 *
174 * @param array $params Associative array of property name/value
175 * pairs to insert in new contact.
176 * @param array $values The reformatted properties that we can use internally
177 * '
178 *
179 * @throws Exception
180 * @return array|CRM_Error
181 * @access public
182 */
183 function _civicrm_api3_relationship_format_params($params, &$values) {
184 // copy all the relationship fields as is
185
186 $fields = CRM_Contact_DAO_Relationship::fields();
187 _civicrm_api3_store_values($fields, $params, $values);
188
189 $relationTypes = CRM_Core_PseudoConstant::relationshipType('name');
190 if (!empty($params['id'])) {
191 $relation = new CRM_Contact_BAO_Relationship();
192 $relation->id = $params['id'];
193 if (!$relation->find(TRUE)) {
194 throw new Exception('Relationship id is not valid');
195 }
196 else {
197 if ((isset($params['contact_id_a']) && $params['contact_id_a'] != $relation->contact_id_a) ||
198 (isset($params['contact_id_b']) && $params['contact_id_b'] != $relation->contact_id_b)
199 ) {
200 throw new Exception('Cannot change the contacts once relationship has been created');
201 }
202 else {
203 // since the BAO function is not std & won't accept just 'id' (aargh) let's
204 // at least return our BAO here
205 $values = array();
206 _civicrm_api3_object_to_array($relation, $values);
207 $values = array_merge($values, $params);
208 // and we need to reformat our date fields....
209 $dateFields = array('start_date', 'end_date');
210 foreach ($dateFields as $dateField){
211 $values[$dateField] = CRM_Utils_Date::processDate($values[$dateField]);
212 }
213 }
214 }
215 }
216
217 foreach ($params as $key => $value) {
218 // ignore empty values or empty arrays etc
219 if (CRM_Utils_System::isNull($value)) {
220 continue;
221 }
222
223 switch ($key) {
224 case 'contact_id_a':
225 case 'contact_id_b':
226 if (!CRM_Utils_Rule::integer($value)) {
227 throw new Exception("contact_id not valid: $value");
228 }
229 $dao = new CRM_Core_DAO();
230 $qParams = array();
231 $svq = $dao->singleValueQuery("SELECT id FROM civicrm_contact WHERE id = $value",
232 $qParams
233 );
234 if (!$svq) {
235 throw new Exception("Invalid Contact ID: There is no contact record with contact_id = $value.");
236 }
237 break;
238
239 case 'relationship_type':
240 foreach ($relationTypes as $relTypId => $relValue) {
241 if (CRM_Utils_Array::key(ucfirst($value), $relValue)) {
242 $relationshipTypeId = $relTypId;
243 break;
244 }
245 }
246
247 if ($relationshipTypeId) {
248 if (!empty($values['relationship_type_id']) &&
249 $relationshipTypeId != $values['relationship_type_id']
250 ) {
251 throw new Exception('Mismatched Relationship Type and Relationship Type Id');
252 }
253 $values['relationship_type_id'] = $params['relationship_type_id'] = $relationshipTypeId;
254 }
255 else {
256 throw new Exception('Invalid Relationship Type');
257 }
258 case 'relationship_type_id':
259 if ($key == 'relationship_type_id' && !array_key_exists($value, $relationTypes)) {
260 throw new Exception("$key not a valid: $value");
261 }
262
263 // execute for both relationship_type and relationship_type_id
264 $relation = $relationTypes[$params['relationship_type_id']];
265 if (!empty($params['contact_id_a']) && $relation['contact_type_a'] &&
266 $relation['contact_type_a'] != CRM_Contact_BAO_Contact::getContactType($params['contact_id_a'])
267 ) {
268 throw new Exception("Contact ID :{$params['contact_id_a']} is not of contact type {$relation['contact_type_a']}");
269 }
270 if (!empty($params['contact_id_b']) && $relation['contact_type_b'] &&
271 $relation['contact_type_b'] != CRM_Contact_BAO_Contact::getContactType($params['contact_id_b'])
272 ) {
273 throw new Exception("Contact ID :{$params['contact_id_b']} is not of contact type {$relation['contact_type_b']}");
274 }
275 break;
276
277 default:
278 break;
279 }
280 }
281
282 if (array_key_exists('note', $params)) {
283 $values['note'] = $params['note'];
284 }
285 _civicrm_api3_custom_format_params($params, $values, 'Relationship');
286
287 return array();
288 }