2011-09-27 12:48:11 +00:00
|
|
|
from regluit.payment.manager import PaymentManager
|
|
|
|
from regluit.payment.paypal import IPN
|
|
|
|
from regluit.payment.models import Transaction
|
|
|
|
from regluit.core.models import Campaign, Wishlist
|
|
|
|
from django.contrib.auth.models import User
|
|
|
|
from regluit.payment.parameters import *
|
|
|
|
from django.http import HttpResponse, HttpRequest, HttpResponseRedirect
|
|
|
|
from django.views.decorators.csrf import csrf_exempt
|
2011-10-04 11:55:39 +00:00
|
|
|
from django.test.utils import setup_test_environment
|
|
|
|
from unittest import TestResult
|
|
|
|
from regluit.payment.tests import PledgeTest, AuthorizeTest
|
2011-09-27 12:48:11 +00:00
|
|
|
import traceback
|
|
|
|
|
2011-10-06 00:56:20 +00:00
|
|
|
import logging
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
# parameterize some test recipients
|
|
|
|
#TEST_RECEIVERS = ['jakace_1309677337_biz@gmail.com', 'seller_1317463643_biz@gmail.com']
|
|
|
|
TEST_RECEIVERS = ['glueja_1317336101_biz@gluejar.com', 'rh1_1317336251_biz@gluejar.com', 'RH2_1317336302_biz@gluejar.com']
|
|
|
|
|
|
|
|
|
2011-09-29 07:50:07 +00:00
|
|
|
'''
|
|
|
|
http://BASE/querycampaign?id=2
|
|
|
|
|
|
|
|
Example that returns a summary total for a campaign
|
|
|
|
'''
|
2011-09-27 12:48:11 +00:00
|
|
|
def queryCampaign(request):
|
|
|
|
|
|
|
|
id = request.GET['id']
|
|
|
|
campaign = Campaign.objects.get(id=id)
|
|
|
|
|
|
|
|
p = PaymentManager()
|
|
|
|
|
|
|
|
transactions = p.query_campaign(campaign)
|
|
|
|
|
|
|
|
total = p.query_campaign(campaign, summary=True)
|
|
|
|
|
|
|
|
return HttpResponse(str(total))
|
2011-09-29 07:50:07 +00:00
|
|
|
|
|
|
|
'''
|
|
|
|
http://BASE/testexecute?campaign=2
|
|
|
|
|
|
|
|
Example that executes a set of transactions that are pre-approved
|
|
|
|
'''
|
|
|
|
def testExecute(request):
|
|
|
|
|
|
|
|
p = PaymentManager()
|
|
|
|
|
|
|
|
if 'campaign' in request.GET.keys():
|
|
|
|
campaign_id = request.GET['campaign']
|
|
|
|
campaign = Campaign.objects.get(id=int(campaign_id))
|
|
|
|
else:
|
|
|
|
campaign = None
|
|
|
|
|
|
|
|
output = ''
|
|
|
|
|
|
|
|
if campaign:
|
|
|
|
result = p.execute_campaign(campaign)
|
|
|
|
|
|
|
|
for t in result:
|
|
|
|
output += str(t)
|
2011-10-06 00:56:20 +00:00
|
|
|
logger.info(str(t))
|
2011-09-29 07:50:07 +00:00
|
|
|
|
|
|
|
else:
|
|
|
|
transactions = Transaction.objects.filter(status='ACTIVE')
|
|
|
|
|
|
|
|
for t in transactions:
|
|
|
|
|
|
|
|
# Note, set this to 1-5 different receivers with absolute amounts for each
|
2011-10-06 00:56:20 +00:00
|
|
|
receiver_list = [{'email':TEST_RECEIVERS[0], 'amount':t.amount * 0.80},
|
|
|
|
{'email':TEST_RECEIVERS[1], 'amount':t.amount * 0.20}]
|
2011-09-29 07:50:07 +00:00
|
|
|
|
|
|
|
p.execute_transaction(t, receiver_list)
|
|
|
|
output += str(t)
|
2011-10-06 00:56:20 +00:00
|
|
|
logger.info(str(t))
|
2011-09-29 07:50:07 +00:00
|
|
|
|
|
|
|
return HttpResponse(output)
|
|
|
|
|
|
|
|
|
|
|
|
'''
|
|
|
|
http://BASE/testauthorize?amount=20
|
|
|
|
|
|
|
|
Example that initiates a pre-approval for a set amount
|
|
|
|
'''
|
|
|
|
def testAuthorize(request):
|
|
|
|
|
|
|
|
p = PaymentManager()
|
|
|
|
|
|
|
|
if 'campaign' in request.GET.keys():
|
|
|
|
campaign_id = request.GET['campaign']
|
|
|
|
else:
|
|
|
|
campaign_id = None
|
|
|
|
|
|
|
|
if 'amount' in request.GET.keys():
|
|
|
|
amount = float(request.GET['amount'])
|
|
|
|
else:
|
|
|
|
return HttpResponse("Error, no amount in request")
|
|
|
|
|
2011-09-27 12:48:11 +00:00
|
|
|
|
2011-09-29 07:50:07 +00:00
|
|
|
# Note, set this to 1-5 different receivers with absolute amounts for each
|
2011-10-06 00:56:20 +00:00
|
|
|
receiver_list = [{'email': TEST_RECEIVERS[0], 'amount':20.00},
|
|
|
|
{'email': TEST_RECEIVERS[1], 'amount':10.00}]
|
2011-09-29 07:50:07 +00:00
|
|
|
|
|
|
|
if campaign_id:
|
|
|
|
campaign = Campaign.objects.get(id=int(campaign_id))
|
|
|
|
t, url = p.authorize('USD', TARGET_TYPE_CAMPAIGN, amount, campaign=campaign, list=None, user=None)
|
|
|
|
|
|
|
|
else:
|
|
|
|
t, url = p.authorize('USD', TARGET_TYPE_NONE, amount, campaign=None, list=None, user=None)
|
|
|
|
|
|
|
|
if url:
|
2011-10-06 00:56:20 +00:00
|
|
|
logger.info("testAuthorize: " + url)
|
2011-09-29 07:50:07 +00:00
|
|
|
return HttpResponseRedirect(url)
|
|
|
|
|
|
|
|
else:
|
|
|
|
response = t.reference
|
2011-10-06 00:56:20 +00:00
|
|
|
logger.info("testAuthorize: Error " + str(t.reference))
|
2011-09-29 07:50:07 +00:00
|
|
|
return HttpResponse(response)
|
|
|
|
|
2011-10-01 12:01:40 +00:00
|
|
|
'''
|
|
|
|
http://BASE/testcancel?transaction=2
|
|
|
|
|
|
|
|
Example that cancels a preapproved transaction
|
|
|
|
'''
|
|
|
|
def testCancel(request):
|
|
|
|
|
|
|
|
if "transaction" not in request.GET.keys():
|
|
|
|
return HttpResponse("No Transaction in Request")
|
|
|
|
|
|
|
|
t = Transaction.objects.get(id=int(request.GET['transaction']))
|
|
|
|
p = PaymentManager()
|
|
|
|
if p.cancel(t):
|
|
|
|
return HttpResponse("Success")
|
|
|
|
else:
|
|
|
|
message = "Error: " + t.error
|
|
|
|
return HttpResponse(message)
|
|
|
|
|
|
|
|
|
2011-09-29 07:50:07 +00:00
|
|
|
'''
|
|
|
|
http://BASE/testpledge?campaign=2
|
|
|
|
|
|
|
|
Example that initiates an instant payment for a campaign
|
|
|
|
'''
|
2011-09-27 12:48:11 +00:00
|
|
|
def testPledge(request):
|
|
|
|
|
|
|
|
p = PaymentManager()
|
|
|
|
|
|
|
|
if 'campaign' in request.GET.keys():
|
|
|
|
campaign_id = request.GET['campaign']
|
|
|
|
else:
|
|
|
|
campaign_id = None
|
|
|
|
|
|
|
|
|
|
|
|
# Note, set this to 1-5 different receivers with absolute amounts for each
|
2011-10-06 00:56:20 +00:00
|
|
|
#receiver_list = [{'email':TEST_RECEIVERS[0], 'amount':20.00},{'email':TEST_RECEIVERS[1], 'amount':10.00}]
|
|
|
|
receiver_list = [{'email':TEST_RECEIVERS[0], 'amount':78.90}, {'email':TEST_RECEIVERS[1], 'amount':34.56}]
|
2011-09-27 12:48:11 +00:00
|
|
|
|
|
|
|
if campaign_id:
|
|
|
|
campaign = Campaign.objects.get(id=int(campaign_id))
|
|
|
|
t, url = p.pledge('USD', TARGET_TYPE_CAMPAIGN, receiver_list, campaign=campaign, list=None, user=None)
|
|
|
|
|
|
|
|
else:
|
|
|
|
t, url = p.pledge('USD', TARGET_TYPE_NONE, receiver_list, campaign=None, list=None, user=None)
|
|
|
|
|
|
|
|
if url:
|
2011-10-06 00:56:20 +00:00
|
|
|
logger.info("testPledge: " + url)
|
2011-09-27 12:48:11 +00:00
|
|
|
return HttpResponseRedirect(url)
|
|
|
|
|
|
|
|
else:
|
|
|
|
response = t.reference
|
2011-10-06 00:56:20 +00:00
|
|
|
logger.info("testPledge: Error " + str(t.reference))
|
2011-09-27 12:48:11 +00:00
|
|
|
return HttpResponse(response)
|
2011-10-04 11:55:39 +00:00
|
|
|
|
|
|
|
def runTests(request):
|
|
|
|
|
|
|
|
try:
|
|
|
|
# Setup the test environement. We need to run these tests on a live server
|
|
|
|
# so our code can receive IPN notifications from paypal
|
|
|
|
setup_test_environment()
|
|
|
|
result = TestResult()
|
|
|
|
|
|
|
|
# Run the authorize test
|
|
|
|
test = AuthorizeTest('test_authorize')
|
|
|
|
test.run(result)
|
|
|
|
|
|
|
|
# Run the pledge test
|
|
|
|
test = PledgeTest('test_pledge_single_receiver')
|
|
|
|
test.run(result)
|
|
|
|
|
|
|
|
# Run the pledge failure test
|
|
|
|
test = PledgeTest('test_pledge_too_much')
|
|
|
|
test.run(result)
|
|
|
|
|
|
|
|
output = "Tests Run: " + str(result.testsRun) + str(result.errors) + str(result.failures)
|
2011-10-06 00:56:20 +00:00
|
|
|
logger.info(output)
|
2011-10-04 11:55:39 +00:00
|
|
|
|
|
|
|
return HttpResponse(output)
|
2011-09-27 12:48:11 +00:00
|
|
|
|
2011-10-04 11:55:39 +00:00
|
|
|
except:
|
|
|
|
traceback.print_exc()
|
2011-09-27 12:48:11 +00:00
|
|
|
|
|
|
|
@csrf_exempt
|
|
|
|
def paypalIPN(request):
|
|
|
|
# Handler for paypal IPN notifications
|
|
|
|
|
|
|
|
p = PaymentManager()
|
|
|
|
p.processIPN(request)
|
|
|
|
|
2011-10-06 00:56:20 +00:00
|
|
|
logger.info(str(request.POST))
|
2011-09-27 12:48:11 +00:00
|
|
|
return HttpResponse("ipn")
|
2011-10-06 00:56:20 +00:00
|
|
|
|
|
|
|
def paymentcomplete(request):
|
|
|
|
# pick up all get and post parameters and display
|
|
|
|
output = "payment complete"
|
|
|
|
output += request.method + "\n" + str(request.REQUEST.items())
|
|
|
|
return HttpResponse(output)
|
|
|
|
|
2011-09-27 12:48:11 +00:00
|
|
|
|