-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathStampsSWS.php
More file actions
402 lines (338 loc) · 9.27 KB
/
StampsSWS.php
File metadata and controls
402 lines (338 loc) · 9.27 KB
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
<?php
/**
* Class to get and process Stamps.com postage, labels, etc. via the Stamps API
**/
class StampsSWS
{
// private $callURL = "https://swsim.testing.stamps.com/swsim/SwsimV34.asmx";
public function __construct()
{
DEV_SERVER ?
$this->server = "https://swsim.testing.stamps.com/swsim/swsimv34.asmx?wsdl" : // Staging
$this->server = "https://swsim.stamps.com/swsim/swsimv34.asmx?wsdl" ; // Production
try
{
$this->client = new SoapClient($this->server);
}
catch (SoapFault $error)
{
trigger_error("Could not create SOAP client.". $error, E_USER_WARNING);
$this->message = $error->faultstring; // "Could not create SOAP client.";
return false;
}
}
public function authenticate($fullReturnString = false)
{
$this->checkClient();
try
{
$response = $this->client->AuthenticateUser( array('Credentials' => $this->credentials) );
if ($fullReturnString)
return $response;
$auth = $response->Authenticator;
return $auth;
}
catch (SoapFault $error)
{
trigger_error("Could not authenticate user.". $error, E_USER_WARNING);
$this->message = $error->faultstring; //"Could not authenticate user.";
return false;
}
}
public function cleanAddress($fullReturnString = false)
{
$this->checkClient();
try
{
$response = $this->client->CleanseAddress(array(
'Authenticator' => $this->authenticate(),
'Address' => $this->address
));
// TODO: international?
if ($fullReturnString)
return $response;
if ($response->AddressMatch && $response->CityStateZipOK)
{
unset($this->address);
$this->address = $response->Address;
$this->CleanseHash = $response->CleanseHash;
$this->OverrideHash = $response->OverrideHash;
return true;
}
else if (!$response->AddressMatch && $response->CityStateZipOK)
{
unset($this->address);
$this->address = $response->Address;
$this->OverrideHash = $response->Address->OverrideHash;
$this->message = "City, State, and ZIP Code are correct but that the street address was not found. Would you like to override this message?";
return false;
}
else
{
$this->message = "This address cannot be shipped to. City, state, and ZIP Code are invalid.";
return false;
}
}
catch (SoapFault $error)
{
trigger_error("Could not clean address.". $error, E_USER_WARNING);
$this->message = $error->faultstring; //"Could not clean address.";
return false;
}
}
public function getRates($serviceType = null, $fullReturnString = false)
{
$this->checkClient();
try
{
$response = $this->client->GetRates(array(
'Authenticator' => $this->authenticate(),
'Rate' => $this->rateInfo
));
if ($fullReturnString)
return $response;
unset($this->rates);
$this->rates = $response->Rates;
if (isset($serviceType))
return $this->getRateByType($serviceType);
return $response->Rates;
}
catch (SoapFault $error)
{
trigger_error("Could not get rates.". $error, E_USER_WARNING);
$this->message = $error->faultstring; // "Could not get rates."
return false;
}
}
public function getRateByType($serviceType)
{
if (!isset($this->rates))
{
$this->message = "Could not get type - Rates are not yet set.";
return false;
}
foreach ($this->rates->Rate as $rate)
{
if ($rate->ServiceType == $serviceType)
{
return $rate;
}
}
// If you're here it means there were no rates for $serviceType
$this->message = "There were no rates for your selected service type: \"".$serviceType."\"";
return false;
}
public function setAddOns()
{
if (!isset($this->rate))
{
$this->message = "Could not get add-ons - Rate has not been set.";
return false;
}
if (!isset($this->rate->AddOns->AddOnV5))
{
trigger_error("AddOnV5 is missing from Stamps.com rate object!!!", E_USER_WARNING);
$this->message = "Could not get add-ons - information was missing.";
return false;
}
$selectedAddOns = func_get_args();
if (count($selectedAddOns) > 0)
{
foreach ($this->rate->AddOns->AddOnV5 as $k => $addon)
{
if (in_array($addon->AddOnType, $selectedAddOns))
{
if (empty($addon->Amount))
{
$addons[] = array(
'AddOnType' => $addon->AddOnType
);
}
else
{
$addons[] = array(
'Amount' => $addon->Amount,
'AddOnType' => $addon->AddOnType
);
}
}
}
}
unset($this->rate->AddOns->AddOnV5);
$this->rate->AddOns->AddOnV5 = $addons;
if (!isset($addons))
{
$this->message = "Could not set add-ons because selected addons were not available.";
return false;
}
else
{
return true;
}
}
public function createShipment($fullReturnString = false)
{
$this->checkClient();
try
{
$response = $this->client->CreateIndicium(array(
'Authenticator' => $this->authenticate(),
'IntegratorTxID'=> $this->transactionID,
'Rate' => $this->rate,
'From' => $this->from,
'To' => $this->address,
'ImageType' => 'Pdf',
'PaperSize' => 'LabelSize'
));
if ($fullReturnString)
return $response;
unset($this->rates);
$this->rates = $response->Rates;
if (isset($serviceType))
return $this->getRateByType($serviceType);
unset($response->Authenticator); // Removing this for SEC
return $response;
}
catch (SoapFault $error)
{
trigger_error("Could not create shipment.". $error, E_USER_WARNING);
$this->message = $error->faultstring; //"Could not create shipment. If this problem persists please contact an administrator.";
return false;
}
}
public function cancelShipment($stampsTxID, $fullReturnString = false)
{
$this->checkClient();
try
{
$response = $this->client->CancelIndicium(array(
'Authenticator' => $this->authenticate(),
'StampsTxID' => $stampsTxID
));
if ($fullReturnString)
return $response;
if ($response->Authenticator)
return true;
}
catch (SoapFault $error)
{
trigger_error("Could not cancel shipment.". $error, E_USER_WARNING);
$this->message = $error->faultstring; //"Could not cancel shipment."
return false;
}
}
public function trackShipment($trackingNumber, $fullReturnString = false)
{
$this->checkClient();
try
{
$response = $this->client->TrackShipment(array(
'Authenticator' => $this->authenticate(),
'TrackingNumber'=> $trackingNumber
));
if ($fullReturnString)
return $response;
return $response->TrackingEvents;
}
catch (SoapFault $error)
{
trigger_error("Could not get shipment tracking info.". $error, E_USER_WARNING);
$this->message = $error->faultstring; //"Could not get shipment tracing info.";
return false;
}
}
public function getAccountInfo($fullReturnString = false)
{
$this->checkClient();
try
{
$response = $this->client->getAccountInfo(array(
'Authenticator' => $this->authenticate()
));
if ($fullReturnString)
return $response;
return $response->AccountInfo;
}
catch (SoapFault $error)
{
trigger_error("Could not get account info.". $error, E_USER_WARNING);
$this->message = $error->faultstring; //"Could not get account info.";
return false;
}
}
public function purchasePostage($amount, $fullReturnString = false)
{
// TODO: test or limit purchase amount?
try
{
if (!$controlTotal = $this->getAccountInfo()->PostageBalance->ControlTotal)
{
return false;
}
$response = $this->client->PurchasePostage(array(
'Authenticator' => $this->authenticate(),
'PurchaseAmount'=> $amount,
'ControlTotal' => $controlTotal
));
if ($fullReturnString)
return $response;
unset($response->Authenticator); // Removing this for SEC
return $response;
}
catch (SoapFault $error)
{
trigger_error("Could not get purchase postage.". $error, E_USER_WARNING);
$this->message = $error->faultstring;// "Could not purchase postage.";
return false;
}
}
public function purchasePostageStatus($transactionID, $fullReturnString = false)
{
try
{
$controlTotal = $this->getAccountInfo()->PostageBalance->ControlTotal;
$response = $this->client->GetPurchaseStatus(array(
'Authenticator' => $this->authenticate(),
'TransactionID' => $transactionID,
));
if ($fullReturnString)
return $response;
unset($response->Authenticator); // Removing this for SEC
return $response;
}
catch (SoapFault $error)
{
trigger_error("Could not get purchase status.". $error, E_USER_WARNING);
$this->message = $error->faultstring; //"Could not get purchase status.";
return false;
}
}
// Utility functions
public function getMessage()
{
$msg = $this->message;
unset($this->message);
return $msg;
}
// Getter/Setter Magic
public function __get($name)
{
// echo "GETTING: " . $this->$name . "<br>";
return $this->$name;
}
public function __set($name, $val)
{
// echo "SETTING: " . $name . " - " . $val . "<br>";
$this->$name = $val;
}
////////////////////////////
protected function checkClient()
{
if (!isset($this->client))
{
trigger_error("Cannot authenticate user - SoapClient is not set.", E_USER_WARNING);
$this->message = "Cannot authenticate user - SoapClient is not set.";
exit;
}
}
}