Skip to main content
====================
Spgateway for Django
====================

Write Django and your store as usual, and let ``django-spgateway`` handle your transactions with Spgateway

Requirements
------------
- Python 3.6
- Django >= 1.10
- pycrypto >=2.6.1
- We only tested on environment as below

Installation
------------

1. Install using pip:

``pip install django-spgageway``

Alternatively, you can install download or clone this repo and call ``pip install -e .``.

2. Add to INSTALLED_APPS in your ``settings.py``:

``'spgateway',``

3. Add settings in your ``settings.py``:

.. code:: Django

SPGATEWAY_PROFILE = {
'YOUR_MerchantID': {
'MerchantID': 'YOUR_MerchantID',
'HashKey': 'YOUR_HashKey',
'HashIV': 'YOUR_HashIV',
},
}
SPGATEWAY_MERCHANTID = 'YOUR_MerchantID'
SPGATEWAY_ORDERMODEL = 'yourapp.Order'

4. Add urlpattern to in tour ``urls.py``:

``url(r'^spgateway/', include('spgateway.urls')),``

5. Import ``from spgateway.models import SpgatewayOrderMixin`` and inherit from it with your order model.

6. Run ``python manage.py makemigrations`` and ``python manage.py migrate`` as usual.

7. Get form from your order by calling ``generate_credit_form`` in view:

``credit_form = order_object.generate_credit_form(request)``

And use it in your template:

.. code:: Django

<form action="{{ credit_form.action }}" method="POST">
{{ credit_form.as_p }}
<input type="submit">
</form>


Example model
-------------

.. code:: Django

from spgateway.models import SpgatewayOrderMixin

class Order(SpgatewayOrderMixin, models.Model):
total = models.IntegerField(default=0, verbose_name='Total Price')
user = models.ForeignKey(User, verbose_name='Order by user')
is_paid = models.BooleanField(default=False)

# Add this parameter to let django-spgateway know which field is amount of price
SpgatewayAmtFieldName = 'total'

# Add this parameter to let django-spgateway set item description
SpgatewayItemDesc = 'Items descriptions'

# Add this method to let django-spgateway retrieve email
def get_SpgatewayEmail(self, **kwargs):
return self.user.email

# Add this method let django-spgateway call when notify from Spgateway server
# Change your order with this method
def spgateway_notify(self, request, trade_info):
status = trade_info['Status']
status_msg = trade_info['Message']

if status == 'SUCCESS':
self.is_paid = True
self.save()
else:
# TODO: Handle error

# Add this method let django-spgateway call when client return from Spgateway server
# Never trust data from client. Display messages only
def spgateway_return(self, request, trade_info):
status = trade_info['Status']
status_msg = trade_info['Message']

if status == 'SUCCESS':
# TODO: Display success message to user
else:
# TODO: Display error message to user

# django-spgateway will call this method to redirect user after user return from Spgateway server
def get_absolute_url(self):
return reverse('ORDER_DETAIL_VIEW_NAME_HERE')


Bugs and suggestions
--------------------

If you have found a bug or if you have a request for additional functionality, please use the issue tracker on GitHub.

https://github.com/cjltsod/django-spgateway/issues


License
-------

You can use this under MIT. See `LICENSE
<LICENSE>`_ file for details.

Author
------

Developed and maintained by `CJLTSOD <https://about.me/cjltsod/>`_.

Thanks to everybody that has contributed pull requests, ideas, issues, comments and kind words.

Please see AUTHORS.rst for a list of contributors.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-spgateway-0.2.0.tar.gz (12.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_spgateway-0.2.0-py3-none-any.whl (16.9 kB view details)

Uploaded Python 3

File details

Details for the file django-spgateway-0.2.0.tar.gz.

File metadata

File hashes

Hashes for django-spgateway-0.2.0.tar.gz
Algorithm Hash digest
SHA256 db85d092d529a0014adfc58e92e4ed3ba97323cbedc43de25485fe3fb3387da1
MD5 137aa6d4f37cbe0d6386d6bf53d7eabd
BLAKE2b-256 213772d24c8e336325eaecf1b7e481ee65025f0635113b79f302f9a5e2c62895

See more details on using hashes here.

File details

Details for the file django_spgateway-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_spgateway-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f5ea319b190cac9cc8887e741b7e3be4b836487f83452a7d6088330d5ef4dea4
MD5 a21239afb8ac84f844a9c2f950c88bc8
BLAKE2b-256 bd58350e614cfae5077bdb6031060e23de8639199a730a7637d7168ab725aaff

See more details on using hashes here.

Release history Release notifications | RSS feed

0.7.6

2 files

0.7.5

2 files

0.7.4

2 files

0.7.3

2 files

0.7.2

2 files

0.7.1

2 files

0.7.0

2 files

0.6.0

2 files

0.5.0

2 files

0.4.0

2 files

0.3.3

2 files

0.3.2

2 files

0.3.1

2 files

0.2.1

2 files

This release

0.2.0 This release

2 files

0.1.9

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page