Metadata-Version: 2.4
Name: django-oscar-stripe-sca
Version: 0.8.2
Summary: Stripe Checkout (with Payment Intents) payment module for django-oscar
Keywords: Payment,Stripe
Author-email: Steve Bradshaw <steve@pcfive.co.uk>
Description-Content-Type: text/x-rst
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3 :: Only
License-File: LICENSE
Requires-Dist: django>=3.2
Requires-Dist: django-oscar>=2
Requires-Dist: stripe>=2.27.0
Project-URL: Homepage, https://github.com/st8st8/django-oscar-stripe-sca

===================================
Stripe integration for django-oscar
===================================

pip3 install django-oscar-stripe-sca

This is a framework for using Stripe Checkout with a view for being SCA compliant for payments
in Europe after September 2019.  Requires the Python Stripe API (2.27), django 2 and above, django-oscar 2 and above. 
Based in part on django-oscar-stripe and django-oscar-paypal.

Useful information:

* `Stripe's Python API`_

.. _`Stripe's Python API`: https://stripe.com/docs/libraries

Contributing
============

Please do.  Let me know.

Settings
========
Settings are described in the settings.py file:

 - STRIPE_SEND_RECEIPT: (True/False) - whether to send the payment receipt to the purchaser.
 - STRIPE_PUBLISHABLE_KEY: Your key from Stripe.
 - STRIPE_SECRET_KEY: Your secret key from Stripe.
 - STRIPE_COMPRESS_TO_ONE_LINE_ITEM (default True): If True, send the order to stripe as one combined line item, instead of one for each product.
 - STRIPE_USE_PRICES_API (default True): Use Stripe's Prices API to send line items, rather than the defunct line_item object.
   (See https://stripe.com/docs/payments/checkout/migrating-prices).
 - STRIPE_RETURN_URL_BASE: The common portion of the URL parts of the following two URLs.  Not used itself.
 - STRIPE_PAYMENT_SUCCESS_URL: The URL to which Stripe should redirect upon payment success.
 - STRIPE_PAYMENT_CANCEL_URL: The URL to which Stripe should redirect upon payment cancel.

Views
=====
Three urls are provided in apps.py. Three views are provided in the views.py file. 
 - StripeSCAPaymentDetailsView:  This sets up the variables which will be sent to Stripe and renders a templates which injects those variables and redirects to Stripe. Payment will be taken by Stripe as a "Charge" step.
 - StripeSCASuccessResponseView:  This is a form view that is loaded after a successful payment.  The "Place order" button is a form which ultimately tells Stripe to "capture" the payment.
 - StripeSCACancelResponseView:  This is the view that will be shown if the user cancels the payment for any reason.

The latter two views should be the views to which STRIPE_PAYMENT_SUCCESS_URL and STRIPE_PAYMENT_CANCEL_URL refer.

If you want to extend these views you can.  Extend Oscar's checkout app, add three new views to extend these ones, and overwrite the URLs in your checkout apps apps.py file.

=======================================================
Sandbox for the Stripe SCA integration for django-oscar
=======================================================

To get started with the sandbox (on Windows):

Create a venv.

.. code-block::

    >python -m venv .\venv


Activate the venv.

.. code-block::

    >.\venv\Scripts\activate

Install the dependencies, then Oscar Stripe SCA

.. code-block::

    >pip install -r requirements.txt
    >pip install .


Create a file called "settings_local.py" next to "settings.py" and add the following three keys to override the examples given in "settings.py".  These will be the values for your shop and site integration.

.. code-block::

	STRIPE_PUBLISHABLE_KEY = "XXX"
 	STRIPE_SECRET_KEY = "YYY"
 	STRIPE_RETURN_URL_BASE = "https://www.zzz.com"

Run the migrations and start the server:

.. code-block::

    >cd sandbox
    >python manage.py migrate
    >python manage.py runserver

TODO
====
 - The tests have not been updated yet.
 - The STRIPE_PAYMENT_SUCCESS_URL and STRIPE_PAYMENT_CANCEL_URL settings could probably be removed


