Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
.. image:: https://img.shields.io/pypi/v/django-getpaid.svg :target: https://pypi.org/project/django-getpaid/ :alt: Latest PyPI version .. image:: https://img.shields.io/travis/sunscrapers/django-getpaid.svg :target: https://travis-ci.org/sunscrapers/django-getpaid .. image:: https://api.codacy.com/project/badge/Coverage/d25ba81e2e4740d6aac356f4ac90b16d :target: https://www.codacy.com/manual/dekoza/django-getpaid .. image:: https://img.shields.io/pypi/wheel/django-getpaid.svg :target: https://pypi.org/project/django-getpaid/ .. image:: https://img.shields.io/pypi/l/django-getpaid.svg :target: https://pypi.org/project/django-getpaid/ .. image:: https://api.codacy.com/project/badge/Grade/d25ba81e2e4740d6aac356f4ac90b16d :target: https://www.codacy.com/manual/dekoza/django-getpaid
django-getpaid is payment processing framework for Django
The full documentation is at https://django-getpaid.readthedocs.io.
Install django-getpaid and at least one payment backend:
.. code-block:: console
pip install django-getpaid
pip install django-getpaid-payu
Add them to your INSTALLED_APPS
:
.. code-block:: python
INSTALLED_APPS = [
...
'getpaid',
'getpaid_payu', # one of plugins
...
]
Add getpaid to URL patterns:
.. code-block:: python
urlpatterns = [
...
path('payments/', include('getpaid.urls')),
...
]
Define an Order
model by subclassing getpaid.models.AbstractOrder
and define some required methods:
.. code-block:: python
from getpaid.models import AbstractOrder
class MyCustomOrder(AbstractOrder):
amount = models.DecimalField(decimal_places=2, max_digits=8)
description = models.CharField(max_length=128)
buyer = models.ForeignKey(settings.AUTH_USER_MODEL, on_delete=models.CASCADE)
def get_absolute_url(self):
return reverse('order-detail', kwargs={"pk": self.pk})
def get_total_amount(self):
return self.amount
def get_buyer_info(self):
return {"email": self.buyer.email}
def get_currency(self):
return "EUR"
def get_description(self):
return self.description
.. note:: If you already have an Order model and don't want to subclass AbstractOrder
just make sure you implement all methods.
Inform getpaid of your Order model in settings.py
and provide settings for payment backends:
.. code-block:: python
GETPAID_ORDER_MODEL = 'yourapp.MyCustomOrder'
GETPAID_BACKEND_SETTINGS = {
"getpaid_payu": {
# take these from your merchant panel:
"pos_id": 12345,
"second_key": "91ae651578c5b5aa93f2d38a9be8ce11",
"oauth_id": 12345,
"oauth_secret": "12f071174cb7eb79d4aac5bc2f07563f",
},
}
Write a view that will create the Payment.
An example view and its hookup to urls.py can look like this:
.. code-block:: python
# orders/views.py
from getpaid.forms import PaymentMethodForm
class OrderView(DetailView):
model = Order
def get_context_data(self, **kwargs):
context = super(OrderView, self).get_context_data(**kwargs)
context["payment_form"] = PaymentMethodForm(
initial={"order": self.object, "currency": self.object.currency}
)
return context
# main urls.py
urlpatterns = [
# ...
path("order/<int:pk>/", OrderView.as_view(), name="order_detail"),
]
You'll also need a template (order_detail.html
in this case) for this view.
Here's the important part:
.. code-block::
<h2>Choose payment broker:</h2>
<form action="{% url 'getpaid:create-payment' %}" method="post">
{% csrf_token %}
{{ payment_form.as_p }}
<input type="submit" value="Checkout">
</form>
.. code-block:: console
poetry install
poetry run tox
django-payments <https://github.com/mirumee/django-payments>
_Created by Krzysztof Dorosz <https://github.com/cypreess>
.
Redesigned and rewritten by Dominik Kozaczko <https://github.com/dekoza>
.
Development of version 2.0 sponsored by SUNSCRAPERS <https://sunscrapers.com/>
_
This project has nothing in common with getpaid <http://code.google.com/p/getpaid/>
_ plone project.
FAQs
Multi-broker payment processor for Django.
We found that django-getpaid demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.