forked from braintree/braintree_python
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcredit_card.py
More file actions
242 lines (198 loc) · 8.35 KB
/
credit_card.py
File metadata and controls
242 lines (198 loc) · 8.35 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
import braintree
import warnings
from braintree.resource import Resource
from braintree.address import Address
from braintree.configuration import Configuration
from braintree.transparent_redirect import TransparentRedirect
class CreditCard(Resource):
"""
A class representing Braintree CreditCard objects.
An example of creating an credit card with all available fields::
result = braintree.CreditCard.create({
"cardholder_name": "John Doe",
"cvv": "123",
"expiration_date": "12/2012",
"number": "4111111111111111",
"token": "my_token",
"billing_address": {
"first_name": "John",
"last_name": "Doe",
"company": "Braintree",
"street_address": "111 First Street",
"extended_address": "Unit 1",
"locality": "Chicago",
"postal_code": "60606",
"region": "IL",
"country_name": "United States of America"
},
"options": {
"verify_card": True
}
})
print(result.credit_card.token)
print(result.credit_card.masked_number)
For more information on CreditCards, see http://www.braintreepaymentsolutions.com/gateway/credit-card-api
For more information on CreditCard verifications, see http://www.braintreepaymentsolutions.com/gateway/credit-card-verification-api
"""
class CardType(object):
"""
Contants representing the type of the credit card. Available types are:
* Braintree.CreditCard.AmEx
* Braintree.CreditCard.CarteBlanche
* Braintree.CreditCard.ChinaUnionPay
* Braintree.CreditCard.DinersClubInternational
* Braintree.CreditCard.Discover
* Braintree.CreditCard.JCB
* Braintree.CreditCard.Laser
* Braintree.CreditCard.Maestro
* Braintree.CreditCard.MasterCard
* Braintree.CreditCard.Solo
* Braintree.CreditCard.Switch
* Braintree.CreditCard.Visa
* Braintree.CreditCard.Unknown
"""
AmEx = "American Express"
CarteBlanche = "Carte Blanche"
ChinaUnionPay = "China UnionPay"
DinersClubInternational = "Diners Club"
Discover = "Discover"
JCB = "JCB"
Laser = "Laser"
Maestro = "Maestro"
MasterCard = "MasterCard"
Solo = "Solo"
Switch = "Switch"
Visa = "Visa"
Unknown = "Unknown"
class CustomerLocation(object):
"""
Contants representing the issuer location of the credit card. Available locations are:
* braintree.CreditCard.CustomerLocation.International
* braintree.CreditCard.CustomerLocation.US
"""
International = "international"
US = "us"
@staticmethod
def confirm_transparent_redirect(query_string):
"""
Confirms a transparent redirect request. It expects the query string from the
redirect request. The query string should _not_ include the leading "?" character. ::
result = braintree.CreditCard.confirm_transparent_redirect_request("foo=bar&id=12345")
"""
warnings.warn("Please use TransparentRedirect.confirm instead", DeprecationWarning)
return Configuration.gateway().credit_card.confirm_transparent_redirect(query_string)
@staticmethod
def create(params={}):
"""
Create an CreditCard. A number and expiration_date are required. ::
result = braintree.CreditCard.create({
"number": "4111111111111111",
"expiration_date": "12/2012"
})
"""
return Configuration.gateway().credit_card.create(params)
@staticmethod
def update(credit_card_token, params={}):
"""
Update an existing CreditCard by credit_card_id. The params are similar to create::
result = braintree.CreditCard.update("my_credit_card_id", {
"cardholder_name": "John Doe"
})
"""
return Configuration.gateway().credit_card.update(credit_card_token, params)
@staticmethod
def delete(credit_card_token):
"""
Delete a credit card, given a credit_card_id::
result = braintree.CreditCard.delete("my_credit_card_id")
"""
return Configuration.gateway().credit_card.delete(credit_card_token)
@staticmethod
def expired():
""" Return a collection of expired credit cards. """
return Configuration.gateway().credit_card.expired()
@staticmethod
def expiring_between(start_date, end_date):
""" Return a collection of credit cards expiring between the given dates. """
return Configuration.gateway().credit_card.expiring_between(start_date, end_date)
@staticmethod
def find(credit_card_token):
"""
Find a credit card, given a credit_card_id. This does not return
a result object. This will raise a :class:`NotFoundError <braintree.exceptions.not_found_error.NotFoundError>` if the provided
credit_card_id is not found. ::
credit_card = braintree.CreditCard.find("my_credit_card_token")
"""
return Configuration.gateway().credit_card.find(credit_card_token)
@staticmethod
def create_signature():
return CreditCard.signature("create")
@staticmethod
def update_signature():
return CreditCard.signature("update")
@staticmethod
def signature(type):
billing_address_params = [
"company", "country_code_alpha2", "country_code_alpha3", "country_code_numeric", "country_name",
"extended_address", "first_name", "last_name", "locality", "postal_code", "region", "street_address"
]
options = ["make_default", "verification_merchant_account_id", "verify_card"]
signature = [
"cardholder_name", "cvv", "expiration_date", "expiration_month", "expiration_year", "number", "token",
{"billing_address": billing_address_params},
{"options": options}
]
if type == "create":
signature.append("customer_id")
elif type == "update":
billing_address_params.append({"options": ["update_existing"]})
elif type == "update_via_customer":
options.append("update_existing_token")
billing_address_params.append({"options": ["update_existing"]})
else:
raise AttributeError
return signature
@staticmethod
def transparent_redirect_create_url():
"""
Returns the url to use for creating CreditCards through transparent redirect.
"""
warnings.warn("Please use TransparentRedirect.url instead", DeprecationWarning)
return Configuration.gateway().credit_card.transparent_redirect_create_url()
@staticmethod
def tr_data_for_create(tr_data, redirect_url):
"""
Builds tr_data for CreditCard creation.
"""
return Configuration.gateway().credit_card.tr_data_for_create(tr_data, redirect_url)
@staticmethod
def tr_data_for_update(tr_data, redirect_url):
"""
Builds tr_data for CreditCard updating.
"""
return Configuration.gateway().credit_card.tr_data_for_update(tr_data, redirect_url)
@staticmethod
def transparent_redirect_update_url():
"""
Returns the url to be used for updating CreditCards through transparent redirect.
"""
warnings.warn("Please use TransparentRedirect.url instead", DeprecationWarning)
return Configuration.gateway().credit_card.transparent_redirect_update_url()
def __init__(self, gateway, attributes):
Resource.__init__(self, gateway, attributes)
self.is_expired = self.expired
if "billing_address" in attributes:
self.billing_address = Address(gateway, self.billing_address)
else:
self.billing_address = None
if "subscriptions" in attributes:
self.subscriptions = [braintree.subscription.Subscription(gateway, subscription) for subscription in self.subscriptions]
@property
def expiration_date(self):
return self.expiration_month + "/" + self.expiration_year
@property
def masked_number(self):
"""
Returns the masked number of the CreditCard.
"""
return self.bin + "******" + self.last_4