-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathvalidation.py
More file actions
466 lines (406 loc) · 10.7 KB
/
validation.py
File metadata and controls
466 lines (406 loc) · 10.7 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
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
463
464
465
466
"""Internal module used for validating the minFraud request.
Internal code for validating the transaction dictionary.
This code is only intended for internal use and is subject to change in ways
that may break any direct use of it.
"""
from __future__ import annotations
import ipaddress
import re
import urllib.parse
import uuid
from decimal import Decimal
from email_validator import validate_email
from voluptuous import (
All,
Any,
In,
Match,
MultipleInvalid,
Range,
Required,
RequiredFieldInvalid,
Schema,
)
from voluptuous.error import UrlInvalid
_any_number = Any(float, int, Decimal)
_custom_input_key = All(str, Match(r"^[a-z0-9_]{1,25}$"))
_custom_input_value = Any(
All(str, Match(r"^[^\n]{1,255}\Z")),
All(
_any_number,
Range(min=-1e13, max=1e13, min_included=False, max_included=False),
),
bool,
)
_md5 = All(str, Match(r"^[0-9A-Fa-f]{32}$"))
_country_code = All(str, Match(r"^[A-Z]{2}$"))
_telephone_country_code = Any(
All(str, Match("^[0-9]{1,4}$")),
All(int, Range(min=1, max=9999)),
)
_subdivision_iso_code = All(str, Match(r"^[0-9A-Z]{1,4}$"))
def _ip_address(s: str | None) -> str:
# ipaddress accepts numeric IPs, which we don't want.
if isinstance(s, str) and not re.match(r"^\d+$", s):
return str(ipaddress.ip_address(s))
raise ValueError
def _email_or_md5(s: str) -> str:
if re.match(r"^[0-9A-Fa-f]{32}$", s):
return s
return validate_email(s, check_deliverability=False).normalized
# based off of:
# https://stackoverflow.com/questions/2532053/validate-a-hostname-string
def _hostname(hostname: str) -> str:
if len(hostname) > 255:
raise ValueError
allowed = re.compile(r"(?!-)[A-Z\d-]{1,63}(?<!-)$", re.IGNORECASE)
if all(allowed.match(x) for x in hostname.split(".")):
return hostname
raise ValueError
_delivery_speed = In(["same_day", "overnight", "expedited", "standard"])
_address = {
"address": str,
"address_2": str,
"city": str,
"company": str,
"country": _country_code,
"first_name": str,
"last_name": str,
"phone_country_code": _telephone_country_code,
"phone_number": str,
"postal": str,
"region": _subdivision_iso_code,
}
_shipping_address = _address.copy()
_shipping_address["delivery_speed"] = _delivery_speed
_payment_method = In(
[
"bank_debit",
"bank_redirect",
"bank_transfer",
"buy_now_pay_later",
"card",
"crypto",
"digital_wallet",
"gift_card",
"real_time_payment",
"rewards",
],
)
_payment_processor = In(
[
"adyen",
"affirm",
"afterpay",
"altapay",
"amazon_payments",
"american_express_payment_gateway",
"apple_pay",
"aps_payments",
"authorizenet",
"balanced",
"beanstream",
"bluepay",
"bluesnap",
"boacompra",
"boku",
"bpoint",
"braintree",
"cardknox",
"cardpay",
"cashfree",
"ccavenue",
"ccnow",
"cetelem",
"chase_paymentech",
"checkout_com",
"cielo",
"collector",
"commdoo",
"compropago",
"concept_payments",
"conekta",
"coregateway",
"creditguard",
"credorax",
"cryptomus",
"ct_payments",
"cuentadigital",
"curopayments",
"cybersource",
"dalenys",
"dalpay",
"datacap",
"datacash",
"dibs",
"digital_river",
"dlocal",
"dotpay",
"ebs",
"ecomm365",
"ecommpay",
"elavon",
"emerchantpay",
"epay",
"epayco",
"eprocessing_network",
"epx",
"eway",
"exact",
"first_atlantic_commerce",
"first_data",
"fiserv",
"g2a_pay",
"global_payments",
"gocardless",
"google_pay",
"heartland",
"hipay",
"ingenico",
"interac",
"internetsecure",
"intuit_quickbooks_payments",
"iugu",
"klarna",
"komoju",
"lemon_way",
"mastercard_payment_gateway",
"mercadopago",
"mercanet",
"merchant_esolutions",
"mirjeh",
"mollie",
"moneris_solutions",
"neopay",
"neosurf",
"nmi",
"oceanpayment",
"oney",
"onpay",
"openbucks",
"openpaymx",
"optimal_payments",
"orangepay",
"other",
"pacnet_services",
"payconex",
"payeezy",
"payfast",
"paygate",
"paylike",
"payment_express",
"paymentwall",
"payone",
"paypal",
"payplus",
"paysafecard",
"paysera",
"paystation",
"paytm",
"paytrace",
"paytrail",
"payture",
"payu",
"payulatam",
"payvision",
"payway",
"payza",
"pinpayments",
"placetopay",
"posconnect",
"princeton_payment_solutions",
"psigate",
"pxp_financial",
"qiwi",
"quickpay",
"raberil",
"razorpay",
"rede",
"redpagos",
"rewardspay",
"safecharge",
"sagepay",
"securepay",
"securetrading",
"shopify_payments",
"simplify_commerce",
"skrill",
"smartcoin",
"smartdebit",
"solidtrust_pay",
"sps_decidir",
"stripe",
"synapsefi",
"systempay",
"telerecargas",
"towah",
"transact_pro",
"trustly",
"trustpay",
"tsys",
"usa_epay",
"vantiv",
"verepay",
"vericheck",
"vindicia",
"virtual_card_services",
"vme",
"vpos",
"windcave",
"wirecard",
"worldpay",
],
)
_single_char = Match("^[A-Za-z0-9]$")
_iin = Match("^(?:[0-9]{6}|[0-9]{8})$")
_credit_card_last_digits = Match("^(?:[0-9]{2}|[0-9]{4})$")
def _credit_card_token(s: str) -> str:
if re.match("^[\x21-\x7e]{1,255}$", s) and not re.match("^[0-9]{1,19}$", s):
return s
raise ValueError
_rfc3339_datetime = Match(
r"(?a)\A\d{4}-\d{2}-\d{2}[Tt]\d{2}:\d{2}:\d{2}(\.\d+)?(?:[Zz]|[+-]\d{2}:\d{2})\Z",
)
_event_party = In(["agent", "customer"])
_event_type = In(
[
"account_creation",
"account_login",
"credit_application",
"email_change",
"fund_transfer",
"password_reset",
"payout_change",
"purchase",
"recurring_purchase",
"referral",
"survey",
],
)
_currency_code = Match("^[A-Z]{3}$")
_price = All(_any_number, Range(min=0, min_included=False))
def _uri(s: str) -> str:
parsed = urllib.parse.urlparse(s)
if parsed.scheme not in ["http", "https"] or not parsed.netloc:
msg = "URL is invalid"
raise UrlInvalid(msg)
return s
validate_transaction = Schema(
{
"account": {
"user_id": str,
"username_md5": _md5,
},
"billing": _address,
"payment": {
"method": _payment_method,
"processor": _payment_processor,
"was_authorized": bool,
"decline_code": str,
},
"credit_card": {
"avs_result": _single_char,
"bank_name": str,
"bank_phone_country_code": _telephone_country_code,
"bank_phone_number": str,
"country": _country_code,
"cvv_result": _single_char,
"issuer_id_number": _iin,
"last_digits": _credit_card_last_digits,
"last_4_digits": _credit_card_last_digits,
"token": _credit_card_token,
"was_3d_secure_successful": bool,
},
"custom_inputs": {_custom_input_key: _custom_input_value},
"device": {
"accept_language": str,
"ip_address": _ip_address,
"session_age": All(_any_number, Range(min=0)),
"session_id": str,
"user_agent": str,
},
"email": {
"address": _email_or_md5,
"domain": _hostname,
},
"event": {
"party": _event_party,
"shop_id": str,
"time": _rfc3339_datetime,
"type": _event_type,
"transaction_id": str,
},
"order": {
"affiliate_id": str,
"amount": _price,
"currency": _currency_code,
"discount_code": str,
"has_gift_message": bool,
"is_gift": bool,
"referrer_uri": _uri,
"subaffiliate_id": str,
},
"shipping": _shipping_address,
"shopping_cart": [
{
"category": str,
"item_id": str,
"price": _price,
"quantity": All(int, Range(min=1)),
},
],
},
)
def _maxmind_id(s: str | None) -> str:
if isinstance(s, str) and len(s) == 8:
return s
raise ValueError
_tag = In(["chargeback", "not_fraud", "spam_or_abuse", "suspected_fraud"])
def _uuid(s: str) -> str:
if isinstance(s, uuid.UUID):
return str(s)
if isinstance(s, str):
return str(uuid.UUID(s))
raise ValueError
NIL_UUID = str(uuid.UUID(int=0))
def _non_empty_uuid(s: str) -> str:
if _uuid(s) == NIL_UUID:
raise ValueError
return s
def _transaction_id(s: str | None) -> str:
if isinstance(s, str) and len(s) > 0:
return s
raise ValueError
_validate_report_schema = Schema(
{
"chargeback_code": str,
"ip_address": _ip_address,
"maxmind_id": _maxmind_id,
"minfraud_id": _non_empty_uuid,
"notes": str,
Required("tag"): _tag,
"transaction_id": _transaction_id,
},
)
def _validate_at_least_one_identifier_field(report: dict) -> bool:
optional_fields = ["ip_address", "maxmind_id", "minfraud_id", "transaction_id"]
if not any(field in report for field in optional_fields):
# We return MultipleInvalid instead of ValueError to be consistent with what
# voluptuous returns.
msg = (
"The report must contain at least one of the following fields: "
"'ip_address', 'maxmind_id', 'minfraud_id', 'transaction_id'."
)
raise MultipleInvalid(
[
RequiredFieldInvalid(
msg,
),
],
)
return True
def validate_report(report: dict) -> bool:
"""Validate minFraud Transaction Report fields."""
_validate_report_schema(report)
_validate_at_least_one_identifier_field(report)
return True