Ian province abbreviation patch - issue 724
[civicrm-core.git] / CRM / Utils / Address / USPS.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * Address utilties
38 */
39class CRM_Utils_Address_USPS {
40
5bc392e6
EM
41 /**
42 * @param $values
43 *
44 * @return bool
45 */
00be9182 46 public static function checkAddress(&$values) {
6a488035
TO
47 if (!isset($values['street_address']) ||
48 (!isset($values['city']) &&
49 !isset($values['state_province']) &&
50 !isset($values['postal_code'])
51 )
52 ) {
53 return FALSE;
54 }
55
6a488035
TO
56 $userID = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::ADDRESS_STANDARDIZATION_PREFERENCES_NAME,
57 'address_standardization_userid'
58 );
59 $url = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::ADDRESS_STANDARDIZATION_PREFERENCES_NAME,
60 'address_standardization_url'
61 );
62
63 if (empty($userID) ||
64 empty($url)
65 ) {
66 return FALSE;
67 }
68
69 $address2 = str_replace(',', '', $values['street_address']);
70
71 $XMLQuery = '<AddressValidateRequest USERID="' . $userID . '"><Address ID="0"><Address1>' . CRM_Utils_Array::value('supplemental_address_1', $values, '') . '</Address1><Address2>' . $address2 . '</Address2><City>' . $values['city'] . '</City><State>' . $values['state_province'] . '</State><Zip5>' . $values['postal_code'] . '</Zip5><Zip4>' . CRM_Utils_Array::value('postal_code_suffix', $values, '') . '</Zip4></Address></AddressValidateRequest>';
72
73 require_once 'HTTP/Request.php';
74 $request = new HTTP_Request();
75
76 $request->setURL($url);
77
78 $request->addQueryString('API', 'Verify');
79 $request->addQueryString('XML', $XMLQuery);
80
81 $response = $request->sendRequest();
82
83 $session = CRM_Core_Session::singleton();
84
85 $code = $request->getResponseCode();
86 if ($code != 200) {
87 $session->setStatus(ts('USPS Address Lookup Failed with HTTP status code: %1',
353ffa53
TO
88 array(1 => $code)
89 ));
6a488035
TO
90 return FALSE;
91 }
92
93 $responseBody = $request->getResponseBody();
94
95 $xml = simplexml_load_string($responseBody);
96
97 if (is_null($xml) || is_null($xml->Address)) {
98 $session->setStatus(ts('Your USPS API Lookup has Failed.'));
99 return FALSE;
100 }
101
102 if ($xml->Number == '80040b1a') {
103 $session->setStatus(ts('Your USPS API Authorization has Failed.'));
104 return FALSE;
105 }
106
107 if (array_key_exists('Error', $xml->Address)) {
108 $session->setStatus(ts('Address not found in USPS database.'));
109 return FALSE;
110 }
111
e7292422
TO
112 $values['street_address'] = (string) $xml->Address->Address2;
113 $values['city'] = (string) $xml->Address->City;
114 $values['state_province'] = (string) $xml->Address->State;
115 $values['postal_code'] = (string) $xml->Address->Zip5;
116 $values['postal_code_suffix'] = (string) $xml->Address->Zip4;
6a488035
TO
117
118 if (array_key_exists('Address1', $xml->Address)) {
e7292422 119 $values['supplemental_address_1'] = (string) $xml->Address->Address1;
6a488035
TO
120 }
121
122 return TRUE;
123 }
96025800 124
6a488035 125}