mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
123 lines
6.4 KiB
Python
123 lines
6.4 KiB
Python
![]() |
"""
|
||
|
Provides the following signals:
|
||
|
|
||
|
V1
|
||
|
|
||
|
- zebra_webhook_recurring_payment_failed
|
||
|
- zebra_webhook_invoice_ready
|
||
|
- zebra_webhook_recurring_payment_succeeded
|
||
|
- zebra_webhook_subscription_trial_ending
|
||
|
- zebra_webhook_subscription_final_payment_attempt_failed
|
||
|
- zebra_webhook_subscription_ping_sent
|
||
|
|
||
|
v2
|
||
|
|
||
|
- zebra_webhook_charge_succeeded
|
||
|
- zebra_webhook_charge_failed
|
||
|
- zebra_webhook_charge_refunded
|
||
|
- zebra_webhook_charge_disputed
|
||
|
- zebra_webhook_customer_created
|
||
|
- zebra_webhook_customer_updated
|
||
|
- zebra_webhook_customer_deleted
|
||
|
- zebra_webhook_customer_subscription_created
|
||
|
- zebra_webhook_customer_subscription_updated
|
||
|
- zebra_webhook_customer_subscription_deleted
|
||
|
- zebra_webhook_customer_subscription_trial_will_end
|
||
|
- zebra_webhook_customer_discount_created
|
||
|
- zebra_webhook_customer_discount_updated
|
||
|
- zebra_webhook_customer_discount_deleted
|
||
|
- zebra_webhook_invoice_created
|
||
|
- zebra_webhook_invoice_updated
|
||
|
- zebra_webhook_invoice_payment_succeeded
|
||
|
- zebra_webhook_invoice_payment_failed
|
||
|
- zebra_webhook_invoiceitem_created
|
||
|
- zebra_webhook_invoiceitem_updated
|
||
|
- zebra_webhook_invoiceitem_deleted
|
||
|
- zebra_webhook_plan_created
|
||
|
- zebra_webhook_plan_updated
|
||
|
- zebra_webhook_plan_deleted
|
||
|
- zebra_webhook_coupon_created
|
||
|
- zebra_webhook_coupon_updated
|
||
|
- zebra_webhook_coupon_deleted
|
||
|
- zebra_webhook_transfer_created
|
||
|
- zebra_webhook_transfer_failed
|
||
|
- zebra_webhook_ping
|
||
|
"""
|
||
|
import django.dispatch
|
||
|
|
||
|
WEBHOOK_ARGS = ["customer", "full_json"]
|
||
|
|
||
|
zebra_webhook_recurring_payment_failed = django.dispatch.Signal(providing_args=WEBHOOK_ARGS)
|
||
|
zebra_webhook_invoice_ready = django.dispatch.Signal(providing_args=WEBHOOK_ARGS)
|
||
|
zebra_webhook_recurring_payment_succeeded = django.dispatch.Signal(providing_args=WEBHOOK_ARGS)
|
||
|
zebra_webhook_subscription_trial_ending = django.dispatch.Signal(providing_args=WEBHOOK_ARGS)
|
||
|
zebra_webhook_subscription_final_payment_attempt_failed = django.dispatch.Signal(providing_args=WEBHOOK_ARGS)
|
||
|
zebra_webhook_subscription_ping_sent = django.dispatch.Signal(providing_args=[])
|
||
|
|
||
|
# v2 webhooks
|
||
|
WEBHOOK2_ARGS = ["full_json"]
|
||
|
|
||
|
zebra_webhook_charge_succeeded = django.dispatch.Signal(providing_args=WEBHOOK2_ARGS)
|
||
|
zebra_webhook_charge_failed = django.dispatch.Signal(providing_args=WEBHOOK2_ARGS)
|
||
|
zebra_webhook_charge_refunded = django.dispatch.Signal(providing_args=WEBHOOK2_ARGS)
|
||
|
zebra_webhook_charge_disputed = django.dispatch.Signal(providing_args=WEBHOOK2_ARGS)
|
||
|
zebra_webhook_customer_created = django.dispatch.Signal(providing_args=WEBHOOK2_ARGS)
|
||
|
zebra_webhook_customer_updated = django.dispatch.Signal(providing_args=WEBHOOK2_ARGS)
|
||
|
zebra_webhook_customer_deleted = django.dispatch.Signal(providing_args=WEBHOOK2_ARGS)
|
||
|
zebra_webhook_customer_subscription_created = django.dispatch.Signal(providing_args=WEBHOOK2_ARGS)
|
||
|
zebra_webhook_customer_subscription_updated = django.dispatch.Signal(providing_args=WEBHOOK2_ARGS)
|
||
|
zebra_webhook_customer_subscription_deleted = django.dispatch.Signal(providing_args=WEBHOOK2_ARGS)
|
||
|
zebra_webhook_customer_subscription_trial_will_end = django.dispatch.Signal(providing_args=WEBHOOK2_ARGS)
|
||
|
zebra_webhook_customer_discount_created = django.dispatch.Signal(providing_args=WEBHOOK2_ARGS)
|
||
|
zebra_webhook_customer_discount_updated = django.dispatch.Signal(providing_args=WEBHOOK2_ARGS)
|
||
|
zebra_webhook_customer_discount_deleted = django.dispatch.Signal(providing_args=WEBHOOK2_ARGS)
|
||
|
zebra_webhook_invoice_created = django.dispatch.Signal(providing_args=WEBHOOK2_ARGS)
|
||
|
zebra_webhook_invoice_updated = django.dispatch.Signal(providing_args=WEBHOOK2_ARGS)
|
||
|
zebra_webhook_invoice_payment_succeeded = django.dispatch.Signal(providing_args=WEBHOOK2_ARGS)
|
||
|
zebra_webhook_invoice_payment_failed = django.dispatch.Signal(providing_args=WEBHOOK2_ARGS)
|
||
|
zebra_webhook_invoiceitem_created = django.dispatch.Signal(providing_args=WEBHOOK2_ARGS)
|
||
|
zebra_webhook_invoiceitem_updated = django.dispatch.Signal(providing_args=WEBHOOK2_ARGS)
|
||
|
zebra_webhook_invoiceitem_deleted = django.dispatch.Signal(providing_args=WEBHOOK2_ARGS)
|
||
|
zebra_webhook_plan_created = django.dispatch.Signal(providing_args=WEBHOOK2_ARGS)
|
||
|
zebra_webhook_plan_updated = django.dispatch.Signal(providing_args=WEBHOOK2_ARGS)
|
||
|
zebra_webhook_plan_deleted = django.dispatch.Signal(providing_args=WEBHOOK2_ARGS)
|
||
|
zebra_webhook_coupon_created = django.dispatch.Signal(providing_args=WEBHOOK2_ARGS)
|
||
|
zebra_webhook_coupon_updated = django.dispatch.Signal(providing_args=WEBHOOK2_ARGS)
|
||
|
zebra_webhook_coupon_deleted = django.dispatch.Signal(providing_args=WEBHOOK2_ARGS)
|
||
|
zebra_webhook_transfer_created = django.dispatch.Signal(providing_args=WEBHOOK2_ARGS)
|
||
|
zebra_webhook_transfer_failed = django.dispatch.Signal(providing_args=WEBHOOK2_ARGS)
|
||
|
zebra_webhook_ping = django.dispatch.Signal(providing_args=WEBHOOK2_ARGS)
|
||
|
|
||
|
WEBHOOK_MAP = {
|
||
|
'charge_succeeded': zebra_webhook_charge_succeeded,
|
||
|
'charge_failed': zebra_webhook_charge_failed,
|
||
|
'charge_refunded': zebra_webhook_charge_refunded,
|
||
|
'charge_disputed': zebra_webhook_charge_disputed,
|
||
|
'customer_created': zebra_webhook_customer_created,
|
||
|
'customer_updated': zebra_webhook_customer_updated,
|
||
|
'customer_deleted': zebra_webhook_customer_deleted,
|
||
|
'customer_subscription_created': zebra_webhook_customer_subscription_created,
|
||
|
'customer_subscription_updated': zebra_webhook_customer_subscription_updated,
|
||
|
'customer_subscription_deleted': zebra_webhook_customer_subscription_deleted,
|
||
|
'customer_subscription_trial_will_end': zebra_webhook_customer_subscription_trial_will_end,
|
||
|
'customer_discount_created': zebra_webhook_customer_discount_created,
|
||
|
'customer_discount_updated': zebra_webhook_customer_discount_updated,
|
||
|
'customer_discount_deleted': zebra_webhook_customer_discount_deleted,
|
||
|
'invoice_created': zebra_webhook_invoice_created,
|
||
|
'invoice_updated': zebra_webhook_invoice_updated,
|
||
|
'invoice_payment_succeeded': zebra_webhook_invoice_payment_succeeded,
|
||
|
'invoice_payment_failed': zebra_webhook_invoice_payment_failed,
|
||
|
'invoiceitem_created': zebra_webhook_invoiceitem_created,
|
||
|
'invoiceitem_updated': zebra_webhook_invoiceitem_updated,
|
||
|
'invoiceitem_deleted': zebra_webhook_invoiceitem_deleted,
|
||
|
'plan_created': zebra_webhook_plan_created,
|
||
|
'plan_updated': zebra_webhook_plan_updated,
|
||
|
'plan_deleted': zebra_webhook_plan_deleted,
|
||
|
'coupon_created': zebra_webhook_coupon_created,
|
||
|
'coupon_updated': zebra_webhook_coupon_updated,
|
||
|
'coupon_deleted': zebra_webhook_coupon_deleted,
|
||
|
'transfer_created': zebra_webhook_transfer_created,
|
||
|
'transfer_failed': zebra_webhook_transfer_failed,
|
||
|
'ping': zebra_webhook_ping,
|
||
|
}
|