Giter Club home page Giter Club logo

wejr's Introduction

[WIP] Websocket by JSON-RPC protocol for Django Channels

Library for using websocket in django(with channels) in jsonrpc way

JSON-RPC specification

https://www.jsonrpc.org/specification

Installing

WIP

Usage example

Add wejr to django INSTALLED_APPS before your apps

INSTALLED_APPS = [
    ...
    "wejr",
    ...
]

Configure channel layer via Redis PubSub

CHANNEL_LAYERS = {
    "default": {
        "BACKEND": "channels_redis.pubsub.RedisPubSubChannelLayer",
        "CONFIG": {
            "hosts": [("localhost", 6379)],
        },
    },
}

Define routers, methods, params schemas

from dataclasses import dataclass, asdict
from wejr.router import Router

@dataclass
class ChatId:
    id: int

@dataclass
class MessageCreated:
    author_id: int
    content: str
    chat_id: int

client = Router()
chat = Router()

@client.method
async def chat_by_id(consumer, request, params: ChatId):
    chat = get_chat_data(params.id)
    consumer.send_result(request, chat)

@chat.method
async def message_created(consumer, request, params: MessageCreated):
    consumer.send_notification("", asdict(params))

Define consumer

from wejr.consumers import AsyncBaseJsonRpcConsumer
from myproject.app.routers import client, chat

class MyConsumer(AsyncBaseJsonRpcConsumer):
    client_router = client
    group_routers = {
        "chat": chat,
    }

Define urls

urlpatterns = [
    re_path(r"v1/ws", MyConsumer.as_asgi()),
]

Extend asgi with websocket

from channels.routing import ProtocolTypeRouter, URLRouter
from django.core.asgi import get_asgi_application

from djangochatws.apps.threadws import urls as ws_urls

application = ProtocolTypeRouter(
    {
        "http": get_asgi_application(),
        "websocket": AuthMiddlewareStack(
            URLRouter(ws_urls.urlpatterns)
        )
    }
)

wejr's People

Contributors

wasth avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.