PayU payments provider for django-payments
Project description
NOTE: This project is still in development, so use with extreme caution.
PayU payments provider for django-payments. Uses the new PayU REST API. Supports normal, express and recurring payments.
Documentation
The full documentation is at https://django-payments-payu.readthedocs.io.
Quickstart
Install django-payments and set up PayU payment provider backend according to django-payments documentation:
Example:
# use sandbox PAYMENT_VARIANTS = { 'payu': ('payments_payu.provider.PayuProvider', { 'pos_id': '123456', 'second_key': 'iseedeadpeople', 'client_secret': 'peopleiseedead', 'sandbox': True, 'capture': False, }), }
Additional settings:
PayU requires users first name, last name and email. Override ether get_user or get_user_email, get_user_first_name and get_user_last_name methods from BasePayment.
NOTE: notifications about the payment status from PayU are requested to be sent to django-payments process_payment url. The request from PayU can fail for several reasons (i.e. it can be blocked by proxy). Use “Show reports” page in PayU administration to get more information about the requests.
Recurring payments:
If recurring payments are enabled, the PayU card token needs to be stored in your application for usage in next payments. The next payments can be either initiated by user through (user will be prompted only for payment confirmation by the express form) or by server. To enable recurring payments, you will need to set additional things:
NOTE: Recurring payments are not enabled by default even in Sandbox, you sould consult their helpdesk to enable this.
In order to make payments recurring, the card token needs to be stored for the Payment’s user (not just the payment itself). Implement the Payment.set_renew_token() and Payment.get_renew_token().
Implement Payment.get_payment_url().
- For the server initiated recurring payments you will need to create the new payment and then call payment.auto_complete_recurring().
The method returns either string ‘success’ or url where the user can provide his CVV2 or 3D secure information.
The 'success' string means, that the payment is waiting for notification from PayU, but no further user action is required.
Example of triggering recurring payment:
payment = Payment.objects.create(...) redirect_url = payment.auto_complete_recurring() if redirect_url != 'success': send_mail( 'Recurring payment - action required', 'Please renew your CVV2/3DS at %s' % redirect_url, 'noreply@test.com', [user.email], fail_silently=False, )
Running Tests
Does the code actually work?
source <YOURVIRTUALENV>/bin/activate (myenv) $ pip install tox (myenv) $ tox
Credits
Tools used in rendering this package:
History
0.3.0 (2020-05-30)
fix amount quantization
add store_card parameter
fix base url parameter for express form
0.2.0 (2020-04-13)
Second release
Fixed testing matrix
0.1.0 (2020-04-06)
First release on PyPI.
Still in development.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for django-payments-payu-0.3.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | f9a9efe6ac5718f76f74e10fe9b46c91f2211cadedd50d2f6162c99aa01c321d |
|
MD5 | 3e1adfe7f344b0f999911a5a2a0165d6 |
|
BLAKE2b-256 | 84730e87e1f42272540bcca84da7eff8c4938aa35b98272b213ed601bca130e2 |