| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- import logging
-
- from django.core.mail import EmailMessage, EmailMultiAlternatives
- from django.conf import settings
- from django.db.models import get_model
-
- CommunicationEvent = get_model('order', 'CommunicationEvent')
- Email = get_model('customer', 'Email')
-
-
- class Dispatcher(object):
- def __init__(self, logger=None):
- if not logger:
- logger = logging.getLogger(__name__)
- self.logger = logger
-
- # Public API methods
-
- def dispatch_direct_messages(self, recipient, messages):
- """
- Dispatch one-off messages to explicitly specified recipient(s).
- """
- if messages['subject'] and messages['body']:
- self.send_email_messages(recipient, messages)
-
- def dispatch_order_messages(self, order, messages, event_type=None, **kwargs):
- """
- Dispatch order-related messages to the customer
- """
- if order.is_anonymous:
- if 'email_address' in kwargs:
- self.send_email_messages(kwargs['email_address'], messages)
- elif order.guest_email:
- self.send_email_messages(order.guest_email, messages)
- else:
- return
- else:
- self.dispatch_user_messages(order.user, messages)
-
- # Create order comms event for audit
- if event_type:
- CommunicationEvent._default_manager.create(order=order,
- event_type=event_type)
-
- def dispatch_user_messages(self, user, messages):
- """
- Send messages to a site user
- """
- if messages['subject'] and (messages['body'] or messages['html']):
- self.send_user_email_messages(user, messages)
- if messages['sms']:
- self.send_text_message(user, messages['sms'])
-
- # Internal
-
- def send_user_email_messages(self, user, messages):
- """
- Sends message to the registered user / customer and collects data in database
- """
- if not user.email:
- self.logger.warning("Unable to send email messages as user #%d has no email address", user.id)
- return
-
- email = self.send_email_messages(user.email, messages)
-
- # Is user is signed in, record the event for audit
- if email and user.is_authenticated():
- Email._default_manager.create(user=user,
- subject=email.subject,
- body_text=email.body,
- body_html=messages['html'])
-
- def send_email_messages(self, recipient, messages):
- """
- Plain email sending to the specified recipient
- """
- if hasattr(settings, 'OSCAR_FROM_EMAIL'):
- from_email = settings.OSCAR_FROM_EMAIL
- else:
- from_email = None
-
- # Determine whether we are sending a HTML version too
- if messages['html']:
- email = EmailMultiAlternatives(messages['subject'],
- messages['body'],
- from_email=from_email,
- to=[recipient])
- email.attach_alternative(messages['html'], "text/html")
- else:
- email = EmailMessage(messages['subject'],
- messages['body'],
- from_email=from_email,
- to=[recipient])
- self.logger.info("Sending email to %s" % recipient)
- email.send()
-
- return email
-
- def send_text_message(self, user, event_type):
- raise NotImplementedError
|