2011-09-27 12:48:11 +00:00
|
|
|
from regluit.payment.parameters import *
|
|
|
|
from regluit.payment.models import Transaction
|
|
|
|
from django.contrib.auth.models import User
|
|
|
|
from django.utils import simplejson as json
|
|
|
|
from django.utils.xmlutils import SimplerXMLGenerator
|
|
|
|
from django.db import IntegrityError
|
|
|
|
from django.db.models.query_utils import Q
|
|
|
|
from django.shortcuts import render_to_response
|
|
|
|
from django.template import RequestContext
|
|
|
|
|
|
|
|
import datetime
|
|
|
|
import dateutil.parser
|
|
|
|
import hashlib
|
|
|
|
import httplib
|
|
|
|
import traceback
|
|
|
|
import uuid
|
|
|
|
import os
|
|
|
|
import urllib
|
|
|
|
import urllib2
|
|
|
|
import logging
|
|
|
|
import random
|
|
|
|
import commands
|
|
|
|
import smtplib
|
|
|
|
import urlparse
|
|
|
|
import decimal
|
|
|
|
|
|
|
|
|
|
|
|
# transaction_type constants
|
|
|
|
IPN_TYPE_PAYMENT = 'Adaptive Payment PAY'
|
|
|
|
IPN_TYPE_ADJUSTMENT = 'Adjustment'
|
2011-09-29 07:50:07 +00:00
|
|
|
IPN_TYPE_PREAPPROVAL = 'Adaptive Payment PREAPPROVAL'
|
2011-09-27 12:48:11 +00:00
|
|
|
|
2011-10-01 12:01:40 +00:00
|
|
|
#pay API status constants
|
|
|
|
IPN_PAY_STATUS_NONE = 'NONE'
|
|
|
|
IPN_PAY_STATUS_CREATED = 'CREATED'
|
|
|
|
IPN_PAY_STATUS_COMPLETED = 'COMPLETED'
|
|
|
|
IPN_PAY_STATUS_INCOMPLETE = 'INCOMPLETE'
|
|
|
|
IPN_PAY_STATUS_ERROR = 'ERROR'
|
|
|
|
IPN_PAY_STATUS_REVERSALERROR = 'REVERSALERROR'
|
|
|
|
IPN_PAY_STATUS_PROCESSING = 'PROCESSING'
|
|
|
|
IPN_PAY_STATUS_PENDING = 'PENDING'
|
|
|
|
IPN_PAY_STATUS_ACTIVE = "ACTIVE"
|
|
|
|
IPN_PAY_STATUS_CANCELED = "CANCELED"
|
|
|
|
|
|
|
|
|
|
|
|
IPN_SENDER_STATUS_COMPLETED = 'COMPLETED'
|
|
|
|
IPN_SENDER_STATUS_PENDING = 'PENDING'
|
|
|
|
IPN_SENDER_STATUS_CREATED = 'CREATED'
|
|
|
|
IPN_SENDER_STATUS_PARTIALLY_REFUNDED = 'PARTIALLY_REFUNDED'
|
|
|
|
IPN_SENDER_STATUS_DENIED = 'DENIED'
|
|
|
|
IPN_SENDER_STATUS_PROCESSING = 'PROCESSING'
|
|
|
|
IPN_SENDER_STATUS_REVERSED = 'REVERSED'
|
|
|
|
IPN_SENDER_STATUS_REFUNDED = 'REFUNDED'
|
|
|
|
IPN_SENDER_STATUS_FAILED = 'FAILED'
|
2011-09-27 12:48:11 +00:00
|
|
|
|
|
|
|
# action_type constants
|
|
|
|
IPN_ACTION_TYPE_PAY = 'PAY'
|
|
|
|
IPN_ACTION_TYPE_CREATE = 'CREATE'
|
|
|
|
|
|
|
|
# individual sender transaction constants
|
|
|
|
IPN_TXN_STATUS_COMPLETED = 'Completed'
|
|
|
|
IPN_TXN_STATUS_PENDING = 'Pending'
|
|
|
|
IPN_TXN_STATUS_REFUNDED = 'Refunded'
|
|
|
|
|
2011-10-01 12:01:40 +00:00
|
|
|
# addaptive payment adjusted IPN reason codes
|
|
|
|
IPN_REASON_CODE_CHARGEBACK_SETTLEMENT = 'Chargeback Settlement'
|
2011-09-27 12:48:11 +00:00
|
|
|
IPN_REASON_CODE_ADMIN_REVERSAL = 'Admin reversal'
|
|
|
|
IPN_REASON_CODE_REFUND = 'Refund'
|
|
|
|
|
2011-10-01 12:01:40 +00:00
|
|
|
class PaypalError(RuntimeError):
|
|
|
|
pass
|
2011-09-27 12:48:11 +00:00
|
|
|
|
|
|
|
class url_request( object ):
|
|
|
|
|
|
|
|
def __init__( self, base, url, data=None, headers={} ):
|
|
|
|
|
|
|
|
conn = httplib.HTTPSConnection(base)
|
|
|
|
conn.request("POST", url, data, headers)
|
|
|
|
|
|
|
|
#Check the response - should be 200 OK.
|
|
|
|
self.response = conn.getresponse()
|
|
|
|
|
|
|
|
def content( self ):
|
|
|
|
return self.response.read()
|
|
|
|
|
|
|
|
def code( self ):
|
|
|
|
return self.response.status
|
|
|
|
|
|
|
|
|
|
|
|
class Pay( object ):
|
2011-10-01 12:01:40 +00:00
|
|
|
def __init__( self, transaction):
|
2011-09-27 12:48:11 +00:00
|
|
|
|
|
|
|
headers = {
|
|
|
|
'X-PAYPAL-SECURITY-USERID':PAYPAL_USERNAME,
|
|
|
|
'X-PAYPAL-SECURITY-PASSWORD':PAYPAL_PASSWORD,
|
|
|
|
'X-PAYPAL-SECURITY-SIGNATURE':PAYPAL_SIGNATURE,
|
|
|
|
'X-PAYPAL-APPLICATION-ID':PAYPAL_APPID,
|
|
|
|
'X-PAYPAL-REQUEST-DATA-FORMAT':'JSON',
|
|
|
|
'X-PAYPAL-RESPONSE-DATA-FORMAT':'JSON'
|
|
|
|
}
|
|
|
|
|
|
|
|
return_url = BASE_URL + COMPLETE_URL
|
|
|
|
cancel_url = BASE_URL + CANCEL_URL
|
|
|
|
print "Return URL: " + return_url
|
|
|
|
print "Cancel URL: " + cancel_url
|
|
|
|
|
2011-10-01 12:01:40 +00:00
|
|
|
receiver_list = []
|
|
|
|
receivers = transaction.receiver_set.all()
|
|
|
|
|
|
|
|
if len(receivers) == 0:
|
|
|
|
raise Exception
|
|
|
|
|
|
|
|
for r in receivers:
|
|
|
|
if len(receivers) > 1:
|
|
|
|
if r.primary:
|
|
|
|
primary_string = 'true'
|
|
|
|
else:
|
|
|
|
primary_string = 'false'
|
|
|
|
|
|
|
|
receiver_list.append({'email':r.email,'amount':str(r.amount), 'primary':primary_string})
|
|
|
|
else:
|
|
|
|
receiver_list.append({'email':r.email,'amount':str(r.amount)})
|
|
|
|
|
|
|
|
print receiver_list
|
|
|
|
|
2011-09-27 12:48:11 +00:00
|
|
|
data = {
|
2011-09-29 07:50:07 +00:00
|
|
|
'actionType': 'PAY',
|
|
|
|
'receiverList': { 'receiver': receiver_list },
|
2011-09-27 12:48:11 +00:00
|
|
|
'currencyCode': transaction.currency,
|
|
|
|
'returnUrl': return_url,
|
|
|
|
'cancelUrl': cancel_url,
|
|
|
|
'requestEnvelope': { 'errorLanguage': 'en_US' },
|
2011-09-29 07:50:07 +00:00
|
|
|
'ipnNotificationUrl': BASE_URL + 'paypalipn'
|
2011-09-27 12:48:11 +00:00
|
|
|
}
|
2011-09-29 07:50:07 +00:00
|
|
|
|
|
|
|
if transaction.reference:
|
|
|
|
data['preapprovalKey'] = transaction.reference
|
2011-09-27 12:48:11 +00:00
|
|
|
|
|
|
|
self.raw_request = json.dumps(data)
|
|
|
|
|
|
|
|
self.raw_response = url_request( PAYPAL_ENDPOINT, "/AdaptivePayments/Pay", data=self.raw_request, headers=headers ).content()
|
|
|
|
print "paypal PAY response was: %s" % self.raw_response
|
|
|
|
self.response = json.loads( self.raw_response )
|
|
|
|
print self.response
|
|
|
|
|
|
|
|
def status( self ):
|
|
|
|
if self.response.has_key( 'paymentExecStatus' ):
|
|
|
|
return self.response['paymentExecStatus']
|
|
|
|
else:
|
|
|
|
return None
|
|
|
|
|
|
|
|
def error( self ):
|
|
|
|
if self.response.has_key('error'):
|
|
|
|
error = self.response['error']
|
|
|
|
print error
|
|
|
|
return error[0]['message']
|
|
|
|
else:
|
2011-10-01 12:01:40 +00:00
|
|
|
return 'Paypal PAY: Unknown Error'
|
2011-09-27 12:48:11 +00:00
|
|
|
|
|
|
|
def amount( self ):
|
|
|
|
return decimal.Decimal(self.results[ 'payment_gross' ])
|
|
|
|
|
|
|
|
def paykey( self ):
|
|
|
|
return self.response['payKey']
|
|
|
|
|
|
|
|
def next_url( self ):
|
|
|
|
return '%s?cmd=_ap-payment&paykey=%s' % ( PAYPAL_PAYMENT_HOST, self.response['payKey'] )
|
|
|
|
|
|
|
|
|
2011-10-01 12:01:40 +00:00
|
|
|
class CancelPreapproval(object):
|
|
|
|
|
|
|
|
def __init__(self, transaction):
|
|
|
|
|
|
|
|
headers = {
|
|
|
|
'X-PAYPAL-SECURITY-USERID':PAYPAL_USERNAME,
|
|
|
|
'X-PAYPAL-SECURITY-PASSWORD':PAYPAL_PASSWORD,
|
|
|
|
'X-PAYPAL-SECURITY-SIGNATURE':PAYPAL_SIGNATURE,
|
|
|
|
'X-PAYPAL-APPLICATION-ID':PAYPAL_APPID,
|
|
|
|
'X-PAYPAL-REQUEST-DATA-FORMAT':'JSON',
|
|
|
|
'X-PAYPAL-RESPONSE-DATA-FORMAT':'JSON',
|
|
|
|
}
|
|
|
|
|
|
|
|
data = {
|
|
|
|
'preapprovalKey':transaction.reference,
|
|
|
|
'requestEnvelope': { 'errorLanguage': 'en_US' }
|
|
|
|
}
|
|
|
|
|
|
|
|
self.raw_request = json.dumps(data)
|
|
|
|
self.raw_response = url_request(PAYPAL_ENDPOINT, "/AdaptivePayments/CancelPreapproval", data=self.raw_request, headers=headers ).content()
|
|
|
|
print "paypal CANCEL PREAPPROBAL response was: %s" % self.raw_response
|
|
|
|
self.response = json.loads( self.raw_response )
|
|
|
|
print self.response
|
|
|
|
|
|
|
|
def success(self):
|
|
|
|
if self.status() == 'Success' or self.status() == "SuccessWithWarning":
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
|
|
|
def error(self):
|
|
|
|
if self.response.has_key('error'):
|
|
|
|
error = self.response['error']
|
|
|
|
print error
|
|
|
|
return error[0]['message']
|
|
|
|
else:
|
|
|
|
return 'Paypal Preapproval Cancel: Unknown Error'
|
|
|
|
|
|
|
|
def status(self):
|
|
|
|
if self.response.has_key( 'responseEnvelope' ) and self.response['responseEnvelope'].has_key( 'ack' ):
|
|
|
|
return self.response['responseEnvelope']['ack']
|
|
|
|
else:
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
2011-09-29 07:50:07 +00:00
|
|
|
class Preapproval( object ):
|
|
|
|
def __init__( self, transaction, amount ):
|
|
|
|
|
|
|
|
headers = {
|
|
|
|
'X-PAYPAL-SECURITY-USERID':PAYPAL_USERNAME,
|
|
|
|
'X-PAYPAL-SECURITY-PASSWORD':PAYPAL_PASSWORD,
|
|
|
|
'X-PAYPAL-SECURITY-SIGNATURE':PAYPAL_SIGNATURE,
|
|
|
|
'X-PAYPAL-APPLICATION-ID':PAYPAL_APPID,
|
|
|
|
'X-PAYPAL-REQUEST-DATA-FORMAT':'JSON',
|
|
|
|
'X-PAYPAL-RESPONSE-DATA-FORMAT':'JSON',
|
|
|
|
}
|
|
|
|
|
|
|
|
return_url = BASE_URL + COMPLETE_URL
|
|
|
|
cancel_url = BASE_URL + CANCEL_URL
|
|
|
|
|
2011-10-01 12:01:40 +00:00
|
|
|
# set the expiration date for the preapproval
|
2011-09-29 07:50:07 +00:00
|
|
|
now = datetime.datetime.utcnow()
|
2011-10-01 12:01:40 +00:00
|
|
|
expiry = now + datetime.timedelta( days=PREAPPROVAL_PERIOD )
|
|
|
|
transaction.date_authorized = now
|
|
|
|
transaction.date_expired = expiry
|
|
|
|
transaction.save()
|
2011-09-29 07:50:07 +00:00
|
|
|
|
|
|
|
data = {
|
|
|
|
'endingDate': expiry.isoformat(),
|
|
|
|
'startingDate': now.isoformat(),
|
|
|
|
'maxTotalAmountOfAllPayments': '%.2f' % transaction.amount,
|
2011-10-01 12:01:40 +00:00
|
|
|
'maxNumberOfPayments':1,
|
|
|
|
'maxAmountPerPayment': '%.2f' % transaction.amount,
|
2011-09-29 07:50:07 +00:00
|
|
|
'currencyCode': transaction.currency,
|
|
|
|
'returnUrl': return_url,
|
|
|
|
'cancelUrl': cancel_url,
|
|
|
|
'requestEnvelope': { 'errorLanguage': 'en_US' },
|
|
|
|
'ipnNotificationUrl': BASE_URL + 'paypalipn'
|
|
|
|
}
|
|
|
|
|
|
|
|
self.raw_request = json.dumps(data)
|
|
|
|
self.raw_response = url_request(PAYPAL_ENDPOINT, "/AdaptivePayments/Preapproval", data=self.raw_request, headers=headers ).content()
|
|
|
|
print "paypal PREAPPROVAL response was: %s" % self.raw_response
|
|
|
|
self.response = json.loads( self.raw_response )
|
|
|
|
print self.response
|
|
|
|
|
|
|
|
def paykey( self ):
|
|
|
|
if self.response.has_key( 'preapprovalKey' ):
|
|
|
|
return self.response['preapprovalKey']
|
|
|
|
else:
|
|
|
|
return None
|
|
|
|
|
|
|
|
def next_url( self ):
|
|
|
|
return '%s?cmd=_ap-preapproval&preapprovalkey=%s' % ( PAYPAL_PAYMENT_HOST, self.response['preapprovalKey'] )
|
|
|
|
|
|
|
|
def error( self ):
|
|
|
|
if self.response.has_key('error'):
|
|
|
|
error = self.response['error']
|
|
|
|
print error
|
|
|
|
return error[0]['message']
|
|
|
|
else:
|
2011-10-01 12:01:40 +00:00
|
|
|
return 'Paypal Preapproval: Unknown Error'
|
2011-09-29 07:50:07 +00:00
|
|
|
|
|
|
|
def status( self ):
|
|
|
|
if self.response.has_key( 'responseEnvelope' ) and self.response['responseEnvelope'].has_key( 'ack' ):
|
|
|
|
return self.response['responseEnvelope']['ack']
|
|
|
|
else:
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
2011-09-27 12:48:11 +00:00
|
|
|
class IPN( object ):
|
|
|
|
|
|
|
|
def __init__( self, request ):
|
|
|
|
|
|
|
|
try:
|
|
|
|
# verify that the request is paypal's
|
|
|
|
self.error = None
|
|
|
|
|
|
|
|
url = "%s?cmd=_notify-validate" % PAYPAL_PAYMENT_HOST
|
|
|
|
data=urllib.urlencode(request.POST.copy())
|
|
|
|
req = urllib2.Request(url, data)
|
|
|
|
response = urllib2.urlopen(req)
|
|
|
|
raw_response = response.read()
|
|
|
|
status = response.code
|
|
|
|
|
|
|
|
# check code
|
|
|
|
if status != 200:
|
|
|
|
self.error = 'PayPal response code was %i' % verify_response.code()
|
|
|
|
return
|
|
|
|
|
|
|
|
# check response
|
|
|
|
if raw_response != 'VERIFIED':
|
|
|
|
self.error = 'PayPal response was "%s"' % raw_response
|
|
|
|
return
|
|
|
|
|
|
|
|
# Process the details
|
|
|
|
self.status = request.POST.get('status', None)
|
|
|
|
self.sender_email = request.POST.get('sender_email', None)
|
|
|
|
self.action_type = request.POST.get('action_type', None)
|
2011-10-01 12:01:40 +00:00
|
|
|
self.pay_key = request.POST.get('pay_key', None)
|
2011-09-29 07:50:07 +00:00
|
|
|
self.preapproval_key = request.POST.get('preapproval_key', None)
|
2011-09-27 12:48:11 +00:00
|
|
|
self.transaction_type = request.POST.get('transaction_type', None)
|
2011-10-01 12:01:40 +00:00
|
|
|
self.reason_code = request.POST.get('reason_code', None)
|
2011-09-27 12:48:11 +00:00
|
|
|
|
|
|
|
self.process_transactions(request)
|
|
|
|
|
|
|
|
except:
|
|
|
|
self.error = "Error: ServerError"
|
|
|
|
traceback.print_exc()
|
|
|
|
|
2011-10-01 12:01:40 +00:00
|
|
|
def key(self):
|
|
|
|
# We only keep one reference, either a prapproval key, or a pay key, for the transaction. This avoids the
|
|
|
|
# race condition that may result if the IPN for an executed pre-approval(with both a pay key and preapproval key) is received
|
|
|
|
# before we have time to store the pay key
|
|
|
|
if self.preapproval_key:
|
|
|
|
return self.preapproval_key
|
|
|
|
elif self.pay_key:
|
|
|
|
return self.pay_key
|
|
|
|
else:
|
|
|
|
return None
|
|
|
|
|
2011-09-27 12:48:11 +00:00
|
|
|
def success( self ):
|
|
|
|
return self.error == None
|
2011-10-01 12:01:40 +00:00
|
|
|
|
|
|
|
|
2011-09-27 12:48:11 +00:00
|
|
|
@classmethod
|
|
|
|
def slicedict(cls, d, s):
|
|
|
|
return dict((str(k.replace(s, '', 1)), v) for k,v in d.iteritems() if k.startswith(s))
|
|
|
|
|
|
|
|
def process_transactions(self, request):
|
|
|
|
|
|
|
|
self.transactions = []
|
|
|
|
|
|
|
|
transaction_nums = range(6)
|
|
|
|
for transaction_num in transaction_nums:
|
|
|
|
transdict = IPN.slicedict(request.POST, 'transaction[%s].' % transaction_num)
|
|
|
|
if len(transdict) > 0:
|
|
|
|
self.transactions.append(transdict)
|
|
|
|
print transdict
|
|
|
|
|
|
|
|
|