Merge branch 'all-notification-fix' into 'master'
All notification fix See merge request startinblox/djangoldp-packages/djangoldp-notifications!23
This commit is contained in:
commit
555c98a8cb
@ -37,6 +37,19 @@ class Notification(Model):
|
|||||||
def __str__(self):
|
def __str__(self):
|
||||||
return '{}'.format(self.type)
|
return '{}'.format(self.type)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
|
||||||
class Subscription(Model):
|
class Subscription(Model):
|
||||||
object = models.URLField()
|
object = models.URLField()
|
||||||
@ -61,6 +74,7 @@ def send_notification(sender, instance, created, **kwargs):
|
|||||||
except NoReverseMatch:
|
except NoReverseMatch:
|
||||||
return
|
return
|
||||||
|
|
||||||
|
# dispatch a notification for every Subscription on this resource
|
||||||
for subscription in Subscription.objects.filter(models.Q(object=url_resource) | models.Q(object=url_container)):
|
for subscription in Subscription.objects.filter(models.Q(object=url_resource) | models.Q(object=url_container)):
|
||||||
process = Thread(target=send_request, args=[subscription.inbox, url_resource, instance, created])
|
process = Thread(target=send_request, args=[subscription.inbox, url_resource, instance, created])
|
||||||
process.start()
|
process.start()
|
||||||
@ -73,9 +87,11 @@ def send_request(target, object_iri, instance, created):
|
|||||||
request_type = "creation" if created else "update"
|
request_type = "creation" if created else "update"
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
# local inbox
|
||||||
if target.startswith(settings.SITE_URL):
|
if target.startswith(settings.SITE_URL):
|
||||||
user = Model.resolve_parent(target.replace(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)
|
Notification.objects.create(user=user, object=object_iri, type=request_type, author=author)
|
||||||
|
# external inbox
|
||||||
else:
|
else:
|
||||||
json = {
|
json = {
|
||||||
"@context": settings.LDP_RDF_CONTEXT,
|
"@context": settings.LDP_RDF_CONTEXT,
|
||||||
@ -92,14 +108,18 @@ def send_request(target, object_iri, instance, created):
|
|||||||
@receiver(post_save, sender=Notification)
|
@receiver(post_save, sender=Notification)
|
||||||
def send_email_on_notification(sender, instance, created, **kwargs):
|
def send_email_on_notification(sender, instance, created, **kwargs):
|
||||||
if created and instance.summary and settings.JABBER_DEFAULT_HOST and instance.user.email:
|
if created and instance.summary and settings.JABBER_DEFAULT_HOST and instance.user.email:
|
||||||
|
# get author name, and store in who
|
||||||
try:
|
try:
|
||||||
|
# local author
|
||||||
if instance.author.startswith(settings.SITE_URL):
|
if instance.author.startswith(settings.SITE_URL):
|
||||||
who = str(Model.resolve_id(instance.author.replace(settings.SITE_URL, '')))
|
who = str(Model.resolve_id(instance.author.replace(settings.SITE_URL, '')))
|
||||||
|
# external author
|
||||||
else:
|
else:
|
||||||
who = requests.get(instance.author).json()['name']
|
who = requests.get(instance.author).json()['name']
|
||||||
except:
|
except:
|
||||||
who = "Unknown Person"
|
who = "Unknown Person"
|
||||||
|
|
||||||
|
# get identifier for resource triggering notification, and store in where
|
||||||
try:
|
try:
|
||||||
if instance.object.startswith(settings.SITE_URL):
|
if instance.object.startswith(settings.SITE_URL):
|
||||||
where = str(Model.resolve_id(instance.object.replace(settings.SITE_URL, '')))
|
where = str(Model.resolve_id(instance.object.replace(settings.SITE_URL, '')))
|
||||||
@ -111,7 +131,7 @@ def send_email_on_notification(sender, instance, created, **kwargs):
|
|||||||
if who == where:
|
if who == where:
|
||||||
where = "has sent you a private message"
|
where = "has sent you a private message"
|
||||||
else:
|
else:
|
||||||
where = "mention you on " + where
|
where = "mentioned you on " + where
|
||||||
|
|
||||||
html_message = loader.render_to_string(
|
html_message = loader.render_to_string(
|
||||||
'email.html',
|
'email.html',
|
||||||
|
Loading…
Reference in New Issue
Block a user