Skip to main content

Pagseguro integration for django-oscar

Project description

==================================
Pagseguro package for django-oscar
==================================

This package provides integration between django-oscar_ and Pagseguro_

.. _django-oscar: https://github.com/tangentlabs/django-oscar
.. _Pagseguro: http://pagseguro.com.br/

It's only on early development

It depends on django_pagseguro2_ library

.. _django_pagseguro2: https://github.com/allisson/django-pagseguro2/

It works by adding the Pagseguro_ API call to the handle_successful_order
method, so it finalizes the order before redirecting the user to Pagseguro_
because it needs to use the order number as reference for the order.

Pagseguro_ assumes that the order is completed when it's called, which is
different from django-oscar, where it's possible to use the success of the
payment as a confirmation for order placement.

The payment status are sent afterwards and dealt with using a view provided by
django_pagseguro2_ library, the signals are then used for order status changing
in signals.py

Usage
-----

- Add the pagseguro package to the INSTALLED_APPS::

INSTALLED_APPS = [
...
pagseguro,
]

- Add the following url to the urls.py of the django-oscar project::

url(r'^', include('oscar_pagseguro.urls')),

- And have a oscar order status pipeline that matches Pagseguro one::


OSCAR_ORDER_STATUS_PIPELINE = {
'Aguardando pagamento': ('Paga', u'Em analíse', 'Cancelada'),
u'Em analíse': ('Paga', 'Cancelada'),
'Paga': ('Em disputa', 'Devolvida', u'Disponível', 'Cancelada'),
u'Disponível': ('Devolvida', 'Em disputa'),
'Em disputa': (u'Disponível', 'Devolvida', 'Paga'),
'Devolvida': (),
'Cancelada': (),
}

- Configure Pagseguro with fix redirection page (Página de redirecionamento
fixa) para:

/checkout/thank-you/

- Configure Pagseguro with transaction notification (Notificação de transação),
to the following URL:

/retorno/pagseguro/

TODO
----

Drop the status pipeline matching by making the status used by the
django_pagseguro2_ configurable

Project details


Download files

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

Source Distribution

django-oscar-pagseguro-0.0.4.tar.gz (4.3 kB view details)

Uploaded Source

File details

Details for the file django-oscar-pagseguro-0.0.4.tar.gz.

File metadata

File hashes

Hashes for django-oscar-pagseguro-0.0.4.tar.gz
Algorithm Hash digest
SHA256 89bc641f6a85be9faf93f4ea3fc646ccdef091fdd7a863b443d4608da3aae75b
MD5 885278e383817e9eeaecd8cb1e452cbe
BLAKE2b-256 dbe134e868765dd3341e0b58613b8d4b1294c6e4a7e5f17762d95a3206f7f196

See more details on using hashes here.

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