This module is used to connect your django application to the payment provider Adyen using the "Web Components" and "Web Drop-in"
This is only tested on a postgres database.
Install with pip
pip install djadyen
Add 'djadyen' to the installed apps
# settings.py
INSTALLED_APPS = [
...
'djadyen',
...
]
Add the Adyen notifications urls (This is not required). These url will save all the notifications to the database. You need to make an implementation to handle the notifications
# urls.py
urlpatterns = [
...
url(r'^adyen/notifications/', include('djadyen.notifications.urls', namespace='adyen-notifications')),
...
]
# models.py
from djadyen.models import AdyenOrder
class CustomOrder(AdyenOrder):
def get_price_in_cents(self):
"""
:return int Return the price in cents for this order.
"""
raise NotImplementedError
def get_return_url(self):
raise NotImplementedError(
"Please override 'get_return_url' on the '{model_name}'".format(
model_name=self.\_meta.object_name
)
)
There is a management command that will sync the payment methods for you. This can be used if you want the users to select a payment method/issuer on your own site.
manage.py sync_payment_methods
There is a command that will call the function process_notification
to handle notifications. This can be added to a crontab.
manage.py adyen_maintenance
DJADYEN_SERVER_KEY
This is the server key. This should be a secret string.DJADYEN_CLIENT_KEY
This is the client key. This key will be used in the components in the frontend.DJADYEN_MERCHANT_ACCOUNT
This is the merchant accont that is used in Adyen.DJADYEN_ORDER_MODELS
A list of models that are used to store Orders (Inherit from AdyenOrder). The models should be strings in the <app_label>.<model_name> formDJADYEN_NOTIFICATION_KEY
The key to verify the notifications are from adyen
DJADYEN_CURRENCYCODE
(default='EUR') This can be set to any other currency Adyen supports.DJADYEN_ENVIRONMENT
(default='test') This can be 'test' or 'live'.DJADYEN_APPNAME
(default='Djadyen Payment') This is the name that will be send along with the payment.DJADYEN_REFETCH_OLD_STATUS
(default=False) This is so you will always have the latest saved status. This will cause an extra db query!DJADYEN_HANDLE_NOTIFICATION_MINUTES_AGO
(default=15) This defaults to 15 minutes. You can change the value to make this shorter or longer depending on the need.
There is an abstract order in this package. This will save you some time on creating an order for adyen. There are some features on the order that will make it easier to integrate your order with this package.
The added fields are:
status
This is the status of the object. This will be changed by adyen.created_at
This field is used for when the order is created.reference
This field is a communication field. It is not used outside the communication. This will be set by uuid4, but can be overwritten.psp_reference
This field is the reference from Adyen. With this field you are able to search in the Adyen inderface.payment_option
This is the Adyen payment option from this package.issuer
This is the Adyen issuer from this package.
You should implement the following methods
get_price_in_cents
Return the price to be paid for this orderprocess_authorized_notification
Process a 'authorized' notification which adyen has sentprocess_notification
Process the notification, if you are using the adyen-maintenance management command
This view is used to show the payment page.
This page can be customized in 2 ways.
- overwrite the template (
adyen/pay,html
) - Overwrite the view and changing the
template_name
from djadyen.views import AdyenPaymentView
class PaymentView(AdyenPaymentView):
template_name = "my_adyen/pay.html" # Optional
Adyen also creates a response. This will help you with catching the response. This view will check if the response from Adyen is valid. It will also provide some usefull functions so you don't have to overwrite anything.
In this example the order is automaticly fetched from the reference that is passed in the merchantReference. It will also set the order in the self object for easy access. In the done function the order is saved and the template will be rendered.
from djadyen.views import AdyenResponseView
from djadyen.choices import Status
class ConfirmationView(AdyenResponseView, TemplateView):
template_name = 'my_project/confirmation.html'
model = Order
def handle_authorised(self):
self.order.status = Status.Authorised
return self.done()
Setup the standard notifications in Adyen. These will comunicate about the payments if they were succesful or not. This is very important because the notifications will be needed when a payment is redirected with a pending payment.
The notifications will be stored in the database. You need to write the handling of the notifications yourself or use the adyen_maintenance
command.