app-MAIL-temp/app/paddle_utils.py

111 lines
3.3 KiB
Python
Raw Permalink Normal View History

"""
Verify incoming webhook from Paddle
Code inspired from https://developer.paddle.com/webhook-reference/verifying-webhooks
"""
import base64
import collections
# PHPSerialize can be found at https://pypi.python.org/pypi/phpserialize
import phpserialize
2020-03-08 10:27:50 +01:00
import requests
from Crypto.Hash import SHA1
2021-09-10 17:42:07 +02:00
# Crypto can be found at https://pypi.org/project/pycryptodome/
from Crypto.PublicKey import RSA
from Crypto.Signature import PKCS1_v1_5
2020-03-08 10:27:50 +01:00
from app.config import PADDLE_PUBLIC_KEY_PATH, PADDLE_VENDOR_ID, PADDLE_AUTH_CODE
2021-09-10 17:42:07 +02:00
# Your Paddle public key.
2020-03-08 10:27:50 +01:00
from app.log import LOG
2021-03-22 15:52:48 +01:00
from app.models import User
2020-03-08 10:27:50 +01:00
with open(PADDLE_PUBLIC_KEY_PATH) as f:
public_key = f.read()
# Convert key from PEM to DER - Strip the first and last lines and newlines, and decode
public_key_encoded = public_key[26:-25].replace("\n", "")
public_key_der = base64.b64decode(public_key_encoded)
def verify_incoming_request(form_data: dict) -> bool:
"""verify the incoming form_data"""
# copy form data
input_data = form_data.copy()
signature = input_data["p_signature"]
# Remove the p_signature parameter
del input_data["p_signature"]
# Ensure all the data fields are strings
for field in input_data:
input_data[field] = str(input_data[field])
# Sort the data
sorted_data = collections.OrderedDict(sorted(input_data.items()))
# and serialize the fields
serialized_data = phpserialize.dumps(sorted_data)
# verify the data
key = RSA.importKey(public_key_der)
digest = SHA1.new()
digest.update(serialized_data)
verifier = PKCS1_v1_5.new(key)
signature = base64.b64decode(signature)
if verifier.verify(digest, signature):
return True
return False
2020-03-08 10:27:50 +01:00
2021-04-12 10:14:35 +02:00
def cancel_subscription(subscription_id: str) -> bool:
2020-03-08 10:27:50 +01:00
r = requests.post(
"https://vendors.paddle.com/api/2.0/subscription/users_cancel",
data={
"vendor_id": PADDLE_VENDOR_ID,
"vendor_auth_code": PADDLE_AUTH_CODE,
"subscription_id": subscription_id,
},
)
res = r.json()
if not res["success"]:
2021-09-08 11:29:55 +02:00
LOG.e(f"cannot cancel subscription {subscription_id}, paddle response: {res}")
2020-03-08 10:27:50 +01:00
return res["success"]
2020-04-12 19:43:07 +02:00
2021-03-22 15:52:48 +01:00
def change_plan(user: User, subscription_id: str, plan_id) -> (bool, str):
2020-10-12 17:37:04 +02:00
"""return whether the operation is successful and an optional error message"""
2020-04-12 19:43:07 +02:00
r = requests.post(
"https://vendors.paddle.com/api/2.0/subscription/users/update",
data={
"vendor_id": PADDLE_VENDOR_ID,
"vendor_auth_code": PADDLE_AUTH_CODE,
"subscription_id": subscription_id,
"plan_id": plan_id,
},
)
res = r.json()
if not res["success"]:
2020-10-12 17:37:04 +02:00
try:
# "unable to complete the resubscription because we could not charge the customer for the resubscription"
if res["error"]["code"] == 147:
2021-03-22 15:52:48 +01:00
LOG.w(
"could not charge the customer for the resubscription error %s,%s",
subscription_id,
user,
)
2020-10-12 17:37:04 +02:00
return False, "Your card cannot be charged"
2020-12-06 18:00:06 +01:00
except KeyError:
2021-09-08 11:29:55 +02:00
LOG.e(
f"cannot change subscription {subscription_id} to {plan_id}, paddle response: {res}"
)
2020-10-12 17:37:04 +02:00
return False, ""
2020-04-12 19:43:07 +02:00
2020-10-12 17:37:04 +02:00
return False, ""
return res["success"], ""