Skip to main content

Created to allow Django projects to be used as a HTTP backend for AWS API Gateway websockets

Project description

Django AWS API Gateway WebSockets

CI Build Status Coverage PyPI Read the Docs Python Django License

Django AWS API Gateway WebSockets lets Django projects use AWS API Gateway WebSocket APIs without running a dedicated WebSocket server.

AWS API Gateway manages the WebSocket connection. Django receives API Gateway events as normal HTTP requests and can send messages back to connected clients through the AWS API Gateway Management API.

This project is designed for Django applications that want WebSocket-style features while keeping a traditional Django request/response deployment model.

Documentation

Full documentation is available on Read the Docs:

https://django-aws-api-gateway-websockets.readthedocs.io/

Useful starting points:

Features

  • Handle AWS API Gateway WebSocket events with Django class-based views.
  • Track WebSocket connections in the Django database.
  • Associate connections with Django users where available.
  • Group connections using channels.
  • Send messages to:
    • one connection;
    • all connections for a user;
    • all connections in a channel;
    • all connected clients.
  • Create and manage API Gateway resources from Django Admin or management commands.
  • Add custom API Gateway routes for different Django views.
  • Use WebSocket tokens for authenticated connection protection.
  • Rate limit WebSocket connection attempts.
  • Restrict handlers using Django permissions.
  • Use mixins to add WebSocket connection details to template context.

When to use this package

Use this package if you want:

  • AWS API Gateway to manage WebSocket connections;
  • Django to receive WebSocket events as HTTP requests;
  • to avoid running a dedicated ASGI WebSocket server;
  • to send messages from Django to connected browser clients;
  • to group connections into channels for multicast messaging;
  • to integrate WebSocket behaviour with existing Django models, views, admin, permissions, and management commands.

This package is not a replacement for Django Channels. Django Channels is a better fit if you want Django itself to run an ASGI WebSocket server.

Requirements

  • Python 3.10+
  • Django 4.2+
  • AWS account with API Gateway permissions
  • Boto3-compatible AWS credentials or IAM role

See the installation guide and AWS IAM setup guide for details.

Installation

Install from PyPI:

pip install django-aws-api-gateway-websockets

Add the app to INSTALLED_APPS:

INSTALLED_APPS += ["django-aws-api-gateway-websockets"]

Run migrations:

python manage.py migrate

See the full quickstart for a working example.

Minimal example

Add a Django URL route with a route slug:

from django.urls import path

from .views import ExampleWebSocketView

urlpatterns = [
    path(
        "ws/<slug:route>",
        ExampleWebSocketView.as_view(),
        name="example_websocket",
    ),
]

Create a WebSocket view:

from django.http import JsonResponse
from django_aws_api_gateway_websockets.views import WebSocketView


class ExampleWebSocketView(WebSocketView):
    def default(self, request, *args, **kwargs):
        self.websocket_session.send_message({})
        return JsonResponse({"ok": True})

Create a WebSocket view:

from django.http import JsonResponse

from django_aws_api_gateway_websockets.views import WebSocketView


class ExampleWebSocketView(WebSocketView):
    def default(self, request, *args, **kwargs):
        self.websocket_session.send_message(
            {
                "type": "reply",
                "message": "Hello from Django",
            }
        )

        return JsonResponse({"ok": True})

Connect from the browser:

const socket = new WebSocket("wss://ws.example.com?channel=example");

socket.onmessage = function (event) {
    const message = JSON.parse(event.data);
    console.log("Received:", message);
};

socket.onopen = function () {
    socket.send(JSON.stringify({
        action: "default",
        message: "Hello from the browser"
    }));
};

For production usage, read the documentation on WebSocket tokens and security.

AWS setup

The package can create and configure API Gateway WebSocket resources using Django Admin actions or management commands. Typical setup steps:

  1. Configure AWS credentials or an IAM role.
  2. Create an record. ApiGateway
  3. Create the AWS API Gateway.
  4. Optionally create a custom domain.
  5. Configure DNS.
  6. Connect from your frontend client.

See the full API Gateway setup guide.

Management commands

The package includes management commands for API Gateway setup and cleanup.

python manage.py createApiGateway --pk=<api_gateway_pk>
python manage.py createCustomDomain --pk=<api_gateway_pk>
python manage.py clearWebSocketSessions
python manage.py cleanupWebSocketTokens

See the management commands documentation for details.

Security

Version 3.0.0 introduced significant security improvements, including:

  • WebSocket token protection;
  • single-use session-bound connection tokens;
  • connection attempt rate limiting;
  • handler whitelisting;
  • Django permission checks;
  • stricter input validation;
  • channel name validation;
  • message size validation;
  • safer debug output;
  • audit logging for admin actions.

For authenticated production WebSocket endpoints, read:

To report a vulnerability, see SECURITY.md.

Development

Clone the repository:

git clone https://github.com/StevenMapes/django-aws-api-gateway-websockets.git
cd django-aws-api-gateway-websockets

Install development requirements into your virtual environment. Run tests:

pip install pytest-django
coverage erase
python -W error::DeprecationWarning -W error::PendingDeprecationWarning -m coverage run --parallel -m pytest --ds tests.settings
coverage combine
coverage report

Build the documentation locally:

cd docs
pip install -r requirements.txt
make html

See the contributing guide for more information.

Changelog

See the changelog for release history.

License

This project is licensed under the MIT License. See LICENSE.

Project details


Download files

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

Source Distribution

django_aws_api_gateway_websockets-3.0.0.tar.gz (202.7 kB view details)

Uploaded Source

Built Distribution

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

File details

Details for the file django_aws_api_gateway_websockets-3.0.0.tar.gz.

File metadata

File hashes

Hashes for django_aws_api_gateway_websockets-3.0.0.tar.gz
Algorithm Hash digest
SHA256 6df3ad577cb39151218a34e4c501c526d20afb5a21bd7d629a20fe9cc2454f04
MD5 5501146f1aa53e549f20f6d1949591f6
BLAKE2b-256 2240280f3fc5d9cfdfe9c86c3b4319a39fbd494c50f8dc22aa9a0c2c10c3912a

See more details on using hashes here.

File details

Details for the file django_aws_api_gateway_websockets-3.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_aws_api_gateway_websockets-3.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 fd9885242a399eebaac86c47cea0a10fffc4b7dec2355b1bb935e3c5811affef
MD5 75229c4c05f5e1af55a5aafcd83dafd6
BLAKE2b-256 f9f0471bf1433770b0183bae44a26f808c67ec854dd993fcd2400e48b57a0f52

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page