* fix: onboarding invitations overflow (#1575) * fix: onboarding invitations overflow * fix: user avatar in the notification card * style: update graph grid color * fix: no 'Create by me' label coming up (#1573) * feat: added new issue subscriber table * dev: notification model * feat: added CRUD operation for issue subscriber * Revert "feat: added CRUD operation for issue subscriber" This reverts commit b22e0625768f0b096b5898936ace76d6882b0736. * feat: added CRUD operation for issue subscriber * dev: notification models and operations * dev: remove delete endpoint response data * dev: notification endpoints and fix bg worker for saving notifications * feat: added list and unsubscribe function in issue subscriber * dev: filter by snoozed and response update for list and permissions * dev: update issue notifications * dev: notification segregation * dev: update notifications * dev: notification filtering * dev: add issue name in notifications * dev: notification new endpoints * fix: pushing local settings * feat: notification workflow setup and made basic UI * style: improved UX with toast alerts and other interactions refactor: changed classnames according to new theme structure, changed all icons to material icons * feat: showing un-read notification count * feat: not showing 'subscribe' button on issue created by user & assigned to user not showing 'Create by you' for view & guest of the workspace * fix: 'read' -> 'unread' heading, my issue wrong filter * feat: made snooze dropdown & modal feat: switched to calendar * fix: minor ui fixes * feat: snooze modal date/time select * fix: params for read/un-read notification * style: snooze notification modal * fix: no label for 'Create by me' * fix: no label for 'Create by me' * fix: removed console log * fix: tooltip going behind popover --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: pablohashescobar <nikhilschacko@gmail.com> Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com> * style: tooltip on notification header actions (#1577) * style: tooltip on notification header * chore: update tooltip content --------- Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com> * fix: user migrations for back population (#1578) * fix: total notifications count (#1579) * fix: notification card (#1583) * feat: add new icons package (#1586) * feat: add material icons package * chore: replace issue view icons * chore: notification ordering (#1584) * fix: uuid error when cycle and module updates (#1585) * refactor: height of popover & api fetch call (#1587) * fix: snooze dropdown overflow (#1588) * fix: notification subscribe endpoint (#1593) * refactor: height of popover & api fetch call * fix: notification subscribe endpoint * chore: notification empty state overflow (#1592) * chore: notification empty state overflow * fix: white logo * fix: custom theme default values * fix: custom theme default values * fix: issues count to remove archived issues (#1591) * dev: background migration for user custom themes (#1590) --------- Co-authored-by: Dakshesh Jain <65905942+dakshesh14@users.noreply.github.com> Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: pablohashescobar <nikhilschacko@gmail.com> Co-authored-by: Nikhil <118773738+pablohashescobar@users.noreply.github.com> Co-authored-by: gurusainath <gurusainath007@gmail.com>
258 lines
9.8 KiB
Python
258 lines
9.8 KiB
Python
# Django imports
|
|
from django.db.models import Q
|
|
from django.utils import timezone
|
|
|
|
# Third party imports
|
|
from rest_framework import status
|
|
from rest_framework.response import Response
|
|
from sentry_sdk import capture_exception
|
|
|
|
# Module imports
|
|
from .base import BaseViewSet, BaseAPIView
|
|
from plane.db.models import Notification, IssueAssignee, IssueSubscriber, Issue
|
|
from plane.api.serializers import NotificationSerializer
|
|
|
|
|
|
class NotificationViewSet(BaseViewSet):
|
|
model = Notification
|
|
serializer_class = NotificationSerializer
|
|
|
|
def get_queryset(self):
|
|
return (
|
|
super()
|
|
.get_queryset()
|
|
.filter(
|
|
workspace__slug=self.kwargs.get("slug"),
|
|
receiver_id=self.request.user.id,
|
|
)
|
|
.select_related("workspace", "project," "triggered_by", "receiver")
|
|
)
|
|
|
|
def list(self, request, slug):
|
|
try:
|
|
snoozed = request.GET.get("snoozed", "false")
|
|
archived = request.GET.get("archived", "false")
|
|
read = request.GET.get("read", "true")
|
|
|
|
# Filter type
|
|
type = request.GET.get("type", "all")
|
|
|
|
notifications = Notification.objects.filter(
|
|
workspace__slug=slug, receiver_id=request.user.id
|
|
).order_by("snoozed_till", "-created_at")
|
|
|
|
# Filter for snoozed notifications
|
|
if snoozed == "false":
|
|
notifications = notifications.filter(
|
|
Q(snoozed_till__gte=timezone.now()) | Q(snoozed_till__isnull=True),
|
|
)
|
|
|
|
if snoozed == "true":
|
|
notifications = notifications.filter(
|
|
Q(snoozed_till__lt=timezone.now()) | Q(snoozed_till__isnull=False)
|
|
)
|
|
|
|
if read == "false":
|
|
notifications = notifications.filter(read_at__isnull=True)
|
|
|
|
# Filter for archived or unarchive
|
|
if archived == "false":
|
|
notifications = notifications.filter(archived_at__isnull=True)
|
|
|
|
if archived == "true":
|
|
notifications = notifications.filter(archived_at__isnull=False)
|
|
|
|
# Subscribed issues
|
|
if type == "watching":
|
|
issue_ids = IssueSubscriber.objects.filter(
|
|
workspace__slug=slug, subscriber_id=request.user.id
|
|
).values_list("issue_id", flat=True)
|
|
notifications = notifications.filter(entity_identifier__in=issue_ids)
|
|
|
|
# Assigned Issues
|
|
if type == "assigned":
|
|
issue_ids = IssueAssignee.objects.filter(
|
|
workspace__slug=slug, assignee_id=request.user.id
|
|
).values_list("issue_id", flat=True)
|
|
notifications = notifications.filter(entity_identifier__in=issue_ids)
|
|
|
|
# Created issues
|
|
if type == "created":
|
|
issue_ids = Issue.objects.filter(
|
|
workspace__slug=slug, created_by=request.user
|
|
).values_list("pk", flat=True)
|
|
notifications = notifications.filter(entity_identifier__in=issue_ids)
|
|
|
|
serializer = NotificationSerializer(notifications, many=True)
|
|
return Response(serializer.data, status=status.HTTP_200_OK)
|
|
except Exception as e:
|
|
capture_exception(e)
|
|
return Response(
|
|
{"error": "Something went wrong please try again later"},
|
|
status=status.HTTP_400_BAD_REQUEST,
|
|
)
|
|
|
|
def partial_update(self, request, slug, pk):
|
|
try:
|
|
notification = Notification.objects.get(
|
|
workspace__slug=slug, pk=pk, receiver=request.user
|
|
)
|
|
# Only read_at and snoozed_till can be updated
|
|
notification_data = {
|
|
"snoozed_till": request.data.get("snoozed_till", None),
|
|
}
|
|
serializer = NotificationSerializer(
|
|
notification, data=notification_data, partial=True
|
|
)
|
|
|
|
if serializer.is_valid():
|
|
serializer.save()
|
|
return Response(serializer.data, status=status.HTTP_200_OK)
|
|
return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST)
|
|
except Notification.DoesNotExist:
|
|
return Response(
|
|
{"error": "Notification does not exists"},
|
|
status=status.HTTP_400_BAD_REQUEST,
|
|
)
|
|
except Exception as e:
|
|
capture_exception(e)
|
|
return Response(
|
|
{"error": "Something went wrong please try again later"},
|
|
status=status.HTTP_400_BAD_REQUEST,
|
|
)
|
|
|
|
def mark_read(self, request, slug, pk):
|
|
try:
|
|
notification = Notification.objects.get(
|
|
receiver=request.user, workspace__slug=slug, pk=pk
|
|
)
|
|
notification.read_at = timezone.now()
|
|
notification.save()
|
|
serializer = NotificationSerializer(notification)
|
|
return Response(serializer.data, status=status.HTTP_200_OK)
|
|
except Notification.DoesNotExist:
|
|
return Response(
|
|
{"error": "Notification does not exists"},
|
|
status=status.HTTP_400_BAD_REQUEST,
|
|
)
|
|
except Exception as e:
|
|
capture_exception(e)
|
|
return Response(
|
|
{"error": "Something went wrong please try again later"},
|
|
status=status.HTTP_400_BAD_REQUEST,
|
|
)
|
|
|
|
def mark_unread(self, request, slug, pk):
|
|
try:
|
|
notification = Notification.objects.get(
|
|
receiver=request.user, workspace__slug=slug, pk=pk
|
|
)
|
|
notification.read_at = None
|
|
notification.save()
|
|
serializer = NotificationSerializer(notification)
|
|
return Response(serializer.data, status=status.HTTP_200_OK)
|
|
except Notification.DoesNotExist:
|
|
return Response(
|
|
{"error": "Notification does not exists"},
|
|
status=status.HTTP_400_BAD_REQUEST,
|
|
)
|
|
except Exception as e:
|
|
capture_exception(e)
|
|
return Response(
|
|
{"error": "Something went wrong please try again later"},
|
|
status=status.HTTP_400_BAD_REQUEST,
|
|
)
|
|
|
|
def archive(self, request, slug, pk):
|
|
try:
|
|
notification = Notification.objects.get(
|
|
receiver=request.user, workspace__slug=slug, pk=pk
|
|
)
|
|
notification.archived_at = timezone.now()
|
|
notification.save()
|
|
serializer = NotificationSerializer(notification)
|
|
return Response(serializer.data, status=status.HTTP_200_OK)
|
|
except Notification.DoesNotExist:
|
|
return Response(
|
|
{"error": "Notification does not exists"},
|
|
status=status.HTTP_400_BAD_REQUEST,
|
|
)
|
|
except Exception as e:
|
|
capture_exception(e)
|
|
return Response(
|
|
{"error": "Something went wrong please try again later"},
|
|
status=status.HTTP_400_BAD_REQUEST,
|
|
)
|
|
|
|
def unarchive(self, request, slug, pk):
|
|
try:
|
|
notification = Notification.objects.get(
|
|
receiver=request.user, workspace__slug=slug, pk=pk
|
|
)
|
|
notification.archived_at = None
|
|
notification.save()
|
|
serializer = NotificationSerializer(notification)
|
|
return Response(serializer.data, status=status.HTTP_200_OK)
|
|
except Notification.DoesNotExist:
|
|
return Response(
|
|
{"error": "Notification does not exists"},
|
|
status=status.HTTP_400_BAD_REQUEST,
|
|
)
|
|
except Exception as e:
|
|
capture_exception(e)
|
|
return Response(
|
|
{"error": "Something went wrong please try again later"},
|
|
status=status.HTTP_400_BAD_REQUEST,
|
|
)
|
|
|
|
|
|
class UnreadNotificationEndpoint(BaseAPIView):
|
|
def get(self, request, slug):
|
|
try:
|
|
# Watching Issues Count
|
|
watching_issues_count = Notification.objects.filter(
|
|
workspace__slug=slug,
|
|
receiver_id=request.user.id,
|
|
read_at__isnull=True,
|
|
archived_at__isnull=True,
|
|
entity_identifier__in=IssueSubscriber.objects.filter(
|
|
workspace__slug=slug, subscriber_id=request.user.id
|
|
).values_list("issue_id", flat=True),
|
|
).count()
|
|
|
|
# My Issues Count
|
|
my_issues_count = Notification.objects.filter(
|
|
workspace__slug=slug,
|
|
receiver_id=request.user.id,
|
|
read_at__isnull=True,
|
|
archived_at__isnull=True,
|
|
entity_identifier__in=IssueAssignee.objects.filter(
|
|
workspace__slug=slug, assignee_id=request.user.id
|
|
).values_list("issue_id", flat=True),
|
|
).count()
|
|
|
|
# Created Issues Count
|
|
created_issues_count = Notification.objects.filter(
|
|
workspace__slug=slug,
|
|
receiver_id=request.user.id,
|
|
read_at__isnull=True,
|
|
archived_at__isnull=True,
|
|
entity_identifier__in=Issue.objects.filter(
|
|
workspace__slug=slug, created_by=request.user
|
|
).values_list("pk", flat=True),
|
|
).count()
|
|
|
|
return Response(
|
|
{
|
|
"watching_issues": watching_issues_count,
|
|
"my_issues": my_issues_count,
|
|
"created_issues": created_issues_count,
|
|
},
|
|
status=status.HTTP_200_OK,
|
|
)
|
|
except Exception as e:
|
|
capture_exception(e)
|
|
return Response(
|
|
{"error": "Something went wrong please try again later"},
|
|
status=status.HTTP_400_BAD_REQUEST,
|
|
)
|