Skip to main content

Django app for Moneta eTerminal API.

Project description

django-moneta
=============

Django app for Moneta eTerminal API.
Mozzila's NSS library is used for secure communications, because OpenSSL or GnuTLS doesn't work with Moneta's servers.



Requirements
------------

* [Django] 1.3+
* [pysimplesoap] 1.08b+
* [python-nss] 0.12+

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

```pip install django-moneta```

Usage
-----

1. Create NSS database with Mobitel's root CA certificate and your client certificate (you can use certconvert.sh)
2. Edit your settings.py
* Add `moneta` to `INSTALLED_APPS`
* set `MONETA_DBDIR` to point to NSS directory you've created in the first step
* set `MONETA_CERT_NAME` to your client certificate name
* optionally set `MONETA_PIN` if you're using it
* set `MONETA_PRODUCTION` to `True` when you go to production
3. Use `Transaction` model:

```python
from decimal import Decimal
from moneta.models import Transaction

t = Transaction(value=Decimal('1.23'), reference='areference123')
token = t.getToken()

print "Please call %s to pay." % token

t.getStatus()
print t.status #should be 11 since it was just created

t.cancel()
print t.status #should be 7
```

When transaction is finished `transaction_done` signal is emitted.

TODO
====

* Suport delayed transaction
* Support other API functions

Author
------

[Visionect d.o.o.], [Matevž Mihalič]

Licence
-------

MIT: http://mit-license.org/


[Django]: http://djangoproject.com/
[pysimplesoap]: https://code.google.com/p/pysimplesoap/
[python-nss]: https://www.mozilla.org/projects/security/pki/python-nss/
[Visionect d.o.o.]: http://www.visionect.si
[Matevž Mihalič]: http://marv.si

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

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

Source Distribution

django-moneta-0.1.tar.gz (5.2 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page