Skip to content

okfde/froide-payment

Repository files navigation

Froide payment

A Django app that allows running payment campaigns on FOI requests.

Configure Stripe Webhooks

Include payments.urls in root URL pattern.

urlpatterns = [
    ...
    url(r'^payments/', include('payments.urls')),
    ...
]

Webhook for Credit Card Payments via Payment Intents

Configure these event types:

  • payment_intent.payment_failed
  • payment_intent.succeeded
  • customer.subscription.created
  • customer.subscription.updated
  • customer.subscription.deleted
  • invoice.payment_action_required
  • invoice.upcoming
  • invoice.created

Use this URL on your domain:

/payments/process/creditcard/

Webhook for SEPA Payments

Configure these event types:

  • payment_intent.processing
  • charge.dispute.closed
  • invoice.payment_action_required
  • invoice.upcoming
  • invoice.created
  • invoice.finalized
  • payment_intent.succeeded
  • payment_intent.payment_failed
  • customer.subscription.created
  • customer.subscription.deleted

Use this URL on your domain:

/payments/process/sepa/

Webhook for Sofort Payments

Configure these event types:

  • charge.succeeded
  • charge.failed
  • source.chargeable
  • source.failed

Use this URL on your domain:

/payments/process/sofort/

Webhook for Paypal Payments

Configure these event types:

Use this URL on your domain:

/payments/process/paypal/

Configure Payment variants

PAYMENT_VARIANTS = {
    # 'default': ('payments.dummy.DummyProvider', {})
    'creditcard': ('froide_payment.provider.StripeIntentProvider', {
        # Test API keys
        'public_key': '',
        'secret_key': '',
        # separate Webhook signing secret
        'signing_secret': '',
    }),
   'sepa': ('froide_payment.provider.StripeSourceProvider', {
       # Test API keys
       'public_key': '',
       'secret_key': '',
       # separate Webhook signing secret
       'signing_secret': '',
   }),
    'paypal': ('payments.paypal.PaypalProvider', {
        'client_id': '',
        'secret': '',
        'endpoint': '',
        'capture': True,
        'webhook_id': ''
    }),
    'sofort': ('froide_payment.provider.StripeSofortProvider', {
        # Test API keys
        'public_key': '',
        'secret_key': '',
        # separate Webhook signing secret
        'signing_secret': '',
    }),
}

About

No description or website provided.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •