`django-thorbanks` provides a Django application for Estonian banklinks (iPizza protocol).
Project description
django-thorbanks
Django app for integrating Estonian banklinks into your project.
Features
| Bank | Protocol | Authentication | Payment |
|---|---|---|---|
| Swedbank | iPizza | :heavy_check_mark: | :heavy_check_mark: |
| SEB | iPizza | :heavy_check_mark: | :heavy_check_mark: |
| Danske | iPizza | :heavy_check_mark: | :heavy_check_mark: |
| LHV | iPizza | :heavy_check_mark: | :heavy_check_mark: |
| Krediidipank | iPizza | :heavy_check_mark: | :heavy_check_mark: |
| Nordea | iPizza | :heavy_check_mark: | :heavy_check_mark: |
Usage
1. Install it:
Pip:
pip install django-thorbanks
Pipenv:
pipenv install django-thorbanks
Poetry:
poetry add django-thorbanks
2. Add to installed apps
INSTALLED_APPS = (
# Add the following apps:
"thorbanks",
"thorbanks_models",
)
3. Configure and create migrations:
With MANUAL_MODELS:
- Remove
"thorbanks_models"fromINSTALLED_APPS - follow instructions from thorbanks.settings.get_model.
With default models:
Make django aware that thorbanks migrations are in your local apps folder via settings.MIGRATION_MODULES:
Note: Replace
shopwith the name of an existing app in your project.
# Tell django that thorbanks_models migrations are in shop app (in thorbanks_migrations module)
MIGRATION_MODULES = {"thorbanks_models": "shop.thorbanks_migrations"}
Now run makemigrations thorbanks_models and migrate management commands to create and apply the migrations.
4. Add settings.BANKLINKS
For a working example see the definitions in example/settings.py.
Note: You will need a public and private key for each bank integration. In case you don't have the public key, you can generate one out of a certificate by:
openssl x509 -pubkey -noout -in cert.pem > pubkey.pem
5. Link Transaction to your Order model
Note: When using MANUAL_MODELS replace
thorbanks_modelswith your local app name
class Order(models.Model):
# ... other fields
transaction = models.OneToOneField(
"thorbanks_models.Transaction", null=True, on_delete=models.SET_NULL
)
6. Include thorbanks urls
urlpatterns = [
# This is where the user will be redirected after returning from the banklink page
url(r"^banks/", include("thorbanks.urls")),
]
7. Add listeners to banklinks success & failure callbacks:
See example.shop.models.banklink_success_callback and example.shop.models.banklink_failed_callback.
8. Create views and forms for payments:
see example.shop.views and example.shop.forms.
iPizza protocol
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django_thorbanks-0.7.2.tar.gz.
File metadata
- Download URL: django_thorbanks-0.7.2.tar.gz
- Upload date:
- Size: 42.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.0 CPython/3.11.6 Linux/6.6.2-arch1-1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7bc1a55f4f1f5732691d9a0df782f4d6acad38997a53ce46b6881e568f722a58
|
|
| MD5 |
87d119186db2d57aa1fe6579f02f41d1
|
|
| BLAKE2b-256 |
891fb656c2da2dbcfde9df861be38225f67851c0803c7b1e77ecabed9fcf81a7
|
File details
Details for the file django_thorbanks-0.7.2-py3-none-any.whl.
File metadata
- Download URL: django_thorbanks-0.7.2-py3-none-any.whl
- Upload date:
- Size: 48.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.0 CPython/3.11.6 Linux/6.6.2-arch1-1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80aa8a90c2f17b335ca1915ec3f236cecb7f43ad6e41ea355d5ec069198745b1
|
|
| MD5 |
7c210e0a47d59c31992cd2a1a3535194
|
|
| BLAKE2b-256 |
3a5ac0c2a5b93e962863daf71c7b31518629f2b5054c88f3ada8994c395d7f43
|