mirror of
https://github.com/fergalmoran/dss.api.git
synced 2025-12-22 09:18:13 +00:00
66 lines
2.4 KiB
Python
Executable File
66 lines
2.4 KiB
Python
Executable File
from django.conf import settings
|
|
import mandrill
|
|
from django.db import models
|
|
from django.template import loader, Context
|
|
from core.realtime.activity import post_activity
|
|
|
|
from dss import localsettings
|
|
from spa.models import BaseModel, UserProfile
|
|
|
|
|
|
class Notification(BaseModel):
|
|
to_user = models.ForeignKey('spa.UserProfile', related_name='to_notications')
|
|
from_user = models.ForeignKey('spa.UserProfile', related_name='notifications', null=True, blank=True)
|
|
date = models.DateTimeField(auto_now_add=True)
|
|
|
|
verb = models.CharField(max_length=200, null=True)
|
|
type = models.CharField(max_length=200, null=True)
|
|
target = models.CharField(max_length=200, null=True)
|
|
target_desc = models.CharField(max_length=200, null=True)
|
|
|
|
accepted_date = models.DateTimeField(null=True)
|
|
|
|
class Meta:
|
|
app_label = 'spa'
|
|
ordering = ('-id',)
|
|
|
|
def get_notification_url(self):
|
|
return '/api/v1/notification/%s' % self.id
|
|
|
|
def send_notification_email(self):
|
|
try:
|
|
if settings.DEBUG:
|
|
return
|
|
|
|
t = loader.get_template('email/notification/new.html')
|
|
c = Context({
|
|
'user_name': self.to_user.get_nice_name(),
|
|
'notification_html': self.notification_html,
|
|
'title': self.notification_html
|
|
})
|
|
rendered = t.render(c)
|
|
|
|
mandrill_client = mandrill.Mandrill(localsettings.MANDRILL_API_KEY)
|
|
message = {
|
|
'inline_css': True,
|
|
'from_email': 'chatbot@deepsouthsounds.com',
|
|
'from_name': 'DSS ChatBot',
|
|
'headers': {'Reply-To': 'chatbot@deepsouthsounds.com'},
|
|
'metadata': {'website': 'www.deepsouthsounds.com'},
|
|
'subject': self.notification_text,
|
|
'to': [{'email': 'fergal.moran@gmail.com' if settings.DEBUG else self.to_user.email,
|
|
'name': self.to_user.get_nice_name(),
|
|
'type': 'to'}],
|
|
'html': rendered,
|
|
'text': 'Get yourself some HTML man!',
|
|
}
|
|
|
|
result = mandrill_client.messages.send(message=message, async=False)
|
|
print(result)
|
|
|
|
except mandrill.Error as e: # Mandrill errors are thrown as exceptions
|
|
print('A mandrill error occurred: %s - %s' % (e.__class__, e))
|
|
|
|
def get_from_user(self):
|
|
return UserProfile.get_user(self.from_user)
|