Skip to main content

Razorpay IPN Django Handler

A Django app for handling Razorpay Instant Payment Notification (IPN) webhook events, designed to manage payment, order, and subscription notifications seamlessly with support for signal-based event tracking.

Features

  • Full support for handling Razorpay webhook events
  • Built-in models for storing payment, subscription, refund, and other event data
  • Signal-based notifications for valid and invalid IPN events
  • Signature verification for secure processing

Installation

Install the package via pip:

pip install razorpay-ipn-django-handler

Configuration

Step 1: Add to Installed Apps

In your Django settings.py, add razorpay_ipn_django_handler:

INSTALLED_APPS = [
    ...,
    "razorpay_ipn_django_handler",
]

Step 2: Configure URLs

In your project’s urls.py, include the app’s URL configuration for webhook notifications:

from django.urls import path, include

urlpatterns = [
    ...,
    path("payment/razorpay/", include("razorpay_ipn_django_handler.urls")),
]

For example, if your server is https://yourdomain.com, Razorpay notifications will be processed at https://yourdomain.com/payment/razorpay/webhook/.

Note: Customize the "payment/razorpay/" URL to suit your structure if needed.

Step 3: Configure the Webhook Secret

Load the webhook secret from your environment in settings.py:

import os

RAZORPAY_WEBHOOK_SECRET = os.environ["RAZORPAY_WEBHOOK_SECRET"]

Use the exact secret configured for this webhook in the Razorpay Dashboard. API keys are not required by this package.

Step 4: Migrate Database

Run migrations to create the necessary database tables:

python manage.py migrate

Do not run makemigrations for the package. Versioned migrations are included in each release.

Signal Setup

The app provides signals for handling valid and invalid IPN events, allowing custom processing based on event types.

Setting Up Signal Handlers

In one of your app files, such as signals.py, register handlers for IPN events:

from django.dispatch import receiver
from razorpay_ipn_django_handler.signals import valid_razorpay_ipn_received, invalid_razorpay_ipn_received
from razorpay_ipn_django_handler.models import RazorpayIPN

# Handle valid IPN events
@receiver(valid_razorpay_ipn_received)
def handle_valid_ipn(sender, instance, **kwargs):
    print("Received valid IPN event:", instance.event_type)
    # Process the IPN instance as needed

# Handle invalid IPN events
@receiver(invalid_razorpay_ipn_received)
def handle_invalid_ipn(sender, **kwargs):
    print("Invalid IPN received")
    # Log or handle invalid IPN events

Here, instance provides a RazorpayIPN object containing event_type, the raw payload, and links to any related payment, refund, invoice, subscription, or order.

Webhook event IDs are processed idempotently. A valid repeated delivery receives a successful duplicate response without creating another event. Invalid signatures are never persisted and cannot reserve an event ID.

Models Overview

The following models are included to manage event data and related details effectively:

1. RazorpayIPN

Represents an IPN event with fields to track event type, account ID, signature verification, and related details.

2. Payment

Tracks payment details including amount, status, method, and optional metadata such as UPI, card, or wallet details.

3. Subscription

Captures subscription events, including plan ID, quantity, status, schedule changes, and metadata.

4. Refund

Records refund details, including refund amount, status, batch ID, and additional notes.

5. Order

Stores order-specific details such as amount, status, receipt number, and custom notes.

These models make it easier to track Razorpay events, allowing you to link each IPN event to associated payments, subscriptions, refunds, and orders as per your requirements.

Example Usage

To verify a Razorpay webhook signature, use the verify_signature method on a RazorpayIPN instance:

ipn_instance = RazorpayIPN(
    event_id=event_id,
    event_type=payload_data["event"],
    account_id=payload_data["account_id"],
    payload=payload_data,
)
signature_valid = ipn_instance.verify_signature(body=request_body, signature=header_signature)
if signature_valid:
    # Process the event
else:
    # Handle invalid signature

Example Event Processing

In your signal handler, you can access the event data for custom processing:

@receiver(valid_razorpay_ipn_received)
def process_payment_event(sender, instance, **kwargs):
    if instance.event_type == 'payment.authorized':
        # Add logic to handle authorized payment events
    elif instance.event_type == 'subscription.activated':
        # Add logic to handle subscription activation

Contributing

We welcome contributions to enhance the functionality of this library. Feel free to open issues, suggest features, or submit pull requests on GitHub.

Run the test suite with:

DJANGO_SETTINGS_MODULE=test_settings python -m django test razorpay_ipn_django_handler

License

This project is licensed under the MIT License. See the LICENSE file for more details.

About the Author

I am [Arpan Sahu], a developer specializing in web development, payment integrations, and more. Feel free to check out my portfolio to learn more about my work:

Visit My Portfolio

If you have any questions or are interested in collaborating, please reach out via my portfolio contact form or directly through LinkedIn.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

razorpay_ipn_django_handler-1.1.0.tar.gz (21.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

razorpay_ipn_django_handler-1.1.0-py3-none-any.whl (22.6 kB view details)

Uploaded Python 3

File details

Details for the file razorpay_ipn_django_handler-1.1.0.tar.gz.

File metadata

File hashes

Hashes for razorpay_ipn_django_handler-1.1.0.tar.gz
Algorithm Hash digest
SHA256 f992db643637a22bd1097a8acc0ad1904e075385c4ba0612b0bd71cd354caa6c
MD5 b00d5c3bb4cbd28433fe83c9adde30e1
BLAKE2b-256 83ed33abc6c513c631402ceb0a65f376f11fc9d5a074d9dfd59c161e49eada8f

See more details on using hashes here.

File details

Details for the file razorpay_ipn_django_handler-1.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for razorpay_ipn_django_handler-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0f10bb12ed42c9ac0ed3caff445dc64f26d274ac9a223c18518ca6f5157aba37
MD5 e181cddee60ec59a7e884dd81beb1759
BLAKE2b-256 5240da1336674f91371f863516a2e5a9f25f2019cd2eab6bdeb9d0c309a42db1

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

1.1.0 This release

2 files

1.0.0

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page