427ec60c94d9e646ca278e8346b200ad60f9fe4d
[civicrm-core.git] / CRM / Utils / Geocode / Yahoo.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2017 |
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 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2017
32 */
33
34 /**
35 * Class that uses Yahoo! PlaceFinder API to retrieve the lat/long of an address
36 * Documentation is at http://developer.yahoo.com/geo/placefinder/
37 */
38 class CRM_Utils_Geocode_Yahoo {
39
40 /**
41 * Server to retrieve the lat/long
42 *
43 * @var string
44 */
45 static protected $_server = 'query.yahooapis.com';
46
47 /**
48 * Uri of service.
49 *
50 * @var string
51 */
52 static protected $_uri = '/v1/public/yql';
53
54 /**
55 * Function that takes an address array and gets the latitude / longitude
56 * and postal code for this address. Note that at a later stage, we could
57 * make this function also clean up the address into a more valid format
58 *
59 * @param array $values
60 * Associative array of address data: country, street_address, city, state_province, postal code.
61 * @param bool $stateName
62 * This parameter currently has no function.
63 *
64 * @return bool
65 * true if we modified the address, false otherwise
66 */
67 public static function format(&$values, $stateName = FALSE) {
68 CRM_Utils_System::checkPHPVersion(5, TRUE);
69
70 $config = CRM_Core_Config::singleton();
71
72 $whereComponents = array();
73
74 if (!empty($values['street_address'])) {
75 $whereComponents['street'] = $values['street_address'];
76 }
77
78 if ($city = CRM_Utils_Array::value('city', $values)) {
79 $whereComponents['city'] = $city;
80 }
81
82 if (!empty($values['state_province']) || (!empty($values['state_province_id']) && $values['state_province_id'] != 'null')) {
83 if (!empty($values['state_province_id'])) {
84 $stateProvince = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_StateProvince', $values['state_province_id']);
85 }
86 else {
87 if (!$stateName) {
88 $stateProvince = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_StateProvince',
89 $values['state_province'],
90 'name',
91 'abbreviation'
92 );
93 }
94 else {
95 $stateProvince = $values['state_province'];
96 }
97 }
98
99 // dont add state twice if replicated in city (happens in NZ and other countries, CRM-2632)
100 if ($stateProvince != $city) {
101 $whereComponents['state'] = $stateProvince;
102 }
103 }
104
105 if (!empty($values['postal_code'])) {
106 $whereComponents['postal'] = $values['postal_code'];
107 }
108
109 if (!empty($values['country'])) {
110 $whereComponents['country'] = $values['country'];
111 }
112
113 foreach ($whereComponents as $componentName => $componentValue) {
114 $whereComponents[$componentName] = urlencode("$componentName=\"$componentValue\"");
115 }
116
117 $add = 'q=' . urlencode('select * from geo.placefinder where ');
118
119 $add .= implode(urlencode(' and '), $whereComponents);
120
121 $add .= "&appid=" . urlencode($config->mapAPIKey);
122
123 $query = 'http://' . self::$_server . self::$_uri . '?' . $add;
124
125 require_once 'HTTP/Request.php';
126 $request = new HTTP_Request($query);
127 $request->sendRequest();
128 $string = $request->getResponseBody();
129 // see CRM-11359 for why we suppress errors with @
130 $xml = @simplexml_load_string($string);
131 CRM_Utils_Hook::geocoderFormat('Yahoo', $values, $xml);
132
133 if ($xml === FALSE) {
134 // account blocked maybe?
135 CRM_Core_Error::debug_var('Geocoding failed. Message from Yahoo:', $string);
136 return FALSE;
137 }
138
139 if ($xml->getName() == 'error') {
140 CRM_Core_Error::debug_var('query', $query);
141 CRM_Core_Error::debug_log_message('Geocoding failed. Message from Yahoo: ' . (string) $xml->description);
142 return FALSE;
143 }
144
145 if (is_a($xml->results->Result, 'SimpleXMLElement')) {
146 $result = array();
147 $result = get_object_vars($xml->results->Result);
148 foreach ($result as $key => $val) {
149 if (is_scalar($val) &&
150 strlen($val)
151 ) {
152 $ret[(string) $key] = (string) $val;
153 }
154 }
155
156 $values['geo_code_1'] = $ret['latitude'];
157 $values['geo_code_2'] = $ret['longitude'];
158
159 if (!empty($ret['postal'])) {
160 $current_pc = CRM_Utils_Array::value('postal_code', $values);
161 $skip_postal = FALSE;
162
163 if ($current_pc) {
164 $current_pc_suffix = CRM_Utils_Array::value('postal_code_suffix', $values);
165 $current_pc_complete = $current_pc . $current_pc_suffix;
166 $new_pc_complete = preg_replace("/[+-]/", '', $ret['postal']);
167
168 // if a postal code was already entered, don't change it, except to make it more precise
169 if (strpos($new_pc_complete, $current_pc_complete) !== 0) {
170 // Don't bother anonymous users with the message - they can't change a form they just submitted anyway
171 if (CRM_Utils_System::isUserLoggedIn()) {
172 $msg = ts('The Yahoo Geocoding system returned a different postal code (%1) than the one you entered (%2). If you want the Yahoo value, please delete the current postal code and save again.', array(
173 1 => $ret['postal'],
174 2 => $current_pc_suffix ? "$current_pc-$current_pc_suffix" : $current_pc,
175 ));
176
177 CRM_Core_Session::setStatus($msg, ts('Postal Code Mismatch'), 'error');
178 }
179 $skip_postal = TRUE;
180 }
181 }
182
183 if (!$skip_postal) {
184 $values['postal_code'] = $ret['postal'];
185
186 /* the following logic to split the string was borrowed from
187 CRM/Core/BAO/Address.php -- CRM_Core_BAO_Address::fixAddress.
188 This is actually the function that calls the geocoding
189 script to begin with, but the postal code business takes
190 place before geocoding gets called.
191 */
192
193 if (preg_match('/^(\d{4,5})[+-](\d{4})$/',
194 $ret['postal'],
195 $match
196 )
197 ) {
198 $values['postal_code'] = $match[1];
199 $values['postal_code_suffix'] = $match[2];
200 }
201 }
202 }
203 return TRUE;
204 }
205
206 // reset the geo code values if we did not get any good values
207 $values['geo_code_1'] = $values['geo_code_2'] = 'null';
208 return FALSE;
209 }
210
211 }