mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-18 11:51:41 +03:00
37b9901fe8
now you can download & view pdf # Description Please include a summary of the changes and the related issue. Please also include relevant motivation and context. ## Checklist before requesting a review Please delete options that are not relevant. - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my code - [ ] I have commented hard-to-understand areas - [ ] I have ideally added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged ## Screenshots (if appropriate):
109 lines
3.0 KiB
Python
109 lines
3.0 KiB
Python
from datetime import datetime, timedelta
|
|
|
|
from logger import get_logger
|
|
from modules.notification.dto.outputs import DeleteNotificationResponse
|
|
from modules.notification.entity.notification import Notification
|
|
from modules.notification.repository.notifications_interface import (
|
|
NotificationInterface,
|
|
)
|
|
|
|
logger = get_logger(__name__)
|
|
|
|
|
|
class Notifications(NotificationInterface):
|
|
def __init__(self, supabase_client):
|
|
self.db = supabase_client
|
|
|
|
def add_notification(self, notification):
|
|
"""
|
|
Add a notification
|
|
"""
|
|
response = (
|
|
self.db.from_("notifications").insert(notification.dict()).execute()
|
|
).data
|
|
return Notification(**response[0])
|
|
|
|
def update_notification_by_id(
|
|
self,
|
|
notification_id,
|
|
notification,
|
|
):
|
|
if notification_id is None:
|
|
logger.info("Notification id is required")
|
|
return None
|
|
|
|
"""Update a notification by id"""
|
|
response = (
|
|
self.db.from_("notifications")
|
|
.update(notification.dict(exclude_unset=True))
|
|
.filter("id", "eq", notification_id)
|
|
.execute()
|
|
).data
|
|
|
|
if response == []:
|
|
logger.info(f"Notification with id {notification_id} not found")
|
|
return None
|
|
|
|
return Notification(**response[0])
|
|
|
|
def remove_notification_by_id(self, notification_id):
|
|
"""
|
|
Remove a notification by id
|
|
Args:
|
|
notification_id (UUID): The id of the notification
|
|
|
|
Returns:
|
|
str: Status message
|
|
"""
|
|
response = (
|
|
self.db.from_("notifications")
|
|
.delete()
|
|
.filter("id", "eq", notification_id)
|
|
.execute()
|
|
.data
|
|
)
|
|
|
|
if response == []:
|
|
logger.info(f"Notification with id {notification_id} not found")
|
|
return None
|
|
|
|
return DeleteNotificationResponse(
|
|
status="deleted", notification_id=notification_id
|
|
)
|
|
|
|
def remove_notifications_by_chat_id(self, chat_id):
|
|
"""
|
|
Remove all notifications for a chat
|
|
Args:
|
|
chat_id (UUID): The id of the chat
|
|
"""
|
|
(
|
|
self.db.from_("notifications")
|
|
.delete()
|
|
.filter("chat_id", "eq", chat_id)
|
|
.execute()
|
|
).data
|
|
|
|
def get_notifications_by_chat_id(self, chat_id):
|
|
"""
|
|
Get all notifications for a chat
|
|
Args:
|
|
chat_id (UUID): The id of the chat
|
|
|
|
Returns:
|
|
list[Notification]: The notifications
|
|
"""
|
|
five_minutes_ago = (datetime.now() - timedelta(minutes=5)).strftime(
|
|
"%Y-%m-%d %H:%M:%S.%f"
|
|
)
|
|
|
|
notifications = (
|
|
self.db.from_("notifications")
|
|
.select("*")
|
|
.filter("chat_id", "eq", chat_id)
|
|
.filter("datetime", "gt", five_minutes_ago)
|
|
.execute()
|
|
).data
|
|
|
|
return [Notification(**notification) for notification in notifications]
|