mirror of https://github.com/openspug/spug
24 lines
606 B
Python
24 lines
606 B
Python
# Copyright: (c) OpenSpug Organization. https://github.com/openspug/spug
|
|
# Copyright: (c) <spug.dev@gmail.com>
|
|
# Released under the AGPL-3.0 License.
|
|
from channels.layers import get_channel_layer
|
|
from asgiref.sync import async_to_sync
|
|
import uuid
|
|
|
|
layer = get_channel_layer()
|
|
|
|
|
|
class Channel:
|
|
@staticmethod
|
|
def get_token():
|
|
return uuid.uuid4().hex
|
|
|
|
@staticmethod
|
|
def send_notify(title, content):
|
|
message = {
|
|
'type': 'notify.message',
|
|
'title': title,
|
|
'content': content
|
|
}
|
|
async_to_sync(layer.group_send)('notify', message)
|