mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-12-23 16:40:36 +00:00
Adds notify and unnotify helper class methods
In the new paradigm, a notification related to a status has users added to it and removed from it, rather than a new notification being added every time. These helper functions make this behavior consistent.
This commit is contained in:
parent
a9a2da0957
commit
62e57ac931
1 changed files with 55 additions and 34 deletions
|
@ -33,6 +33,31 @@ class Notification(BookWyrmModel):
|
||||||
)
|
)
|
||||||
related_reports = models.ManyToManyField("Report", symmetrical=False)
|
related_reports = models.ManyToManyField("Report", symmetrical=False)
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
@transaction.atomic
|
||||||
|
def notify(cls, user, related_user, **kwargs):
|
||||||
|
"""Create a notification"""
|
||||||
|
if not user.local or user == related_user:
|
||||||
|
return
|
||||||
|
notification, _ = cls.objects.get_or_create(
|
||||||
|
user=user,
|
||||||
|
**kwargs
|
||||||
|
)
|
||||||
|
notification.related_users.add(related_user)
|
||||||
|
notification.unread = True
|
||||||
|
notification.save()
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def unnotify(cls, user, related_user, **kwargs):
|
||||||
|
"""Remove a user from a notification and delete it if that was the only user"""
|
||||||
|
try:
|
||||||
|
notification = cls.objects.filter(user=user, **kwargs).get()
|
||||||
|
except Notification.DoesNotExist:
|
||||||
|
return
|
||||||
|
notification.related_users.remove(related_user)
|
||||||
|
if not notification.related_users.exists():
|
||||||
|
notification.delete()
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
"""checks if notifcation is in enum list for valid types"""
|
"""checks if notifcation is in enum list for valid types"""
|
||||||
|
|
||||||
|
@ -49,14 +74,12 @@ class Notification(BookWyrmModel):
|
||||||
# pylint: disable=unused-argument
|
# pylint: disable=unused-argument
|
||||||
def notify_on_fav(sender, instance, *args, **kwargs):
|
def notify_on_fav(sender, instance, *args, **kwargs):
|
||||||
"""someone liked your content, you ARE loved"""
|
"""someone liked your content, you ARE loved"""
|
||||||
if not instance.status.user.local or instance.status.user == instance.user:
|
Notification.notify(
|
||||||
return
|
instance.status.user,
|
||||||
notification, _ = Notification.objects.get_or_create(
|
instance.user,
|
||||||
user=instance.status.user,
|
|
||||||
notification_type="FAVORITE",
|
|
||||||
related_status=instance.status,
|
related_status=instance.status,
|
||||||
|
notification_type="FAVORITE",
|
||||||
)
|
)
|
||||||
notification.related_users.add(instance.user)
|
|
||||||
|
|
||||||
|
|
||||||
@receiver(models.signals.post_delete, sender=Favorite)
|
@receiver(models.signals.post_delete, sender=Favorite)
|
||||||
|
@ -65,21 +88,16 @@ def notify_on_unfav(sender, instance, *args, **kwargs):
|
||||||
"""oops, didn't like that after all"""
|
"""oops, didn't like that after all"""
|
||||||
if not instance.status.user.local:
|
if not instance.status.user.local:
|
||||||
return
|
return
|
||||||
try:
|
Notification.unnotify(
|
||||||
notification = Notification.objects.filter(
|
instance.status.user,
|
||||||
user=instance.status.user,
|
instance.user,
|
||||||
related_users=instance.user,
|
related_status=instance.status,
|
||||||
related_status=instance.status,
|
notification_type="FAVORITE"
|
||||||
notification_type="FAVORITE",
|
)
|
||||||
).get()
|
|
||||||
except Notification.DoesNotExist:
|
|
||||||
return
|
|
||||||
notification.related_users.remove(instance.user)
|
|
||||||
if not notification.related_users.exists():
|
|
||||||
notification.delete()
|
|
||||||
|
|
||||||
|
|
||||||
@receiver(models.signals.post_save)
|
@receiver(models.signals.post_save)
|
||||||
|
@transaction.atomic
|
||||||
# pylint: disable=unused-argument
|
# pylint: disable=unused-argument
|
||||||
def notify_user_on_mention(sender, instance, *args, **kwargs):
|
def notify_user_on_mention(sender, instance, *args, **kwargs):
|
||||||
"""creating and deleting statuses with @ mentions and replies"""
|
"""creating and deleting statuses with @ mentions and replies"""
|
||||||
|
@ -95,27 +113,29 @@ def notify_user_on_mention(sender, instance, *args, **kwargs):
|
||||||
and instance.reply_parent.user != instance.user
|
and instance.reply_parent.user != instance.user
|
||||||
and instance.reply_parent.user.local
|
and instance.reply_parent.user.local
|
||||||
):
|
):
|
||||||
Notification.objects.create(
|
Notification.notify(
|
||||||
user=instance.reply_parent.user,
|
instance.reply_parent.user,
|
||||||
notification_type="REPLY",
|
instance.user,
|
||||||
related_user=instance.user,
|
|
||||||
related_status=instance,
|
related_status=instance,
|
||||||
|
notification_type="REPLY",
|
||||||
)
|
)
|
||||||
|
|
||||||
for mention_user in instance.mention_users.all():
|
for mention_user in instance.mention_users.all():
|
||||||
# avoid double-notifying about this status
|
# avoid double-notifying about this status
|
||||||
if not mention_user.local or (
|
if not mention_user.local or (
|
||||||
instance.reply_parent and mention_user == instance.reply_parent.user
|
instance.reply_parent and mention_user == instance.reply_parent.user
|
||||||
):
|
):
|
||||||
continue
|
continue
|
||||||
Notification.objects.create(
|
Notification.notify(
|
||||||
user=mention_user,
|
mention_user,
|
||||||
|
instance.user,
|
||||||
notification_type="MENTION",
|
notification_type="MENTION",
|
||||||
related_user=instance.user,
|
|
||||||
related_status=instance,
|
related_status=instance,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@receiver(models.signals.post_save, sender=Boost)
|
@receiver(models.signals.post_save, sender=Boost)
|
||||||
|
@transaction.atomic
|
||||||
# pylint: disable=unused-argument
|
# pylint: disable=unused-argument
|
||||||
def notify_user_on_boost(sender, instance, *args, **kwargs):
|
def notify_user_on_boost(sender, instance, *args, **kwargs):
|
||||||
"""boosting a status"""
|
"""boosting a status"""
|
||||||
|
@ -125,10 +145,10 @@ def notify_user_on_boost(sender, instance, *args, **kwargs):
|
||||||
):
|
):
|
||||||
return
|
return
|
||||||
|
|
||||||
Notification.objects.create(
|
Notification.notify(
|
||||||
user=instance.boosted_status.user,
|
instance.boosted_status.user,
|
||||||
|
instance.user,
|
||||||
related_status=instance.boosted_status,
|
related_status=instance.boosted_status,
|
||||||
related_user=instance.user,
|
|
||||||
notification_type="BOOST",
|
notification_type="BOOST",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -137,12 +157,12 @@ def notify_user_on_boost(sender, instance, *args, **kwargs):
|
||||||
# pylint: disable=unused-argument
|
# pylint: disable=unused-argument
|
||||||
def notify_user_on_unboost(sender, instance, *args, **kwargs):
|
def notify_user_on_unboost(sender, instance, *args, **kwargs):
|
||||||
"""unboosting a status"""
|
"""unboosting a status"""
|
||||||
Notification.objects.filter(
|
Notification.unnotify(
|
||||||
user=instance.boosted_status.user,
|
instance.boosted_status.user,
|
||||||
|
instance.user,
|
||||||
related_status=instance.boosted_status,
|
related_status=instance.boosted_status,
|
||||||
related_user=instance.user,
|
|
||||||
notification_type="BOOST",
|
notification_type="BOOST",
|
||||||
).delete()
|
)
|
||||||
|
|
||||||
|
|
||||||
@receiver(models.signals.post_save, sender=ImportJob)
|
@receiver(models.signals.post_save, sender=ImportJob)
|
||||||
|
@ -162,6 +182,7 @@ def notify_user_on_import_complete(
|
||||||
|
|
||||||
|
|
||||||
@receiver(models.signals.post_save, sender=Report)
|
@receiver(models.signals.post_save, sender=Report)
|
||||||
|
@transaction.atomic
|
||||||
# pylint: disable=unused-argument
|
# pylint: disable=unused-argument
|
||||||
def notify_admins_on_report(sender, instance, *args, **kwargs):
|
def notify_admins_on_report(sender, instance, *args, **kwargs):
|
||||||
"""something is up, make sure the admins know"""
|
"""something is up, make sure the admins know"""
|
||||||
|
@ -171,8 +192,8 @@ def notify_admins_on_report(sender, instance, *args, **kwargs):
|
||||||
| models.Q(is_superuser=True)
|
| models.Q(is_superuser=True)
|
||||||
).all()
|
).all()
|
||||||
for admin in admins:
|
for admin in admins:
|
||||||
Notification.objects.create(
|
notification, _ = Notification.objects.get_or_create(
|
||||||
user=admin,
|
user=admin,
|
||||||
related_report=instance,
|
|
||||||
notification_type="REPORT",
|
notification_type="REPORT",
|
||||||
)
|
)
|
||||||
|
notification.related_reports.add(instance)
|
||||||
|
|
Loading…
Reference in a new issue