Merge pull request #5380 from colemanw/CRM-15932
[civicrm-core.git] / api / v3 / Address.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 * This api exposes CiviCRM Address records.
30 *
31 * @package CiviCRM_APIv3
32 */
33
34 /**
35 * Add an Address for a contact.
36 *
37 * @param array $params
38 * Array per getfields metadata.
39 *
40 * @return array
41 */
42 function civicrm_api3_address_create(&$params) {
43 /**
44 * If street_parsing, street_address has to be parsed into
45 * separate parts
46 */
47 if (array_key_exists('street_parsing', $params)) {
48 if ($params['street_parsing'] == 1) {
49 if (array_key_exists('street_address', $params)) {
50 if (!empty($params['street_address'])) {
51 $parsedItems = CRM_Core_BAO_Address::parseStreetAddress(
52 $params['street_address']
53 );
54 if (array_key_exists('street_name', $parsedItems)) {
55 $params['street_name'] = $parsedItems['street_name'];
56 }
57 if (array_key_exists('street_unit', $parsedItems)) {
58 $params['street_unit'] = $parsedItems['street_unit'];
59 }
60 if (array_key_exists('street_number', $parsedItems)) {
61 $params['street_number'] = $parsedItems['street_number'];
62 }
63 if (array_key_exists('street_number_suffix', $parsedItems)) {
64 $params['street_number_suffix'] = $parsedItems['street_number_suffix'];
65 }
66 }
67 }
68 }
69 }
70
71 /**
72 * Create array for BAO (expects address params in as an
73 * element in array 'address'
74 */
75 $addressBAO = CRM_Core_BAO_Address::add($params, TRUE);
76 if (empty($addressBAO)) {
77 return civicrm_api3_create_error("Address is not created or updated ");
78 }
79 else {
80 $values = _civicrm_api3_dao_to_array($addressBAO, $params);
81 return civicrm_api3_create_success($values, $params, 'Address', $addressBAO);
82 }
83 }
84
85 /**
86 * Adjust Metadata for Create action.
87 *
88 * @param array $params
89 * Array of parameters determined by getfields.
90 */
91 function _civicrm_api3_address_create_spec(&$params) {
92 $params['location_type_id']['api.required'] = 1;
93 $params['contact_id']['api.required'] = 1;
94 $params['street_parsing'] = array('title' => 'optional param to indicate you want the street_address field parsed into individual params');
95 $params['world_region'] = array(
96 'title' => ts('World Region'),
97 'name' => 'world_region',
98 'type' => CRM_Utils_Type::T_TEXT,
99 );
100 }
101 /**
102 * Adjust Metadata for Get action.
103 *
104 * @param array $params
105 * Array of parameters determined by getfields.
106 */
107 function _civicrm_api3_address_get_spec(&$params) {
108 $params['world_region'] = array(
109 'title' => ts('World Region'),
110 'name' => 'world_region',
111 'type' => CRM_Utils_Type::T_TEXT,
112 );
113 }
114
115 /**
116 * Delete an existing Address.
117 *
118 * @param array $params
119 * Array per getfields metadata.
120 *
121 * @return array
122 * api result array
123 */
124 function civicrm_api3_address_delete($params) {
125 return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);
126 }
127
128 /**
129 * Retrieve one or more addresses.
130 *
131 * @param array $params
132 * Array per getfields metadata.
133 *
134 * @return array
135 * details of found addresses else error
136 */
137 function civicrm_api3_address_get(&$params) {
138 return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params, TRUE, 'Address');
139 }