INFRA-132 - Remove @static annotation
[civicrm-core.git] / api / v3 / Relationship.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 * File for the CiviCRM APIv3 relationship functions
30 *
31 * @package CiviCRM_APIv3
32 * @subpackage API_Relationship
33 *
34 * @copyright CiviCRM LLC (c) 2004-2014
35 * @version $Id: Relationship.php 30486 2010-11-02 16:12:09Z shot $
36 *
37 */
38
39 /**
40 * Add or update a relationship
41 *
42 * @param array $params
43 * Input parameters.
44 *
45 * @throws API_Exception
46 * @example RelationshipCreate.php Std Create example
47 *
48 * @return array
49 * API Result Array
50 * {@getfields relationship_create}
51 * @access public
52 */
53 function civicrm_api3_relationship_create($params) {
54 _civicrm_api3_handle_relationship_type($params);
55 return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params, 'Relationship');
56 }
57
58 /**
59 * Adjust Metadata for Create action
60 *
61 * @param array $params
62 * Array or parameters determined by getfields.
63 */
64 function _civicrm_api3_relationship_create_spec(&$params) {
65 $params['contact_id_a']['api.required'] = 1;
66 $params['contact_id_b']['api.required'] = 1;
67 $params['relationship_type_id']['api.required'] = 1;
68 $params['is_active']['api.default'] = 1;
69 }
70
71 /**
72 * Delete a relationship
73 *
74 * @param array $params
75 *
76 * @return array
77 * API Result Array
78 * {@getfields relationship_delete}
79 * @example RelationshipDelete.php Delete Example
80 *
81 * @access public
82 */
83 function civicrm_api3_relationship_delete($params) {
84
85 if (!CRM_Utils_Rule::integer($params['id'])) {
86 return civicrm_api3_create_error('Invalid value for relationship ID');
87 }
88
89 $relationBAO = new CRM_Contact_BAO_Relationship();
90 $relationBAO->id = $params['id'];
91 if (!$relationBAO->find(TRUE)) {
92 return civicrm_api3_create_error('Relationship id is not valid');
93 }
94 else {
95 $relationBAO->del($params['id']);
96 return civicrm_api3_create_success('Deleted relationship successfully');
97 }
98 }
99
100 /**
101 * get the relationship
102 *
103 * @param array $params
104 * Input parameters.
105 * @todo Result is inconsistent depending on whether contact_id is passed in :
106 * - if you pass in contact_id - it just returns all relationships for 'contact_id'
107 * - if you don't pass in contact_id then it does a filter on the relationship table (DAO based search)
108 *
109 * @return Array
110 * API Result Array
111 * {@getfields relationship_get}
112 * @example RelationshipGet.php
113 * @access public
114 */
115 function civicrm_api3_relationship_get($params) {
116 $options = _civicrm_api3_get_options_from_params($params);
117
118 if (empty($params['contact_id'])) {
119 if (!empty($params['membership_type_id']) && empty($params['relationship_type_id'])) {
120 CRM_Contact_BAO_Relationship::membershipTypeToRelationshipTypes($params);
121 }
122 $relationships = _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params, FALSE, 'Relationship');
123 }
124 else {
125 $relationships = CRM_Contact_BAO_Relationship::getRelationship($params['contact_id'],
126 CRM_Utils_Array::value('status_id', $params),
127 0,
128 CRM_Utils_Array::value('is_count', $options),
129 CRM_Utils_Array::value('id', $params),
130 NULL,
131 NULL,
132 FALSE,
133 $params
134 );
135 }
136 //perhaps we should add a 'getcount' but at this stage lets just handle getcount output
137 if ($options['is_count']) {
138 return array('count' => $relationships);
139 }
140 foreach ($relationships as $relationshipId => $values) {
141 _civicrm_api3_custom_data_get($relationships[$relationshipId], 'Relationship', $relationshipId, NULL, CRM_Utils_Array::value('relationship_type_id', $values));
142 }
143 return civicrm_api3_create_success($relationships, $params);
144 }
145
146 /**
147 * legacy handling for relationship_type parameter
148 *
149 * @param array $params
150 * Associative array of property name/value.
151 * pairs to insert in new contact.
152 */
153 function _civicrm_api3_handle_relationship_type(&$params) {
154 if (empty($params['relationship_type_id']) && !empty($params['relationship_type'])) {
155 $relationTypes = CRM_Core_PseudoConstant::relationshipType('name');
156 foreach ($relationTypes as $relationshipTypeId => $relationshipValue) {
157 if (CRM_Utils_Array::key(ucfirst($params['relationship_type']), $relationshipValue)) {
158 $params['relationship_type_id'] = $relationshipTypeId;
159 }
160 }
161 }
162 }