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

feature: moving retry to request callback #411

Merged
merged 1 commit into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
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
40 changes: 13 additions & 27 deletions chats/apps/api/v1/rooms/viewsets.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import time
from datetime import timedelta

from django.conf import settings
from django.db import DatabaseError, transaction
from django.db import transaction
from django.db.models import BooleanField, Case, Count, Max, OuterRef, Q, Subquery, When
from django.utils import timezone
from django_filters.rest_framework import DjangoFilterBackend
Expand Down Expand Up @@ -141,6 +140,7 @@ def bulk_update_msgs(self, request, *args, **kwargs):
status=status.HTTP_200_OK,
)

@transaction.atomic
@action(detail=True, methods=["PUT", "PATCH"], url_name="close")
def close(
self, request, *args, **kwargs
Expand All @@ -151,31 +151,17 @@ def close(
# Add send room notification to the channels group
instance = self.get_object()

for attempt in range(settings.MAX_RETRIES):
try:
with transaction.atomic():
tags = request.data.get("tags", None)
instance.close(tags, "agent")
serialized_data = RoomSerializer(instance=instance)
instance.notify_queue("close", callback=True)
instance.notify_user("close")

if not settings.ACTIVATE_CALC_METRICS:
return Response(serialized_data.data, status=status.HTTP_200_OK)

close_room(str(instance.pk))
return Response(serialized_data.data, status=status.HTTP_200_OK)

except DatabaseError as error:
if attempt < settings.MAX_RETRIES - 1:
delay = settings.RETRY_DELAY_SECONDS * (2**attempt)
time.sleep(delay)
continue
else:
return Response(
{"error": f"Transaction failed after retries: {str(error)}"},
status=status.HTTP_500_INTERNAL_SERVER_ERROR,
)
tags = request.data.get("tags", None)
instance.close(tags, "agent")
serialized_data = RoomSerializer(instance=instance)
instance.notify_queue("close", callback=True)
instance.notify_user("close")

if not settings.ACTIVATE_CALC_METRICS:
return Response(serialized_data.data, status=status.HTTP_200_OK)

close_room(str(instance.pk))
return Response(serialized_data.data, status=status.HTTP_200_OK)

def perform_create(self, serializer):
serializer.save()
Expand Down
49 changes: 32 additions & 17 deletions chats/apps/rooms/models.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import json
import time
from datetime import timedelta

import requests
import sentry_sdk
from django.conf import settings
from django.core.exceptions import ObjectDoesNotExist
from django.core.serializers.json import DjangoJSONEncoder
from django.db import models
Expand Down Expand Up @@ -180,23 +183,35 @@ def request_callback(self, room_data: dict):
if self.callback_url is None:
return None

try:
response = requests.post(
self.callback_url,
data=json.dumps(
{"type": "room.update", "content": room_data},
sort_keys=True,
indent=1,
cls=DjangoJSONEncoder,
),
headers={"content-type": "application/json"},
)
response.raise_for_status()

except RequestException as error:
raise RuntimeError(
f"Failed to send callback to {self.callback_url}: {str(error)}"
)
for attempt in range(settings.MAX_RETRIES):
try:
response = requests.post(
self.callback_url,
data=json.dumps(
{"type": "room.update", "content": room_data},
sort_keys=True,
indent=1,
cls=DjangoJSONEncoder,
),
headers={"content-type": "application/json"},
)

if response.status_code == 404:
sentry_sdk.capture_message(
f"Callback returned 404 ERROR for URL: {self.callback_url}"
)
return None
else:
response.raise_for_status()

except RequestException:
if attempt < settings.MAX_RETRIES - 1:
delay = settings.RETRY_DELAY_SECONDS * (2**attempt)
time.sleep(delay)
else:
raise RuntimeError(
f"Failed to send callback to {self.callback_url}"
)

def base_notification(self, content, action):
if self.user:
Expand Down
Loading