-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaypal.py
380 lines (308 loc) · 8.28 KB
/
paypal.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
# -*- coding: utf-8 -*-
from __future__ import print_function
import os
import json
import inspect
import time
import requests
from datetime import datetime, timedelta
try:
from httplib import (
UNAUTHORIZED,
BAD_REQUEST,
NOT_FOUND,
OK,
FORBIDDEN,
NO_CONTENT,
CREATED
)
except ImportError:
from http.client import (
UNAUTHORIZED,
BAD_REQUEST,
NOT_FOUND,
OK,
FORBIDDEN,
NO_CONTENT,
CREATED
)
from utils import *
from config import *
PAYPAL_AUTH_HDR = None
@retry(Exception, cdata='method={}'.format(inspect.stack()[0][3]))
def get_paypal_auth_hdr():
headers = {
'Content-Type': 'application/x-www-form-urlencoded',
'Accept-Language': 'en_US'
}
param = {'grant_type': 'client_credentials'}
url = '{}/oauth2/token'.format(PAYPAL_BASE_URL)
res = requests.post(
url,
auth=(PAYPAL_CLIENT_ID, PAYPAL_CLIENT_SECRET),
headers=headers,
data=param,
timeout=DEFAULT_TIMEOUT
)
if DEBUG: print('{}: {}, {}'.format(
inspect.stack()[0][3],
res.status_code,
res.content
))
payload = json.loads(res.text)
auth_hdr = '{} {}'.format(payload['token_type'], payload['access_token'])
return auth_hdr
@retry(Exception, cdata='method={}'.format(inspect.stack()[0][3]))
def get_pp_billing(bid=None, btype='agreements', status='ACTIVE'):
global PAYPAL_AUTH_HDR
if btype in ['agreements'] and not bid: abort(BAD_REQUEST)
headers = {
'Authorization': PAYPAL_AUTH_HDR,
'Content-Type': 'application/json'
}
if bid:
url = '{}/payments/billing-{}/{}'.format(PAYPAL_BASE_URL, btype, bid)
else:
url = '{}/payments/billing-{}?status={}'.format(
PAYPAL_BASE_URL,
btype,
status.lower()
)
res = requests.get(url, headers=headers)
if DEBUG: print('{}: {}, {}'.format(
inspect.stack()[0][3],
res.status_code,
res.content
))
if res.status_code in [UNAUTHORIZED, FORBIDDEN]:
PAYPAL_AUTH_HDR = get_paypal_auth_hdr()
return res
@retry(Exception, cdata='method={}'.format(inspect.stack()[0][3]))
def create_pp_billing_plan(bptype='trial'):
global PAYPAL_AUTH_HDR
headers = {
'Authorization': PAYPAL_AUTH_HDR,
'Content-Type': 'application/json'
}
trial_payment_def = {
'name': 'black.box one month free trial payment definition',
'type': 'TRIAL',
'frequency': 'MONTH',
'frequency_interval': 1,
'amount': {
'value': 0,
'currency': DEFAULT_CURRENCY
},
'cycles': 1,
'charge_models': [
{
'type': 'SHIPPING',
'amount': {
'value': 0,
'currency': DEFAULT_CURRENCY
}
},
{
'type': 'TAX',
'amount': {
'value': 0,
'currency': DEFAULT_CURRENCY
}
}
]
}
body = {
'name': 'blackbox',
'description': 'black.box subscription billing plan ({})'.format(bptype),
'type': 'INFINITE',
'payment_definitions': [
{
'name': 'black.box monthly subscription payment definition',
'type': 'REGULAR',
'frequency': 'MONTH',
'frequency_interval': 1,
'amount': {
'value': DEFAULT_MONTHLY_AMOUNT,
'currency': DEFAULT_CURRENCY
},
'cycles': 0,
'charge_models': [
{
'type': 'SHIPPING',
'amount': {
'value': 0,
'currency': DEFAULT_CURRENCY
}
},
{
'type': 'TAX',
'amount': {
'value': 0,
'currency': DEFAULT_CURRENCY
}
}
]
}
],
'merchant_preferences': {
'setup_fee': {
'value': 0,
'currency': DEFAULT_CURRENCY
},
'return_url': PAYPAL_RETURN_URL,
'cancel_url': PAYPAL_CANCEL_URL,
'auto_bill_amount': 'YES',
'initial_fail_amount_action': 'CONTINUE',
'max_fail_attempts': 2
}
}
if bptype == 'trial':
body['payment_definitions'].insert(0, trial_payment_def)
data = json.dumps(body)
url = '{}/payments/billing-plans'.format(PAYPAL_BASE_URL)
res = requests.post(url, headers=headers, data=data)
if DEBUG: print('{}: {}, {}'.format(
inspect.stack()[0][3],
res.status_code,
res.content
))
if res.status_code in [UNAUTHORIZED, FORBIDDEN]:
PAYPAL_AUTH_HDR = get_paypal_auth_hdr()
if res.status_code not in [OK, CREATED, NO_CONTENT]:
raise AssertionError((res.status_code, res.content))
return res
@retry(Exception, cdata='method={}'.format(inspect.stack()[0][3]))
def update_pp_billing_plan(id=None, body={}):
global PAYPAL_AUTH_HDR
headers = {
'Authorization': PAYPAL_AUTH_HDR,
'Content-Type': 'application/json'
}
data = json.dumps(body)
url = '{}/payments/billing-plans/{}'.format(PAYPAL_BASE_URL, id)
res = requests.patch(url, headers=headers, data=data)
if DEBUG: print('{}: {}, {}'.format(
inspect.stack()[0][3],
res.status_code,
res.content
))
if res.status_code in [UNAUTHORIZED, FORBIDDEN]:
PAYPAL_AUTH_HDR = get_paypal_auth_hdr()
if res.status_code not in [OK, NO_CONTENT]:
raise AssertionError((res.status_code, res.content))
return res
@retry(Exception, cdata='method={}'.format(inspect.stack()[0][3]))
def update_pp_billing_plan_status(id=None, status='ACTIVE'):
global PAYPAL_AUTH_HDR
headers = {
'Authorization': PAYPAL_AUTH_HDR,
'Content-Type': 'application/json'
}
body = [{
'path': '/',
'value': {
'state': status
},
'op': 'replace'
}]
data = json.dumps(body)
url = '{}/payments/billing-plans/{}'.format(PAYPAL_BASE_URL, id)
res = requests.patch(url, headers=headers, data=data)
if DEBUG: print('{}: {}, {}'.format(
inspect.stack()[0][3],
res.status_code,
res.content
))
if res.status_code in [UNAUTHORIZED, FORBIDDEN]:
PAYPAL_AUTH_HDR = get_paypal_auth_hdr()
if res.status_code not in [OK, NO_CONTENT]:
raise AssertionError((res.status_code, res.content))
return res
@retry(Exception, cdata='method={}'.format(inspect.stack()[0][3]))
def create_pp_billing_agreement(payload=None, bptype='trial'):
global PAYPAL_AUTH_HDR
headers = {
'Authorization': PAYPAL_AUTH_HDR,
'Content-Type': 'application/json'
}
billing_plan = PAYPAL_BILLING_PLAN_REGULAR
if bptype.lower() == 'trial': billing_plan = PAYPAL_BILLING_PLAN_TRIAL
start_date = (datetime.utcnow() + timedelta(days=1)).strftime('%Y-%m-%dT%H:%M:%SZ')
body = {
'name': 'black.box monthly subscription ({})'.format(bptype),
'description': payload,
'start_date': start_date,
'plan': {
'id': billing_plan
},
'payer': {
'payment_method': 'paypal'
}
}
data = json.dumps(body)
url = '{}/payments/billing-agreements'.format(PAYPAL_BASE_URL)
res = requests.post(url, headers=headers, data=data)
if DEBUG: print('{}: {}, {}'.format(
inspect.stack()[0][3],
res.status_code,
res.content
))
if res.status_code in [UNAUTHORIZED, FORBIDDEN]:
PAYPAL_AUTH_HDR = get_paypal_auth_hdr()
if res.status_code not in [OK, CREATED, NO_CONTENT]:
raise AssertionError((res.status_code, res.content))
return res
@retry(Exception, cdata='method={}'.format(inspect.stack()[0][3]))
def cancel_pp_billing_agreement(id=None):
global PAYPAL_AUTH_HDR
headers = {
'Authorization': PAYPAL_AUTH_HDR,
'Content-Type': 'application/json'
}
body = {
'note': 'black.box subscription cancelled at {}'.format(
datetime.now().strftime('%Y-%m-%dT%H:%M:%SZ')
)
}
data = json.dumps(body)
url = '{}/payments/billing-agreements/{}/cancel'.format(PAYPAL_BASE_URL, id)
res = requests.post(url, headers=headers, data=data)
if DEBUG: print('{}: {}, {}'.format(
inspect.stack()[0][3],
res.status_code,
res.content
))
if res.status_code in [UNAUTHORIZED, FORBIDDEN]:
PAYPAL_AUTH_HDR = get_paypal_auth_hdr()
if res.status_code not in [OK, CREATED, NO_CONTENT]:
raise AssertionError((res.status_code, res.content))
return res
@retry(Exception, cdata='method={}'.format(inspect.stack()[0][3]))
def execute_pp_billing_agreement(token=None):
global PAYPAL_AUTH_HDR
headers = {
'Authorization': PAYPAL_AUTH_HDR,
'Content-Type': 'application/json'
}
url = '{}/payments/billing-agreements/{}/agreement-execute'.format(
PAYPAL_BASE_URL,
token
)
res = requests.post(url, headers=headers)
if DEBUG: print('{}: {}, {}'.format(
inspect.stack()[0][3],
res.status_code,
res.content
))
if res.status_code in [UNAUTHORIZED, FORBIDDEN]:
PAYPAL_AUTH_HDR = get_paypal_auth_hdr()
if res.status_code not in [OK, CREATED, NO_CONTENT]:
raise AssertionError((res.status_code, res.content))
return res
if not os.environ.get('WERKZEUG_RUN_MAIN') == 'true':
if PAYPAL_CLIENT_ID and PAYPAL_CLIENT_SECRET:
try:
PAYPAL_AUTH_HDR = get_paypal_auth_hdr()
if DEBUG: print('pp_auth_header={}'.format(PAYPAL_AUTH_HDR))
except Exception as e:
pass