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
|
import braintree
from braintree.paypal_account import PayPalAccount
from braintree.error_result import ErrorResult
from braintree.exceptions.not_found_error import NotFoundError
from braintree.resource import Resource
from braintree.successful_result import SuccessfulResult
class PayPalAccountGateway(object):
def __init__(self, gateway):
self.gateway = gateway
self.config = gateway.config
def find(self, paypal_account_token):
try:
if paypal_account_token == None or paypal_account_token.strip() == "":
raise NotFoundError()
response = self.config.http().get("/payment_methods/paypal_account/" + paypal_account_token)
if "paypal_account" in response:
return PayPalAccount(self.gateway, response["paypal_account"])
except NotFoundError:
raise NotFoundError("paypal account with token " + paypal_account_token + " not found")
def delete(self, paypal_account_token):
self.config.http().delete("/payment_methods/paypal_account/" + paypal_account_token)
return SuccessfulResult()
def update(self, paypal_account_token, params={}):
Resource.verify_keys(params, PayPalAccount.signature())
response = self.config.http().put("/payment_methods/paypal_account/" + paypal_account_token, {"paypal_account": params})
if "paypal_account" in response:
return SuccessfulResult({"paypal_account": PayPalAccount(self.gateway, response["paypal_account"])})
elif "api_error_response" in response:
return ErrorResult(self.gateway, response["api_error_response"])
|