Payment backends must be listed in settings.SHOP_PAYMENT_BACKENDS
While we could solve this by defining a superclass for all payment backends, the better approach to plugins is to implement inversion-of-control, and let the backends hold a reference to the shop instead.
The reference interface for payment backends is located at
Currently, the shop interface defines the following methods:
Returns the order currently being processed.
Parameters: | request – a Django request object |
---|---|
Return type: | an Order instance |
Adds an extra info field to the order (whatever)
Parameters: |
|
---|
Whether the passed order is fully paid or not
Parameters: | order – an Order instance |
---|---|
Return type: | bool |
Whether the passed order is in a “finished” state
Parameters: | order – an Order instance |
---|---|
Return type: | bool |
Returns the order’s grand total.
Parameters: | order – an Order instance |
---|---|
Return type: | Decimal |
Returns the order’s sum of item prices (without taxes or S&H)
Parameters: | order – an Order instance |
---|---|
Return type: | Decimal |
A short human-readable description of the order
Parameters: | order – an Order instance |
---|---|
Return type: | a string with the short name of the order |
The order’s unique identifier for this shop system
Parameters: | order – an Order instance |
---|---|
Return type: | the primary key of the Order (in the default implementation) |
Returns an Order object given a unique identifier (this is the reverse of get_order_unique_id())
Parameters: | id – identifier for the order |
---|---|
Return type: | the Order object identified by id |
This should be called when the confirmation from the payment processor was called and that the payment was confirmed for a given amount. The processor’s transaction identifier should be passed too, along with an instruction to save the object or not. For instance, if you expect many small confirmations you might want to save all of them at the end in one go (?). Finally the payment method keeps track of what backend was used for this specific payment.
Parameters: |
|
---|
The payment backend should define the following interface for the shop to be able do to anything sensible with it:
The name of the backend (to be displayed to users)
“slug” to prepend to this backend’s URLs (acting as a namespace)
must accept a “shop” argument (to let the shop system inject a reference to it)
Parameters: | shop – an instance of the shop |
---|
should return a list of URLs (similar to urlpatterns), to be added to the URL resolver when urls are loaded. These will be namespaced with the url_namespace attribute by the shop system, so it shouldn’t be done manually.
In order to make your payment backend compatible with the SHOP_FORCE_LOGIN setting please make sure to add the @shop_login_required decorator to any views that your backend provides. See How to secure your views for more information.