Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

baseapp-chats [BA-2236]: Change message subscription to not publish to sender #245

Merged
merged 2 commits into from
Mar 19, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 16 additions & 6 deletions baseapp/baseapp_chats/graphql/subscriptions.py
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
import swapper
from channels.db import database_sync_to_async

from baseapp_core.graphql import get_obj_from_relay_id
from baseapp_core.graphql import get_obj_from_relay_id, get_pk_from_relay_id

Profile = swapper.load_model("baseapp_profiles", "Profile")
ChatRoom = swapper.load_model("baseapp_chats", "ChatRoom")
@@ -97,25 +97,35 @@ class ChatRoomOnMessage(channels_graphql_ws.Subscription):

class Arguments:
room_id = graphene.ID(required=True)
profile_id = graphene.ID(required=True)

@staticmethod
def subscribe(root, info, room_id):
room = database_sync_to_async(get_obj_from_relay_id)(info, room_id)

async def subscribe(root, info, room_id, profile_id):
room = await database_sync_to_async(get_obj_from_relay_id)(info, room_id)
user = info.context.channels_scope["user"]
profile = await database_sync_to_async(get_obj_from_relay_id)(info, profile_id)

if not user.is_authenticated or not database_sync_to_async(user.has_perm)(
"baseapp_chats.view_chatroom", room
"baseapp_profiles.use_profile", profile
):
return []

if not database_sync_to_async(room.participants.filter(profile=profile).exists)():
return []

if not database_sync_to_async(user.has_perm)("baseapp_chats.view_chatroom", room):
return []
return [room_id]

@staticmethod
def publish(payload, info, room_id):
def publish(payload, info, room_id, profile_id):
message = payload["message"]
user = info.context.channels_scope["user"]

if not user.is_authenticated:
return None
if str(message.profile_id) == get_pk_from_relay_id(profile_id):
return None

return ChatRoomOnMessage(message=MessageObjectType._meta.connection.Edge(node=message))

18 changes: 12 additions & 6 deletions baseapp/baseapp_chats/tests/test_graphql_subscriptions.py
Original file line number Diff line number Diff line change
@@ -35,8 +35,8 @@ async def test_user_recieves_news_message_subscription_event(
payload={
"query": textwrap.dedent(
"""
subscription op_name($roomId: ID!) {
chatRoomOnMessage(roomId: $roomId) {
subscription op_name($roomId: ID!, $profileId: ID!) {
chatRoomOnMessage(roomId: $roomId, profileId: $profileId) {
message {
node {
id
@@ -47,7 +47,10 @@ async def test_user_recieves_news_message_subscription_event(
}
"""
),
"variables": {"roomId": room.relay_id},
"variables": {
"roomId": room.relay_id,
"profileId": django_user_client.user.profile.relay_id,
},
"operationName": "op_name",
},
)
@@ -93,8 +96,8 @@ async def test_build_absolute_uri_on_graphql_subscription(
payload={
"query": textwrap.dedent(
"""
subscription op_name($roomId: ID!) {
chatRoomOnMessage(roomId: $roomId) {
subscription op_name($roomId: ID!, $profileId: ID!) {
chatRoomOnMessage(roomId: $roomId, profileId: $profileId) {
message {
node {
profile {
@@ -108,7 +111,10 @@ async def test_build_absolute_uri_on_graphql_subscription(
}
"""
),
"variables": {"roomId": room.relay_id},
"variables": {
"roomId": room.relay_id,
"profileId": django_user_client.user.profile.relay_id,
},
"operationName": "op_name",
},
)