2019-02-20 03:18:46 +00:00
|
|
|
|
import logging
|
2019-03-06 11:35:54 +00:00
|
|
|
|
|
2019-03-14 15:40:39 +00:00
|
|
|
|
import requests
|
|
|
|
|
from django.conf import settings
|
2019-03-18 11:57:57 +00:00
|
|
|
|
from django.core.mail import send_mail
|
2020-09-21 17:31:00 +00:00
|
|
|
|
from django.core.exceptions import ObjectDoesNotExist
|
2019-01-09 09:27:54 +00:00
|
|
|
|
from django.db import models
|
2020-06-01 19:49:28 +00:00
|
|
|
|
from django.db.models.signals import post_save, post_delete
|
2019-03-14 15:40:39 +00:00
|
|
|
|
from django.dispatch import receiver
|
2019-12-13 16:20:54 +00:00
|
|
|
|
from django.template import loader
|
2020-06-08 13:02:19 +00:00
|
|
|
|
from django.urls import NoReverseMatch, get_resolver
|
2019-12-13 16:06:25 +00:00
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
2019-02-28 01:21:03 +00:00
|
|
|
|
from djangoldp.fields import LDPUrlField
|
2019-02-20 03:18:46 +00:00
|
|
|
|
from djangoldp.models import Model
|
2019-12-13 16:20:54 +00:00
|
|
|
|
from threading import Thread
|
2019-12-13 14:51:36 +00:00
|
|
|
|
from djangoldp_notification.middlewares import MODEL_MODIFICATION_USER_FIELD
|
2019-12-13 16:20:54 +00:00
|
|
|
|
from djangoldp_notification.permissions import InboxPermissions, SubscriptionsPermissions
|
2020-08-26 09:17:10 +00:00
|
|
|
|
from djangoldp_notification.views import LDPNotificationsViewSet
|
2019-05-02 14:36:08 +00:00
|
|
|
|
|
2019-03-14 15:40:39 +00:00
|
|
|
|
|
|
|
|
|
class Notification(Model):
|
2019-04-30 15:07:20 +00:00
|
|
|
|
user = models.ForeignKey(settings.AUTH_USER_MODEL, related_name='inbox', on_delete=models.deletion.CASCADE)
|
2019-05-07 09:01:26 +00:00
|
|
|
|
author = LDPUrlField()
|
2019-03-01 04:20:21 +00:00
|
|
|
|
object = LDPUrlField()
|
2019-01-09 09:27:54 +00:00
|
|
|
|
type = models.CharField(max_length=255)
|
|
|
|
|
summary = models.TextField()
|
|
|
|
|
date = models.DateTimeField(auto_now_add=True)
|
2019-04-04 10:18:24 +00:00
|
|
|
|
unread = models.BooleanField(default=True)
|
2019-03-14 15:40:39 +00:00
|
|
|
|
|
2019-04-25 11:44:00 +00:00
|
|
|
|
class Meta(Model.Meta):
|
2019-08-07 13:57:57 +00:00
|
|
|
|
owner_field = 'user'
|
2019-06-17 01:34:38 +00:00
|
|
|
|
ordering = ['-date']
|
2019-08-23 12:56:03 +00:00
|
|
|
|
permission_classes = [InboxPermissions]
|
2019-08-01 12:03:00 +00:00
|
|
|
|
anonymous_perms = ['add']
|
2019-08-07 13:57:57 +00:00
|
|
|
|
authenticated_perms = ['inherit']
|
|
|
|
|
owner_perms = ['view', 'change', 'control']
|
2020-08-26 09:17:10 +00:00
|
|
|
|
view_set = LDPNotificationsViewSet
|
2019-01-09 09:27:54 +00:00
|
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
|
return '{}'.format(self.type)
|
2019-01-31 09:44:41 +00:00
|
|
|
|
|
2020-02-04 14:44:11 +00:00
|
|
|
|
def save(self, *args, **kwargs):
|
|
|
|
|
# I cannot send a notification to myself
|
|
|
|
|
if self.author.startswith(settings.SITE_URL):
|
|
|
|
|
try:
|
|
|
|
|
# author is a WebID.. convert to local representation
|
|
|
|
|
author = Model.resolve(self.author.replace(settings.SITE_URL, ''))[1]
|
|
|
|
|
except NoReverseMatch:
|
|
|
|
|
author = None
|
|
|
|
|
if author == self.user:
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
super(Notification, self).save(*args, **kwargs)
|
|
|
|
|
|
2019-03-14 15:40:39 +00:00
|
|
|
|
|
|
|
|
|
class Subscription(Model):
|
2019-01-31 09:44:41 +00:00
|
|
|
|
object = models.URLField()
|
|
|
|
|
inbox = models.URLField()
|
2020-06-08 13:02:19 +00:00
|
|
|
|
field = models.CharField(max_length=255, blank=True, null=True,
|
|
|
|
|
help_text='if set to a field name on the object model, the field will be passed instead of the object instance')
|
2019-01-31 09:44:41 +00:00
|
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
|
return '{}'.format(self.object)
|
|
|
|
|
|
2019-12-13 16:20:54 +00:00
|
|
|
|
class Meta(Model.Meta):
|
|
|
|
|
anonymous_perms = []
|
|
|
|
|
authenticated_perms = ["add", "view", "delete"]
|
|
|
|
|
permission_classes = [SubscriptionsPermissions]
|
|
|
|
|
|
2020-05-22 13:36:49 +00:00
|
|
|
|
|
2020-06-08 13:02:19 +00:00
|
|
|
|
@receiver(post_save, sender=Subscription, dispatch_uid="nested_subscriber_check")
|
|
|
|
|
def create_nested_subscribers(sender, instance, created, **kwargs):
|
|
|
|
|
# save subscriptions for one-to-many nested fields
|
|
|
|
|
if created and not instance.is_backlink and instance.object.startswith(settings.SITE_URL):
|
|
|
|
|
try:
|
|
|
|
|
# object is a WebID.. convert to local representation
|
|
|
|
|
local = Model.resolve(instance.object.replace(settings.SITE_URL, ''))[0]
|
|
|
|
|
nested_fields = Model.get_meta(local, 'nested_fields', [])
|
|
|
|
|
|
|
|
|
|
for nested_field in nested_fields:
|
|
|
|
|
try:
|
|
|
|
|
field = local._meta.get_field(nested_field)
|
|
|
|
|
nested_container = field.related_model
|
2020-05-22 13:36:49 +00:00
|
|
|
|
nested_container_url = Model.absolute_url(nested_container)
|
|
|
|
|
|
2020-06-08 13:02:19 +00:00
|
|
|
|
if field.one_to_many:
|
|
|
|
|
# get the nested view set
|
|
|
|
|
nested_url = str(instance.object) + '1/' + nested_field + '/'
|
|
|
|
|
view, args, kwargs = get_resolver().resolve(nested_url.replace(settings.SITE_URL, ''))
|
|
|
|
|
# get the reverse name for the field
|
|
|
|
|
field_name = view.initkwargs['nested_related_name']
|
|
|
|
|
|
|
|
|
|
if field_name is not None and field_name != '':
|
|
|
|
|
# check that this nested-field subscription doesn't already exist
|
|
|
|
|
existing_subscriptions = Subscription.objects.filter(object=nested_container_url, inbox=instance.inbox,
|
|
|
|
|
field=field_name)
|
|
|
|
|
# save a Subscription on this container
|
|
|
|
|
if not existing_subscriptions.exists():
|
|
|
|
|
Subscription.objects.create(object=nested_container_url, inbox=instance.inbox, is_backlink=True,
|
|
|
|
|
field=field_name)
|
|
|
|
|
except:
|
|
|
|
|
pass
|
|
|
|
|
except:
|
|
|
|
|
pass
|
2020-05-22 13:36:49 +00:00
|
|
|
|
|
|
|
|
|
|
2020-06-01 19:49:28 +00:00
|
|
|
|
|
2019-01-31 09:44:41 +00:00
|
|
|
|
# --- SUBSCRIPTION SYSTEM ---
|
2019-02-20 03:18:46 +00:00
|
|
|
|
@receiver(post_save, dispatch_uid="callback_notif")
|
2020-06-01 19:49:28 +00:00
|
|
|
|
@receiver(post_delete, dispatch_uid="delete_callback_notif")
|
|
|
|
|
def send_notification(sender, instance, **kwargs):
|
2019-04-24 08:20:11 +00:00
|
|
|
|
if sender != Notification:
|
2019-02-20 03:18:46 +00:00
|
|
|
|
threads = []
|
2020-06-08 13:02:19 +00:00
|
|
|
|
recipients = []
|
2019-04-24 08:20:11 +00:00
|
|
|
|
try:
|
2019-12-13 14:51:36 +00:00
|
|
|
|
url_container = settings.BASE_URL + Model.container_id(instance)
|
|
|
|
|
url_resource = settings.BASE_URL + Model.resource_id(instance)
|
2019-04-24 08:20:11 +00:00
|
|
|
|
except NoReverseMatch:
|
|
|
|
|
return
|
|
|
|
|
|
2020-02-04 14:44:11 +00:00
|
|
|
|
# dispatch a notification for every Subscription on this resource
|
2019-12-13 14:51:36 +00:00
|
|
|
|
for subscription in Subscription.objects.filter(models.Q(object=url_resource) | models.Q(object=url_container)):
|
2020-06-08 13:02:19 +00:00
|
|
|
|
if not instance.is_backlink and subscription.inbox not in recipients and \
|
|
|
|
|
(not subscription.is_backlink or not kwargs.get("created")):
|
|
|
|
|
# I may have configured to send the subscription to a foreign key
|
|
|
|
|
if subscription.field is not None and len(subscription.field) > 1:
|
|
|
|
|
try:
|
2020-09-21 17:31:00 +00:00
|
|
|
|
instance = getattr(instance, subscription.field, instance)
|
2020-06-08 13:02:19 +00:00
|
|
|
|
url_resource = settings.BASE_URL + Model.resource_id(instance)
|
|
|
|
|
except NoReverseMatch:
|
|
|
|
|
continue
|
2020-09-21 17:31:00 +00:00
|
|
|
|
except ObjectDoesNotExist:
|
|
|
|
|
continue
|
2020-06-08 13:02:19 +00:00
|
|
|
|
|
2020-06-01 19:49:28 +00:00
|
|
|
|
process = Thread(target=send_request, args=[subscription.inbox, url_resource, instance,
|
|
|
|
|
kwargs.get("created", False)])
|
2020-05-22 13:36:49 +00:00
|
|
|
|
process.start()
|
|
|
|
|
threads.append(process)
|
2020-06-08 13:02:19 +00:00
|
|
|
|
recipients.append(subscription.inbox)
|
2019-03-14 15:40:39 +00:00
|
|
|
|
|
|
|
|
|
|
2019-12-13 14:51:36 +00:00
|
|
|
|
def send_request(target, object_iri, instance, created):
|
2020-06-01 19:49:28 +00:00
|
|
|
|
unknown = str(_("Auteur inconnu"))
|
2019-12-13 14:51:36 +00:00
|
|
|
|
author = getattr(getattr(instance, MODEL_MODIFICATION_USER_FIELD, unknown), "urlid", unknown)
|
|
|
|
|
request_type = "creation" if created else "update"
|
|
|
|
|
|
2019-02-20 03:18:46 +00:00
|
|
|
|
try:
|
2020-02-04 14:44:11 +00:00
|
|
|
|
# local inbox
|
2019-12-13 14:51:36 +00:00
|
|
|
|
if target.startswith(settings.SITE_URL):
|
|
|
|
|
user = Model.resolve_parent(target.replace(settings.SITE_URL, ''))
|
|
|
|
|
Notification.objects.create(user=user, object=object_iri, type=request_type, author=author)
|
2020-02-04 14:44:11 +00:00
|
|
|
|
# external inbox
|
2019-12-13 14:51:36 +00:00
|
|
|
|
else:
|
|
|
|
|
json = {
|
|
|
|
|
"@context": settings.LDP_RDF_CONTEXT,
|
|
|
|
|
"object": object_iri,
|
|
|
|
|
"author": author,
|
|
|
|
|
"type": request_type
|
|
|
|
|
}
|
|
|
|
|
requests.post(target, json=json, headers={"Content-Type": "application/ld+json"})
|
|
|
|
|
except Exception as e:
|
|
|
|
|
logging.error('Djangoldp_notifications: Error with request: {}'.format(e))
|
2019-03-14 15:40:39 +00:00
|
|
|
|
return True
|
2019-03-18 11:57:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@receiver(post_save, sender=Notification)
|
2019-06-11 02:06:44 +00:00
|
|
|
|
def send_email_on_notification(sender, instance, created, **kwargs):
|
2020-08-13 15:42:07 +00:00
|
|
|
|
if created and instance.summary and getattr(settings,'JABBER_DEFAULT_HOST',False) and instance.user.email:
|
2020-02-04 14:44:11 +00:00
|
|
|
|
# get author name, and store in who
|
2019-10-21 15:35:37 +00:00
|
|
|
|
try:
|
2020-02-04 14:44:11 +00:00
|
|
|
|
# local author
|
2019-10-21 15:35:37 +00:00
|
|
|
|
if instance.author.startswith(settings.SITE_URL):
|
2019-12-13 14:51:36 +00:00
|
|
|
|
who = str(Model.resolve_id(instance.author.replace(settings.SITE_URL, '')))
|
2020-02-04 14:44:11 +00:00
|
|
|
|
# external author
|
2019-10-21 15:35:37 +00:00
|
|
|
|
else:
|
|
|
|
|
who = requests.get(instance.author).json()['name']
|
|
|
|
|
except:
|
2020-04-23 16:19:42 +00:00
|
|
|
|
who = "Personne inconnue"
|
2019-10-21 15:35:37 +00:00
|
|
|
|
|
2020-02-04 14:44:11 +00:00
|
|
|
|
# get identifier for resource triggering notification, and store in where
|
2019-10-21 15:35:37 +00:00
|
|
|
|
try:
|
|
|
|
|
if instance.object.startswith(settings.SITE_URL):
|
2019-12-13 14:51:36 +00:00
|
|
|
|
where = str(Model.resolve_id(instance.object.replace(settings.SITE_URL, '')))
|
2019-10-02 14:08:05 +00:00
|
|
|
|
else:
|
2019-10-21 15:35:37 +00:00
|
|
|
|
where = requests.get(instance.object).json()['name']
|
2019-10-02 14:08:05 +00:00
|
|
|
|
except:
|
2020-04-23 16:19:42 +00:00
|
|
|
|
where = "Endroit inconnu"
|
2019-10-21 15:35:37 +00:00
|
|
|
|
|
2019-12-13 14:51:36 +00:00
|
|
|
|
if who == where:
|
2020-04-23 16:19:42 +00:00
|
|
|
|
where = "t'a envoyé un message privé"
|
2019-10-21 15:35:37 +00:00
|
|
|
|
else:
|
2020-04-23 16:19:42 +00:00
|
|
|
|
where = "t'a mentionné sur " + where
|
2019-10-21 15:35:37 +00:00
|
|
|
|
|
2020-08-13 15:42:07 +00:00
|
|
|
|
on = (getattr(settings, 'INSTANCE_DEFAULT_CLIENT', False) or settings.JABBER_DEFAULT_HOST)
|
|
|
|
|
|
2019-10-21 15:35:37 +00:00
|
|
|
|
html_message = loader.render_to_string(
|
|
|
|
|
'email.html',
|
|
|
|
|
{
|
2020-08-13 15:42:07 +00:00
|
|
|
|
'on': on,
|
2019-10-21 15:35:37 +00:00
|
|
|
|
'instance': instance,
|
|
|
|
|
'author': who,
|
|
|
|
|
'object': where
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
send_mail(
|
2020-08-13 15:42:07 +00:00
|
|
|
|
'Notification sur ' + on,
|
2019-10-21 15:35:37 +00:00
|
|
|
|
instance.summary,
|
2020-08-13 15:42:07 +00:00
|
|
|
|
(getattr(settings, 'EMAIL_HOST_USER', False) or "noreply@" + settings.JABBER_DEFAULT_HOST),
|
2019-10-21 15:35:37 +00:00
|
|
|
|
[instance.user.email],
|
|
|
|
|
fail_silently=True,
|
|
|
|
|
html_message=html_message
|
|
|
|
|
)
|