forked from VinceG/USPS-php-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
USPSPriorityLabel.php
224 lines (205 loc) · 5.91 KB
/
USPSPriorityLabel.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<?php
/**
* Load required classes
*/
require_once('USPSBase.php');
/**
*/
class USPSPriorityLabel extends USPSBase {
/**
* @var string - the api version used for this type of call
*/
protected $apiVersion = 'ExpressMailLabel';
/**
* @var array - route added so far.
*/
protected $fields = array();
/**
* Perform the API call.
* @return string
*/
public function createLabel() {
// Add missing required
$this->addMissingRequired();
// Sort them
// Hack by the only way this will work properly
// since usps wants the tags to be in
// a certain order
ksort($this->fields, SORT_NUMERIC);
// remove the \d. from the key
foreach($this->fields as $key => $value) {
$newKey = str_replace('.', '', $key);
$newKey = preg_replace('/\d+\:/', '', $newKey);
unset($this->fields[$key]);
$this->fields[$newKey] = $value;
}
return $this->doRequest();
}
/**
* Return the USPS confirmation/tracking number if we have one
* @return string|bool
*/
public function getConfirmationNumber() {
$response = $this->getArrayResponse();
// Check to make sure we have it
if(isset($response[$this->getResponseApiName()])) {
if(isset($response[$this->getResponseApiName()]['EMConfirmationNumber'])) {
return $response[$this->getResponseApiName()]['EMConfirmationNumber'];
}
}
return false;
}
/**
* Return the USPS label as a base64 encoded string
* @return string|bool
*/
public function getLabelContents() {
$response = $this->getArrayResponse();
// Check to make sure we have it
if(isset($response[$this->getResponseApiName()])) {
if(isset($response[$this->getResponseApiName()]['EMLabel'])) {
return $response[$this->getResponseApiName()]['EMLabel'];
}
}
return false;
}
/**
* Return the USPS receipt as a base64 encoded string
* @return string|bool
*/
public function getReceiptContents() {
$response = $this->getArrayResponse();
// Check to make sure we have it
if(isset($response[$this->getResponseApiName()])) {
if(isset($response[$this->getResponseApiName()]['EMReceipt'])) {
return $response[$this->getResponseApiName()]['EMReceipt'];
}
}
return false;
}
/**
* returns array of all fields added
* @return array
*/
public function getPostFields() {
return $this->fields;
}
/**
* Set the from address
* @param string $firstName
* @param string $lastName
* @param string $company
* @param string $address
* @param string $city
* @param string $state
* @param string $zip
* @param string $address2
* @param string $zip4
* @param string $phone
* @return object
*/
public function setFromAddress($firstName, $lastName, $company, $address, $city, $state, $zip, $address2=null, $zip4=null, $phone=null) {
$this->setField(5, 'FromFirstName', $firstName);
$this->setField(6, 'FromLastName', $lastName);
$this->setField(7, 'FromFirm', $company);
$this->setField(8, 'FromAddress1', $address2);
$this->setField(9, 'FromAddress2', $address);
$this->setField(10, 'FromCity', $city);
$this->setField(11, 'FromState', $state);
$this->setField(12, 'FromZip5', $zip);
$this->setField(13, 'FromZip4', $zip4);
$this->setField(14, 'FromPhone', $phone);
return $this;
}
/**
* Set the to address
* @param string $firstName
* @param string $lastName
* @param string $company
* @param string $address
* @param string $city
* @param string $state
* @param string $zip
* @param string $address2
* @param string $zip4
* @param string $phone
* @return object
*/
public function setToAddress($firstName, $lastName, $company, $address, $city, $state, $zip, $address2=null, $zip4=null, $phone=null) {
$this->setField(15, 'ToFirstName', $firstName);
$this->setField(16, 'ToLastName', $lastName);
$this->setField(17, 'ToFirm', $company);
$this->setField(18, 'ToAddress1', $address2);
$this->setField(19, 'ToAddress2', $address);
$this->setField(20, 'ToCity', $city);
$this->setField(21, 'ToState', $state);
$this->setField(22, 'ToZip5', $zip);
$this->setField(23, 'ToZip4', $zip4);
$this->setField(24, 'ToPhone', $phone);
return $this;
}
/**
* Set package weight in ounces
*
*/
public function setWeightOunces($weight) {
$this->setField(25, 'WeightInOunces', $weight);
return $this;
}
/**
* Set any other requried string make sure you set the correct position as well
* as the position of the items matters
* @param int $position
* @param string $key
* @param string $value
* @return object
*/
public function setField($position, $key, $value) {
$this->fields[$position . ':' . $key] = $value;
return $this;
}
/**
* Add missing required elements
* @return void
*/
protected function addMissingRequired() {
$required = array(
'1:Option' => '',
'1.1:Revision' => '2',
'2:EMCAAccount' => '',
'3:EMCAPassword' => '',
'4:ImageParameters' => '',
'26:FlatRate' => '',
'27:SundayHolidayDelivery' => '',
'28:StandardizeAddress' => '',
'29:WaiverOfSignature' => '',
'30:NoHoliday' => '',
'31:NoWeekend' => '',
'32:SeparateReceiptPage' => '',
'33:POZipCode' => '',
'34:FacilityType' => 'DDU',
'35:ImageType' => 'PDF',
'36:LabelDate' => '',
'37:CustomerRefNo' => '',
'38:SenderName' => '',
'39:SenderEMail' => '',
'40:RecipientName' => '',
'41:RecipientEMail' => '',
'42:HoldForManifest' => '',
'43:CommercialPrice' => 'false',
'44:InsuredAmount' => '',
'45:Container' => 'FLAT RATE ENVELOPE',
'46:Size' => 'REGULAR',
'47:Width' => '',
'48:Length' => '',
'49:Height' => '',
'50:Girth' => '',
);
foreach($required as $item => $value) {
$explode = explode(':', $item);
if(!isset($this->fields[$item])) {
$this->setField($explode[0], $explode[1], $value);
}
}
}
}