This application provides a custom Open edX ecommerce <https://github.com/edx/ecommerce/> payment processor backend for the Amazon Payment Services.
The API documentation for the PayFort payment services is available at:
Scroll through the page, it's a very long single-page documentation.
There's no official Python SDK for PayFort. But we can use the PayFort PHP SDK to understand the API calls and redirect mechanism.
There's a 2016 unofficial Python SDK for PayFort: https://github.com/alisterionold/payfort-python
There's a 2018 blog documenting the integration process:
When the testing account is used, PayFort test payment card numbers can be used.
To run tests locally in your machine, you need to install the following dependencies:
$ pip install tox
Then run the all tests:
$ make tests
Or run the unit tests only:
$ make unit_tests
To run quality quality:
$ make quality
tox
can be used directly to run a specific, for example:
$ tox -e py38 -- tests/unit/test_payfort_utils.py
You need to have Tutor requirements such as Docker.
Run the following commands:
cd ~/work/ sudo pip install tutor==13.3.2 mkdir payfort && cd payfort git clone [email protected]:Zeit-Labs/ecommerce-payfort.git git clone --branch=open-release/maple.nelp [email protected]:eduNEXT/ecommerce.git git clone --branch=nelp/maple [email protected]:eduNEXT/tutor-discovery discovery bash ecommerce-payfort/tutor_plugin/tutor_quickstart.sh
Install this repository inside the ecommerce virtualenv environment using pip.
In ecommerce.yml, add the following settings:
ADDL_INSTALLED_APPS: - payfort ADDL_PAYMENT_PROCESSORS: - 'ecommerce_payfort.processors.PayFort' # many other settings PAYMENT_PROCESSOR_CONFIG: <partner name>: payfort: <TBD: integration docs is coming>
Restart the ecommerce service in production and the devserver in the devstack.
In the ecommerce Django admin site, create waffle switches payment_processor_active_payfort, ` to enable the backends.
Verify and ensure that the enable_client_side_checkout waffle flag is disabled for everyone.
Once these steps are done, the PayFort processor backend provided by this application will be available as payment options during the payment flow for purchasing paid seats in courses.
This application was developed by ZeitLabs at the request of The National Learning Center.
This application is released under the terms of the AGPLv3 license and is based on the ecommmerce-hyperpay plugin.