我正在尝试在订阅时回复用户。例如,在聊天室中,当用户连接到订阅时,订阅会向他响应数据(如欢迎消息),但仅限于刚刚连接的同一用户(无广播)。
我怎样才能做到这一点?:(
更新:我们决定使用渠道。DjangoChannelsGraphqlWs 不允许直接返回消息。
我正在尝试在订阅时回复用户。例如,在聊天室中,当用户连接到订阅时,订阅会向他响应数据(如欢迎消息),但仅限于刚刚连接的同一用户(无广播)。
我怎样才能做到这一点?:(
更新:我们决定使用渠道。DjangoChannelsGraphqlWs 不允许直接返回消息。
看看这个 DjangoChannelsGraphQL 示例。链接指向避免“用户自我通知”的部分(避免用户被告知他自己的行为)。您可以使用相同的技巧仅向执行该操作的用户(例如,刚刚订阅的用户)发送通知。
修改后publish
的处理程序可能如下所示:
def publish(self, info, chatroom=None):
new_msg_chatroom = self["chatroom"]
new_msg_text = self["text"]
new_msg_sender = self["sender"]
new_msg_is_greetings = self["is_greetings"]
# Send greetings message only to the user who caused it.
if new_msg_is_greetings:
if (
not info.context.user.is_authenticated
or new_msg_sender != info.context.user.username
):
return OnNewChatMessage.SKIP
return OnNewChatMessage(
chatroom=chatroom, text=new_msg_text, sender=new_msg_sender
)
我没有测试上面的代码,所以可能会有问题,但我认为它很好地说明了这个想法。