-
Notifications
You must be signed in to change notification settings - Fork 22
/
ups.py
462 lines (385 loc) · 21.4 KB
/
ups.py
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
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
import logging
logger = logging.getLogger(__name__)
logging.basicConfig(level=logging.INFO)
import os
import suds
from suds.client import Client
from suds.sax.element import Element
import urllib
import urlparse
import base64
from datetime import date
try:
from pysimplesoap.client import SoapClient
except:
# Just make anything since it's not being used
class SoapClient(object):
pass
from shipping import Address
SERVICES = [
('03', 'UPS Ground'),
('11', 'UPS Standard'),
('01', 'UPS Next Day'),
('14', 'UPS Next Day AM'),
('13', 'UPS Next Day Air Saver'),
('02', 'UPS 2nd Day'),
('59', 'UPS 2nd Day AM'),
('12', 'UPS 3-day Select'),
('65', 'UPS Saver'),
('07', 'UPS Worldwide Express'),
('08', 'UPS Worldwide Expedited'),
('54', 'UPS Worldwide Express Plus'),
('96', 'UPS Worldwide Express Freight'),
]
PACKAGES = [
('02', 'Custom Packaging'),
('01', 'UPS Letter'),
('03', 'Tube'),
('04', 'PAK'),
('21', 'UPS Express Box'),
('2a', 'Small Express Box'),
('2b', 'Medium Express Box'),
('2c', 'Large Express Box'),
]
LABEL_TYPE = [
('GIF', 'GIF Format'),
('ZPL','Zebra Label Printer Format')
]
class UPSError(Exception):
def __init__(self, fault, document):
self.fault = fault
self.document = document
code = self.document.childAtPath('/detail/Errors/ErrorDetail/PrimaryErrorCode/Code').getText()
text = self.document.childAtPath('/detail/Errors/ErrorDetail/PrimaryErrorCode/Description').getText()
error_text = 'UPS Error %s: %s' % (code, text)
super(UPSError, self).__init__(error_text)
def recurseElement(element, search, replace):
if search == element.qname():
element.rename(replace)
if element.isempty != True:
for x in element.getChildren():
recurseElement(x,search,replace)
return
from suds.plugin import MessagePlugin
class FixRequestNamespacePlug(MessagePlugin):
#marshalled seems to actually replace properly here, wheras sending does not seem to actually replace properly (bug?)
def marshalled(self, context):
element = context.envelope.getChild('Body')
#context.envelope = context.envelope.replace('ns1:Request>', 'ns0:Request>').replace('ns2:Request>', 'ns1:Request>')
recurseElement(element,'ns1:Request','ns0:Request')
recurseElement(element,'ns2:Request','ns1:Request')
return context
class UPS(object):
def __init__(self, credentials, debug=True):
this_dir = os.path.dirname(os.path.realpath(__file__))
self.wsdl_dir = os.path.join(this_dir, 'wsdl', 'ups')
self.credentials = credentials
self.debug = debug
def _add_security_header(self, client):
security_ns = ('security', 'http://www.ups.com/XMLSchema/XOLTWS/UPSS/v1.0')
security = Element('UPSSecurity', ns=security_ns)
username_token = Element('UsernameToken', ns=security_ns)
username = Element('Username', ns=security_ns).setText(self.credentials['username'])
password = Element('Password', ns=security_ns).setText(self.credentials['password'])
username_token.append(username)
username_token.append(password)
service_token = Element('ServiceAccessToken', ns=security_ns)
license = Element('AccessLicenseNumber', ns=security_ns).setText(self.credentials['access_license'])
service_token.append(license)
security.append(username_token)
security.append(service_token)
client.set_options(soapheaders=security)
def _normalized_country_code(self, country):
country_lookup = {
'usa': 'US',
'united states': 'US',
'canada': 'CA',
}
return country_lookup.get(country.lower(), country)
def wsdlURL(self, wsdl_name):
wsdl_file_path = os.path.join(self.wsdl_dir, wsdl_name)
# Get the os specific url to deal with windows drive letter
wsdl_file_url = urllib.pathname2url(wsdl_file_path)
wsdl_url = urlparse.urljoin('file://', wsdl_file_url)
return wsdl_url
def _get_client(self, wsdl):
wsdl_url = self.wsdlURL(wsdl)
# Setting prefixes=False does not help
return Client(wsdl_url, plugins=[FixRequestNamespacePlug()])
#Loading with ship.wsdl gives this:
#ns0 = "http://www.ups.com/XMLSchema/XOLTWS/Common/v1.0"
#ns1 = "http://www.ups.com/XMLSchema/XOLTWS/Error/v1.1"
#ns2 = "http://www.ups.com/XMLSchema/XOLTWS/IF/v1.0"
#ns3 = "http://www.ups.com/XMLSchema/XOLTWS/Ship/v1.0"
def soapClient(self, wsdl):
wsdl_url = self.wsdlURL(wsdl)
return SoapClient(wsdl=wsdl_url, trace=True)
def _create_shipment(self, client, packages, shipper_address, recipient_address, box_shape, namespace='ns3', create_reference_number=True, can_add_delivery_confirmation=True):
shipment = client.factory.create('{0}:ShipmentType'.format(namespace))
shipper_country = self._normalized_country_code(shipper_address.country)
for i, p in enumerate(packages):
package = client.factory.create('{0}:PackageType'.format(namespace))
if hasattr(package, 'Packaging'):
package.Packaging.Code = box_shape
elif hasattr(package, 'PackagingType'):
package.PackagingType.Code = box_shape
if box_shape == PACKAGES[0][0]:
package.Dimensions.UnitOfMeasurement.Code = 'IN'
if (p.length == 0) or (p.width == 0) or (p.height == 0):
raise UPSError('Dimensions',"Packaging dimensions are required if packaging type is custom")
package.Dimensions.Length = p.length
package.Dimensions.Width = p.width
package.Dimensions.Height = p.height
package.PackageWeight.UnitOfMeasurement.Code = 'LBS'
package.PackageWeight.Weight = p.weight
if can_add_delivery_confirmation and p.require_signature:
package.PackageServiceOptions.DeliveryConfirmation.DCISType = str(p.require_signature)
if p.value:
package.PackageServiceOptions.DeclaredValue.CurrencyCode = 'CAD' if (shipper_country=='CA') else 'USD'
package.PackageServiceOptions.DeclaredValue.MonetaryValue = p.value
if create_reference_number and p.reference:
try:
reference_number = client.factory.create('{0}:ReferenceNumberType'.format(namespace))
reference_number.Value = p.reference
package.ReferenceNumber.append(reference_number)
except suds.TypeNotFound as e:
pass
shipment.Package.append(package)
# Fill in Shipper information
shipfrom_name = shipper_address.name[:35]
shipfrom_company = shipper_address.company_name[:35]
shipment.Shipper.Name = shipfrom_company or shipfrom_name
shipment.Shipper.Address.AddressLine = [ shipper_address.address1, shipper_address.address2 ]
shipment.Shipper.Address.City = shipper_address.city[:30]
shipment.Shipper.Address.PostalCode = shipper_address.zip
shipment.Shipper.Address.CountryCode = shipper_country
shipment.Shipper.ShipperNumber = self.credentials['shipper_number']
# Fill in ShipFrom information
shipfrom_name = shipper_address.name[:35]
shipfrom_company = shipper_address.company_name[:35]
shipment.ShipFrom.Name = shipfrom_company or shipfrom_name
shipment.ShipFrom.Address.AddressLine = [ shipper_address.address1, shipper_address.address2 ]
shipment.ShipFrom.Address.City = shipper_address.city[:30]
shipment.ShipFrom.Address.PostalCode = shipper_address.zip
shipment.ShipFrom.Address.CountryCode = shipper_country
# Fill in ShipTo information
shipto_name = recipient_address.name[:35]
shipto_company = recipient_address.company_name[:35]
shipment.ShipTo.Name = shipto_company or shipto_name
shipment.ShipTo.Address.AddressLine = [ recipient_address.address1, recipient_address.address2 ]
shipment.ShipTo.Address.City = recipient_address.city[:30]
shipment.ShipTo.Address.PostalCode = recipient_address.zip
recipient_country = self._normalized_country_code(recipient_address.country)
shipment.ShipTo.Address.CountryCode = recipient_country
# Only add states if we're shipping to/from US, PR, or Ireland
if shipper_country in ( 'US', 'CA', 'IE' ):
shipment.Shipper.Address.StateProvinceCode = shipper_address.state
shipment.ShipFrom.Address.StateProvinceCode = shipper_address.state
if recipient_country in ( 'US', 'CA', 'IE' ):
shipment.ShipTo.Address.StateProvinceCode = recipient_address.state
if recipient_address.is_residence:
shipment.ShipTo.Address.ResidentialAddressIndicator = ''
return shipment
def rate(self, packages, packaging_type, shipper, recipient):
client = self._get_client('RateWS.wsdl')
self._add_security_header(client)
if not self.debug:
client.set_options(location='https://onlinetools.ups.com/webservices/Rate')
request = client.factory.create('ns0:RequestType')
request.RequestOption = 'Shop'
classification = client.factory.create('ns2:CodeDescriptionType')
classification.Code = '00' # Get rates for the shipper account
shipment = self._create_shipment(client, packages, shipper, recipient, packaging_type, namespace='ns2', create_reference_number=False)
shipment.ShipmentRatingOptions.NegotiatedRatesIndicator = ''
try:
logger.debug(shipment)
self.reply = client.service.ProcessRate(request, CustomerClassification=classification, Shipment=shipment)
logger.debug(self.reply)
service_lookup = dict(SERVICES)
info = list()
for r in self.reply.RatedShipment:
unknown_service = 'Unknown Service: {0}'.format(r.Service.Code)
try:
cost = r.NegotiatedRateCharges.TotalCharge.MonetaryValue
except AttributeError:
cost = r.TotalCharges.MonetaryValue
info.append({
'service': service_lookup.get(r.Service.Code, unknown_service),
'package': '',
'delivery_day': '',
'cost': cost
})
response = { 'status': self.reply.Response.ResponseStatus.Description, 'info': info }
return response
except suds.WebFault as e:
raise UPSError(e.fault, e.document)
def validate(self, recipient):
client = self._get_client('XAV.wsdl')
#client = self.soapClient('XAV.wsdl')
#wsdl_url = self.wsdlURL('XAV.wsdl')
#client = SoapClient(wsdl = wsdl_url, trace=True)
#return client
self._add_security_header(client)
if not self.debug:
client.set_options(location='https://onlinetools.ups.com/webservices/XAV')
request = client.factory.create('ns0:RequestType')
request.RequestOption = 3 # Address Validation w/ Classification
address = client.factory.create('ns2:AddressKeyFormatType')
address.ConsigneeName = recipient.name
address.AddressLine = [ recipient.address1, recipient.address2 ]
address.PoliticalDivision2 = recipient.city
address.PoliticalDivision1 = recipient.state
address.PostcodePrimaryLow = recipient.zip
address.CountryCode = self._normalized_country_code(recipient.country)
try:
reply = client.service.ProcessXAV(request, AddressKeyFormat=address)
result = {}
result['candidates'] = list()
if hasattr(reply, 'Candidate'):
for c in reply.Candidate:
name = c.AddressKeyFormat.ConsigneeName if hasattr(c.AddressKeyFormat, 'ConsigneeName') else ''
a = Address(
name,
c.AddressKeyFormat.AddressLine[0],
c.AddressKeyFormat.PoliticalDivision2,
c.AddressKeyFormat.PoliticalDivision1,
c.AddressKeyFormat.PostcodePrimaryLow,
c.AddressKeyFormat.CountryCode)
if len(c.AddressKeyFormat.AddressLine) > 1:
a.address2 = c.AddressKeyFormat.AddressLine[1]
if a not in result['candidates']:
result['candidates'].append(a)
if hasattr(reply, 'AddressClassification'):
# Need some better names maybe
result['class_code'] = reply.AddressClassification.Code
result['class_description'] = reply.AddressClassification.Description
result['valid'] = hasattr(reply, 'ValidAddressIndicator')
result['ambiguous'] = hasattr(reply, 'AmbiguousAddressIndicator')
return result
except suds.WebFault as e:
raise UPSError(e.fault, e.document)
def label(self, packages, shipper_address, recipient_address, service, box_shape, validate_address, email_notifications=list(), create_commercial_invoice=False, customs_info=[], label_type=LABEL_TYPE[0][0]):
client = self._get_client('Ship.wsdl')
self._add_security_header(client)
if not self.debug:
client.set_options(location='https://onlinetools.ups.com/webservices/Ship')
request = client.factory.create('ns0:RequestType')
request.RequestOption = 'validate' if validate_address else 'nonvalidate'
create_reference_number = recipient_address.country in ( 'US', 'CA', 'PR' ) and shipper_address.country == recipient_address.country
delivery_confirmation = create_reference_number
shipment = self._create_shipment(client, packages, shipper_address, recipient_address, box_shape, create_reference_number=create_reference_number, can_add_delivery_confirmation=delivery_confirmation)
#apparently setting this to '' does not include it in SUDS output, so a space seems to do the trick
shipment.ShipmentRatingOptions.NegotiatedRatesIndicator = ' '
if not create_reference_number:
reference_number = client.factory.create('ns3:ReferenceNumberType')
reference_number.Value = packages[0].reference
shipment.ReferenceNumber.append(reference_number)
# Kinda bad hack for supporting delivery confirmation at the shipment level (as opposed
# to the package level)
package = packages[0]
if not delivery_confirmation and package.require_signature:
# delivery confirmation must be at least 2 (signature required) if we're going international
package.require_signature = package.require_signature if package.require_signature > 1 else 2
shipment.ShipmentServiceOptions.DeliveryConfirmation.DCISType = unicode(package.require_signature)
charge = client.factory.create('ns3:ShipmentChargeType')
charge2 = client.factory.create('ns3:ShipmentChargeType')
charge.Type = '01'
charge2.Type = '02'
charge.BillShipper.AccountNumber = self.credentials['shipper_number']
charge2.BillShipper.AccountNumber = self.credentials['shipper_number']
#Bill duties to shipper if this is an international shipment
if shipment.Shipper.Address.CountryCode != shipment.ShipTo.Address.CountryCode:
shipment.PaymentInformation.ShipmentCharge = [charge,charge2]
else:
shipment.PaymentInformation.ShipmentCharge = charge
shipment.Description = 'Shipment from %s to %s' % (shipper_address.name, recipient_address.name)
shipment.Description = shipment.Description[:50]
shipment.Service.Code = service
shipment.Shipper.AttentionName = shipper_address.name[:35] or shipper_address.company_name[:35]
shipment.Shipper.Phone.Number = shipper_address.phone
shipment.Shipper.EMailAddress = shipper_address.email
shipment.ShipTo.AttentionName = recipient_address.name[:35] or recipient_address.company_name[:35] or ''
shipment.ShipTo.Phone.Number = recipient_address.phone
shipment.ShipTo.EMailAddress = recipient_address.email
# Set the value of the shipment by adding up the value of the individual packages. If the packages don't
# have a value, set it to $100. UPS doesn't charge for insurance up to $100, so this gives maximum benefit
# without costing more.
if shipment.Shipper.Address.CountryCode == 'US' and shipment.ShipTo.Address.CountryCode in ( 'PR', 'CA' ):
shipment.InvoiceLineTotal.CurrencyCode = 'USD'
shipment.InvoiceLineTotal.MonetaryValue = sum([ p.value or 0 for p in packages]) or 100
for i, p in enumerate(shipment.Package):
p.Description = 'Package %d' % i
if email_notifications:
notification = client.factory.create('ns3:NotificationType')
notification.NotificationCode = 6 # Ship Notification
notification.EMail.EMailAddress = email_notifications
shipment.ShipmentServiceOptions.Notification.append(notification)
if create_commercial_invoice:
shipment.ShipmentServiceOptions.InternationalForms.FormType = '01'
shipment.ShipmentServiceOptions.InternationalForms.InvoiceNumber = packages[0].reference
shipment.ShipmentServiceOptions.InternationalForms.InvoiceDate = date.today().strftime('%Y%m%d')
shipment.ShipmentServiceOptions.InternationalForms.ReasonForExport = 'SALE'
shipment.ShipmentServiceOptions.InternationalForms.CurrencyCode = 'USD'
shipto_name = recipient_address.name[:35]
shipto_company = recipient_address.company_name[:35]
shipment.ShipmentServiceOptions.InternationalForms.Contacts.SoldTo.Name = shipto_company or shipto_name
shipment.ShipmentServiceOptions.InternationalForms.Contacts.SoldTo.AttentionName = shipto_name or shipto_company
shipment.ShipmentServiceOptions.InternationalForms.Contacts.SoldTo.Address.AddressLine = [ recipient_address.address1, recipient_address.address2 ]
shipment.ShipmentServiceOptions.InternationalForms.Contacts.SoldTo.Address.City = recipient_address.city
shipment.ShipmentServiceOptions.InternationalForms.Contacts.SoldTo.Address.PostalCode = recipient_address.zip
recipient_country = self._normalized_country_code(recipient_address.country)
shipment.ShipmentServiceOptions.InternationalForms.Contacts.SoldTo.Address.CountryCode = recipient_country
shipment.ShipmentServiceOptions.InternationalForms.Contacts.SoldTo.Phone.Number = recipient_address.phone
# Only add states if we're shipping to/from US, CA, or Ireland
if recipient_country in ( 'US', 'CA', 'IE' ):
shipment.ShipmentServiceOptions.InternationalForms.Contacts.SoldTo.Address.StateProvinceCode = recipient_address.state
for p in customs_info:
product = client.factory.create('ns2:ProductType')
product.Unit.UnitOfMeasurement.Code = 'PCS'
product.Unit.Value = p.value
product.Unit.Number = p.quantity
product.Description = p.description[:35]
product.OriginCountryCode = self._normalized_country_code(p.country)
''' check for optional commodity code '''
try:
product.CommodityCode = p.commoditycode
except:
pass
shipment.ShipmentServiceOptions.InternationalForms.Product.append(product)
label = client.factory.create('ns3:LabelSpecificationType')
label.LabelImageFormat.Code = label_type
if label_type == LABEL_TYPE[1][0]:
label.LabelStockSize.Height = '6'
label.LabelStockSize.Width = '4'
label.HTTPUserAgent = 'Mozilla/4.5'
try:
self.reply = client.service.ProcessShipment(request, shipment, label)
results = self.reply.ShipmentResults
logger.debug(results)
response = {
'status': self.reply.Response.ResponseStatus.Description,
'shipments': list(),
'international_document': {
'description': None,
'pdf': None
}
}
try:
cost = results.NegotiatedRateCharges.TotalCharge.MonetaryValue
except AttributeError:
cost = results.ShipmentCharges.TotalCharges.MonetaryValue
for p in results.PackageResults:
response['shipments'].append({
'tracking_number': p.TrackingNumber,
'cost': cost,
'label': base64.b64decode(p.ShippingLabel.GraphicImage),
})
try:
response['international_document']['description'] = results.Form.Description
response['international_document']['pdf'] = base64.b64decode(results.Form.Image.GraphicImage)
except AttributeError as e:
pass
return response
except suds.WebFault as e:
print client.last_sent()
raise UPSError(e.fault, e.document)