2017-05-02 01:15:58 +02:00
|
|
|
from django.conf import settings
|
2017-05-05 01:03:22 +02:00
|
|
|
from django.core.mail import EmailMultiAlternatives
|
2017-05-14 15:02:49 +02:00
|
|
|
from django.template import loader
|
2017-05-04 03:11:47 +02:00
|
|
|
from django.utils.timezone import now as timezone_now
|
2017-09-26 01:41:15 +02:00
|
|
|
from django.template.exceptions import TemplateDoesNotExist
|
2017-07-02 21:10:41 +02:00
|
|
|
from zerver.models import UserProfile, ScheduledEmail, get_user_profile_by_id, \
|
2017-12-05 03:19:48 +01:00
|
|
|
EMAIL_TYPES, Realm
|
2017-05-02 01:15:58 +02:00
|
|
|
|
2017-05-04 03:11:47 +02:00
|
|
|
import datetime
|
2017-06-26 19:43:32 +02:00
|
|
|
from email.utils import parseaddr, formataddr
|
2017-12-13 01:45:57 +01:00
|
|
|
import logging
|
2017-05-04 03:11:47 +02:00
|
|
|
import ujson
|
|
|
|
|
2017-09-26 01:41:15 +02:00
|
|
|
import os
|
2018-05-11 01:40:23 +02:00
|
|
|
from typing import Any, Dict, Iterable, List, Mapping, Optional
|
2017-05-02 01:15:58 +02:00
|
|
|
|
2017-12-13 01:45:57 +01:00
|
|
|
from zerver.lib.logging_util import log_to_file
|
2018-06-08 11:06:18 +02:00
|
|
|
from confirmation.models import generate_key
|
2017-08-28 08:41:13 +02:00
|
|
|
|
|
|
|
## Logging setup ##
|
|
|
|
|
2017-12-13 01:45:57 +01:00
|
|
|
logger = logging.getLogger('zulip.send_email')
|
|
|
|
log_to_file(logger, settings.EMAIL_LOG_PATH)
|
2017-08-28 08:41:13 +02:00
|
|
|
|
2017-11-05 11:37:41 +01:00
|
|
|
class FromAddress:
|
2017-06-26 19:43:32 +02:00
|
|
|
SUPPORT = parseaddr(settings.ZULIP_ADMINISTRATOR)[1]
|
|
|
|
NOREPLY = parseaddr(settings.NOREPLY_EMAIL_ADDRESS)[1]
|
|
|
|
|
2018-06-08 11:06:18 +02:00
|
|
|
# Generates an unpredictable noreply address.
|
|
|
|
@staticmethod
|
|
|
|
def tokenized_no_reply_address() -> str:
|
|
|
|
if settings.ADD_TOKENS_TO_NOREPLY_ADDRESS:
|
|
|
|
return parseaddr(settings.TOKENIZED_NOREPLY_EMAIL_ADDRESS)[1].format(token=generate_key())
|
|
|
|
return FromAddress.NOREPLY
|
|
|
|
|
2018-12-03 23:26:51 +01:00
|
|
|
def build_email(template_prefix: str, to_user_ids: Optional[List[int]]=None,
|
|
|
|
to_emails: Optional[List[str]]=None, from_name: Optional[str]=None,
|
2018-05-11 01:40:23 +02:00
|
|
|
from_address: Optional[str]=None, reply_to_email: Optional[str]=None,
|
2017-12-24 16:03:33 +01:00
|
|
|
context: Optional[Dict[str, Any]]=None) -> EmailMultiAlternatives:
|
2017-07-17 05:42:08 +02:00
|
|
|
# Callers should pass exactly one of to_user_id and to_email.
|
2018-12-03 23:26:51 +01:00
|
|
|
assert (to_user_ids is None) ^ (to_emails is None)
|
|
|
|
if to_user_ids is not None:
|
|
|
|
to_users = [get_user_profile_by_id(to_user_id) for to_user_id in to_user_ids]
|
2017-07-11 06:13:23 +02:00
|
|
|
# Change to formataddr((to_user.full_name, to_user.email)) once
|
|
|
|
# https://github.com/zulip/zulip/issues/4676 is resolved
|
2018-12-03 23:26:51 +01:00
|
|
|
to_emails = [to_user.delivery_email for to_user in to_users]
|
2017-07-11 05:01:32 +02:00
|
|
|
|
2017-08-25 18:43:53 +02:00
|
|
|
if context is None:
|
|
|
|
context = {}
|
|
|
|
|
2017-06-10 10:16:01 +02:00
|
|
|
context.update({
|
2017-07-02 05:27:01 +02:00
|
|
|
'support_email': FromAddress.SUPPORT,
|
2017-08-16 12:10:55 +02:00
|
|
|
'email_images_base_uri': settings.ROOT_DOMAIN_URI + '/static/images/emails',
|
2017-10-19 04:09:53 +02:00
|
|
|
'physical_address': settings.PHYSICAL_ADDRESS,
|
2017-06-10 10:16:01 +02:00
|
|
|
})
|
2017-06-06 03:46:35 +02:00
|
|
|
subject = loader.render_to_string(template_prefix + '.subject',
|
2017-07-14 03:33:35 +02:00
|
|
|
context=context,
|
|
|
|
using='Jinja2_plaintext').strip().replace('\n', '')
|
2017-06-06 03:46:35 +02:00
|
|
|
message = loader.render_to_string(template_prefix + '.txt',
|
|
|
|
context=context, using='Jinja2_plaintext')
|
2017-09-26 01:41:15 +02:00
|
|
|
|
|
|
|
try:
|
|
|
|
html_message = loader.render_to_string(template_prefix + '.html', context)
|
|
|
|
except TemplateDoesNotExist:
|
|
|
|
emails_dir = os.path.dirname(template_prefix)
|
|
|
|
template = os.path.basename(template_prefix)
|
|
|
|
compiled_template_prefix = os.path.join(emails_dir, "compiled", template)
|
|
|
|
html_message = loader.render_to_string(compiled_template_prefix + '.html', context)
|
2017-06-26 19:43:32 +02:00
|
|
|
|
|
|
|
if from_name is None:
|
|
|
|
from_name = "Zulip"
|
|
|
|
if from_address is None:
|
2017-06-26 19:43:32 +02:00
|
|
|
from_address = FromAddress.NOREPLY
|
2017-06-26 19:43:32 +02:00
|
|
|
from_email = formataddr((from_name, from_address))
|
2017-05-05 01:03:22 +02:00
|
|
|
reply_to = None
|
|
|
|
if reply_to_email is not None:
|
|
|
|
reply_to = [reply_to_email]
|
2017-07-05 08:28:43 +02:00
|
|
|
# Remove the from_name in the reply-to for noreply emails, so that users
|
|
|
|
# see "noreply@..." rather than "Zulip" or whatever the from_name is
|
|
|
|
# when they reply in their email client.
|
|
|
|
elif from_address == FromAddress.NOREPLY:
|
|
|
|
reply_to = [FromAddress.NOREPLY]
|
2017-05-05 01:03:22 +02:00
|
|
|
|
2018-12-03 23:26:51 +01:00
|
|
|
mail = EmailMultiAlternatives(subject, message, from_email, to_emails, reply_to=reply_to)
|
2017-05-05 01:03:22 +02:00
|
|
|
if html_message is not None:
|
|
|
|
mail.attach_alternative(html_message, 'text/html')
|
2017-06-10 06:19:32 +02:00
|
|
|
return mail
|
|
|
|
|
2017-07-12 01:05:59 +02:00
|
|
|
class EmailNotDeliveredException(Exception):
|
|
|
|
pass
|
|
|
|
|
2017-07-02 21:10:41 +02:00
|
|
|
# When changing the arguments to this function, you may need to write a
|
|
|
|
# migration to change or remove any emails in ScheduledEmail.
|
2018-12-03 23:26:51 +01:00
|
|
|
def send_email(template_prefix: str, to_user_ids: Optional[List[int]]=None,
|
|
|
|
to_emails: Optional[List[str]]=None, from_name: Optional[str]=None,
|
|
|
|
from_address: Optional[str]=None, reply_to_email: Optional[str]=None,
|
|
|
|
context: Dict[str, Any]={}) -> None:
|
|
|
|
mail = build_email(template_prefix, to_user_ids=to_user_ids, to_emails=to_emails, from_name=from_name,
|
2017-06-26 19:43:32 +02:00
|
|
|
from_address=from_address, reply_to_email=reply_to_email, context=context)
|
2017-08-28 08:41:13 +02:00
|
|
|
template = template_prefix.split("/")[-1]
|
|
|
|
logger.info("Sending %s email to %s" % (template, mail.to))
|
|
|
|
|
2017-07-12 01:05:59 +02:00
|
|
|
if mail.send() == 0:
|
2017-08-28 08:41:13 +02:00
|
|
|
logger.error("Error sending %s email to %s" % (template, mail.to))
|
2017-07-12 01:05:59 +02:00
|
|
|
raise EmailNotDeliveredException
|
2017-05-02 01:15:58 +02:00
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def send_email_from_dict(email_dict: Mapping[str, Any]) -> None:
|
2017-05-05 01:31:07 +02:00
|
|
|
send_email(**dict(email_dict))
|
|
|
|
|
2018-12-03 23:26:51 +01:00
|
|
|
def send_future_email(template_prefix: str, realm: Realm, to_user_ids: Optional[List[int]]=None,
|
|
|
|
to_emails: Optional[List[str]]=None, from_name: Optional[str]=None,
|
2018-05-11 01:40:23 +02:00
|
|
|
from_address: Optional[str]=None, context: Dict[str, Any]={},
|
2017-12-24 16:03:33 +01:00
|
|
|
delay: datetime.timedelta=datetime.timedelta(0)) -> None:
|
2018-12-03 23:26:51 +01:00
|
|
|
# WARNING: Be careful when using this with multiple recipients;
|
|
|
|
# because the current ScheduledEmail model (used primarily for
|
|
|
|
# cancelling planned emails) does not support multiple recipients,
|
|
|
|
# this is only valid to use for such emails where we don't expect
|
|
|
|
# the cancellation feature to be relevant.
|
|
|
|
#
|
|
|
|
# For that reason, we currently assert that the list of
|
|
|
|
# to_user_ids/to_emails is 1 below, but in theory that could be
|
|
|
|
# changed as long as the callers are in a situation where the
|
|
|
|
# above problem is not relevant.
|
2017-07-15 03:06:04 +02:00
|
|
|
template_name = template_prefix.split('/')[-1]
|
2018-12-03 23:26:51 +01:00
|
|
|
email_fields = {'template_prefix': template_prefix, 'to_user_ids': to_user_ids, 'to_emails': to_emails,
|
2017-07-15 03:06:04 +02:00
|
|
|
'from_name': from_name, 'from_address': from_address, 'context': context}
|
|
|
|
|
2017-10-03 02:04:32 +02:00
|
|
|
if settings.DEVELOPMENT and not settings.TEST_SUITE:
|
2018-12-03 23:26:51 +01:00
|
|
|
send_email(template_prefix, to_user_ids=to_user_ids, to_emails=to_emails, from_name=from_name,
|
2017-10-03 02:04:32 +02:00
|
|
|
from_address=from_address, context=context)
|
|
|
|
# For logging the email
|
2017-09-24 00:39:19 +02:00
|
|
|
|
2018-12-03 23:26:51 +01:00
|
|
|
assert (to_user_ids is None) ^ (to_emails is None)
|
|
|
|
if to_user_ids is not None:
|
2017-12-05 03:19:48 +01:00
|
|
|
# The realm is redundant if we have a to_user_id; this assert just
|
|
|
|
# expresses that fact
|
2018-12-03 23:26:51 +01:00
|
|
|
assert(len(to_user_ids) == 1)
|
|
|
|
assert(UserProfile.objects.filter(id__in=to_user_ids, realm=realm).exists())
|
|
|
|
to_field = {'user_id': to_user_ids[0]} # type: Dict[str, Any]
|
2017-07-12 02:26:10 +02:00
|
|
|
else:
|
2018-12-03 23:26:51 +01:00
|
|
|
assert(len(to_emails) == 1)
|
|
|
|
to_field = {'address': parseaddr(to_emails[0])[1]}
|
2017-07-15 03:06:04 +02:00
|
|
|
|
2017-07-02 21:10:41 +02:00
|
|
|
ScheduledEmail.objects.create(
|
|
|
|
type=EMAIL_TYPES[template_name],
|
|
|
|
scheduled_timestamp=timezone_now() + delay,
|
2017-12-05 03:19:48 +01:00
|
|
|
realm=realm,
|
2017-07-12 02:26:10 +02:00
|
|
|
data=ujson.dumps(email_fields),
|
|
|
|
**to_field)
|
2018-12-03 23:26:51 +01:00
|
|
|
|
|
|
|
def send_email_to_admins(template_prefix: str, realm: Realm, from_name: Optional[str]=None,
|
|
|
|
from_address: Optional[str]=None, context: Dict[str, Any]={}) -> None:
|
|
|
|
admins = realm.get_admin_users()
|
|
|
|
admin_user_ids = [admin.id for admin in admins]
|
|
|
|
send_email(template_prefix, to_user_ids=admin_user_ids, from_name=from_name,
|
|
|
|
from_address=from_address, context=context)
|