2016-04-20 08:02:01 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2016 OpenMarket Ltd
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
import email.mime.multipart
|
2018-07-09 02:09:20 -04:00
|
|
|
import email.utils
|
|
|
|
import logging
|
2020-08-17 12:05:00 -04:00
|
|
|
import urllib.parse
|
2016-04-29 08:56:21 -04:00
|
|
|
from email.mime.multipart import MIMEMultipart
|
2018-07-09 02:09:20 -04:00
|
|
|
from email.mime.text import MIMEText
|
2020-05-12 06:20:48 -04:00
|
|
|
from typing import Iterable, List, TypeVar
|
2016-04-20 08:02:01 -04:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
import bleach
|
|
|
|
import jinja2
|
|
|
|
|
|
|
|
from synapse.api.constants import EventTypes
|
|
|
|
from synapse.api.errors import StoreError
|
2020-07-14 14:10:42 -04:00
|
|
|
from synapse.config.emailconfig import EmailSubjectConfig
|
2019-07-03 10:07:04 -04:00
|
|
|
from synapse.logging.context import make_deferred_yieldable
|
2016-08-25 13:32:15 -04:00
|
|
|
from synapse.push.presentable_names import (
|
2018-07-09 02:09:20 -04:00
|
|
|
calculate_room_name,
|
|
|
|
descriptor_from_member_events,
|
|
|
|
name_from_member_event,
|
2016-04-27 10:30:41 -04:00
|
|
|
)
|
2016-04-25 13:27:04 -04:00
|
|
|
from synapse.types import UserID
|
2018-08-10 09:50:21 -04:00
|
|
|
from synapse.util.async_helpers import concurrently_execute
|
2016-05-11 08:42:37 -04:00
|
|
|
from synapse.visibility import filter_events_for_client
|
2016-04-21 14:19:07 -04:00
|
|
|
|
2016-05-04 20:56:43 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
2016-04-20 08:02:01 -04:00
|
|
|
|
2020-05-12 06:20:48 -04:00
|
|
|
T = TypeVar("T")
|
|
|
|
|
2016-04-25 13:27:04 -04:00
|
|
|
|
2016-05-04 20:56:43 -04:00
|
|
|
CONTEXT_BEFORE = 1
|
|
|
|
CONTEXT_AFTER = 1
|
2016-04-27 10:09:55 -04:00
|
|
|
|
|
|
|
# From https://github.com/matrix-org/matrix-react-sdk/blob/master/src/HtmlUtils.js
|
|
|
|
ALLOWED_TAGS = [
|
2019-06-20 05:32:02 -04:00
|
|
|
"font", # custom to matrix for IRC-style font coloring
|
|
|
|
"del", # for markdown
|
2016-04-27 10:09:55 -04:00
|
|
|
# deliberately no h1/h2 to stop people shouting.
|
2019-06-20 05:32:02 -04:00
|
|
|
"h3",
|
|
|
|
"h4",
|
|
|
|
"h5",
|
|
|
|
"h6",
|
|
|
|
"blockquote",
|
|
|
|
"p",
|
|
|
|
"a",
|
|
|
|
"ul",
|
|
|
|
"ol",
|
|
|
|
"nl",
|
|
|
|
"li",
|
|
|
|
"b",
|
|
|
|
"i",
|
|
|
|
"u",
|
|
|
|
"strong",
|
|
|
|
"em",
|
|
|
|
"strike",
|
|
|
|
"code",
|
|
|
|
"hr",
|
|
|
|
"br",
|
|
|
|
"div",
|
|
|
|
"table",
|
|
|
|
"thead",
|
|
|
|
"caption",
|
|
|
|
"tbody",
|
|
|
|
"tr",
|
|
|
|
"th",
|
|
|
|
"td",
|
|
|
|
"pre",
|
2016-04-27 10:09:55 -04:00
|
|
|
]
|
|
|
|
ALLOWED_ATTRS = {
|
|
|
|
# custom ones first:
|
|
|
|
"font": ["color"], # custom to matrix
|
|
|
|
"a": ["href", "name", "target"], # remote target: custom to matrix
|
|
|
|
# We don't currently allow img itself by default, but this
|
|
|
|
# would make sense if we did
|
|
|
|
"img": ["src"],
|
|
|
|
}
|
2016-04-27 12:18:51 -04:00
|
|
|
# When bleach release a version with this option, we can specify schemes
|
2016-04-28 10:16:30 -04:00
|
|
|
# ALLOWED_SCHEMES = ["http", "https", "ftp", "mailto"]
|
2016-04-27 10:09:55 -04:00
|
|
|
|
2016-04-25 13:27:04 -04:00
|
|
|
|
2020-09-04 06:54:56 -04:00
|
|
|
class Mailer:
|
2019-06-06 12:34:07 -04:00
|
|
|
def __init__(self, hs, app_name, template_html, template_text):
|
2016-04-20 13:35:29 -04:00
|
|
|
self.hs = hs
|
2019-06-06 12:34:07 -04:00
|
|
|
self.template_html = template_html
|
|
|
|
self.template_text = template_text
|
2017-05-22 12:48:53 -04:00
|
|
|
|
2018-10-30 08:55:43 -04:00
|
|
|
self.sendmail = self.hs.get_sendmail()
|
2016-04-21 14:19:07 -04:00
|
|
|
self.store = self.hs.get_datastore()
|
2017-02-02 05:53:36 -05:00
|
|
|
self.macaroon_gen = self.hs.get_macaroon_generator()
|
2016-04-21 14:19:07 -04:00
|
|
|
self.state_handler = self.hs.get_state_handler()
|
2019-10-23 12:25:54 -04:00
|
|
|
self.storage = hs.get_storage()
|
2016-06-02 08:29:48 -04:00
|
|
|
self.app_name = app_name
|
2020-07-14 14:10:42 -04:00
|
|
|
self.email_subjects = hs.config.email_subjects # type: EmailSubjectConfig
|
2017-05-22 12:48:53 -04:00
|
|
|
|
2016-06-02 12:21:12 -04:00
|
|
|
logger.info("Created Mailer for app_name %s" % app_name)
|
2016-04-20 08:02:01 -04:00
|
|
|
|
2020-05-22 08:41:11 -04:00
|
|
|
async def send_password_reset_mail(self, email_address, token, client_secret, sid):
|
2019-06-06 12:34:07 -04:00
|
|
|
"""Send an email with a password reset link to a user
|
|
|
|
|
|
|
|
Args:
|
|
|
|
email_address (str): Email address we're sending the password
|
|
|
|
reset to
|
|
|
|
token (str): Unique token generated by the server to verify
|
2019-09-06 06:35:28 -04:00
|
|
|
the email was received
|
2019-06-06 12:34:07 -04:00
|
|
|
client_secret (str): Unique token generated by the client to
|
|
|
|
group together multiple email sending attempts
|
|
|
|
sid (str): The generated session ID
|
|
|
|
"""
|
2019-09-20 05:46:59 -04:00
|
|
|
params = {"token": token, "client_secret": client_secret, "sid": sid}
|
2019-06-06 12:34:07 -04:00
|
|
|
link = (
|
2019-06-20 05:32:02 -04:00
|
|
|
self.hs.config.public_baseurl
|
2020-09-10 06:45:12 -04:00
|
|
|
+ "_synapse/client/password_reset/email/submit_token?%s"
|
2019-09-20 05:46:59 -04:00
|
|
|
% urllib.parse.urlencode(params)
|
2019-06-06 12:34:07 -04:00
|
|
|
)
|
2016-06-02 16:34:40 -04:00
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
template_vars = {"link": link}
|
2016-04-20 08:02:01 -04:00
|
|
|
|
2020-05-22 08:41:11 -04:00
|
|
|
await self.send_email(
|
2019-06-06 12:34:07 -04:00
|
|
|
email_address,
|
2020-07-14 14:10:42 -04:00
|
|
|
self.email_subjects.password_reset
|
|
|
|
% {"server_name": self.hs.config.server_name},
|
2019-09-06 06:35:28 -04:00
|
|
|
template_vars,
|
|
|
|
)
|
|
|
|
|
2020-05-22 08:41:11 -04:00
|
|
|
async def send_registration_mail(self, email_address, token, client_secret, sid):
|
2019-09-06 06:35:28 -04:00
|
|
|
"""Send an email with a registration confirmation link to a user
|
|
|
|
|
|
|
|
Args:
|
|
|
|
email_address (str): Email address we're sending the registration
|
|
|
|
link to
|
|
|
|
token (str): Unique token generated by the server to verify
|
|
|
|
the email was received
|
|
|
|
client_secret (str): Unique token generated by the client to
|
|
|
|
group together multiple email sending attempts
|
|
|
|
sid (str): The generated session ID
|
|
|
|
"""
|
2019-09-20 05:46:59 -04:00
|
|
|
params = {"token": token, "client_secret": client_secret, "sid": sid}
|
2019-09-06 06:35:28 -04:00
|
|
|
link = (
|
|
|
|
self.hs.config.public_baseurl
|
2019-09-20 05:46:59 -04:00
|
|
|
+ "_matrix/client/unstable/registration/email/submit_token?%s"
|
|
|
|
% urllib.parse.urlencode(params)
|
2019-09-06 06:35:28 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
template_vars = {"link": link}
|
|
|
|
|
2020-05-22 08:41:11 -04:00
|
|
|
await self.send_email(
|
2019-09-06 06:35:28 -04:00
|
|
|
email_address,
|
2020-07-14 14:10:42 -04:00
|
|
|
self.email_subjects.email_validation
|
|
|
|
% {"server_name": self.hs.config.server_name},
|
2019-06-06 12:34:07 -04:00
|
|
|
template_vars,
|
|
|
|
)
|
2016-04-20 08:02:01 -04:00
|
|
|
|
2020-05-22 08:41:11 -04:00
|
|
|
async def send_add_threepid_mail(self, email_address, token, client_secret, sid):
|
2019-09-20 10:21:30 -04:00
|
|
|
"""Send an email with a validation link to a user for adding a 3pid to their account
|
|
|
|
|
|
|
|
Args:
|
|
|
|
email_address (str): Email address we're sending the validation link to
|
|
|
|
|
|
|
|
token (str): Unique token generated by the server to verify the email was received
|
|
|
|
|
|
|
|
client_secret (str): Unique token generated by the client to group together
|
|
|
|
multiple email sending attempts
|
|
|
|
|
|
|
|
sid (str): The generated session ID
|
|
|
|
"""
|
|
|
|
params = {"token": token, "client_secret": client_secret, "sid": sid}
|
|
|
|
link = (
|
|
|
|
self.hs.config.public_baseurl
|
|
|
|
+ "_matrix/client/unstable/add_threepid/email/submit_token?%s"
|
|
|
|
% urllib.parse.urlencode(params)
|
|
|
|
)
|
|
|
|
|
|
|
|
template_vars = {"link": link}
|
|
|
|
|
2020-05-22 08:41:11 -04:00
|
|
|
await self.send_email(
|
2019-09-20 10:21:30 -04:00
|
|
|
email_address,
|
2020-07-14 14:10:42 -04:00
|
|
|
self.email_subjects.email_validation
|
|
|
|
% {"server_name": self.hs.config.server_name},
|
2019-09-20 10:21:30 -04:00
|
|
|
template_vars,
|
|
|
|
)
|
|
|
|
|
2020-05-22 08:41:11 -04:00
|
|
|
async def send_notification_mail(
|
2019-06-20 05:32:02 -04:00
|
|
|
self, app_id, user_id, email_address, push_actions, reason
|
|
|
|
):
|
2019-06-06 12:34:07 -04:00
|
|
|
"""Send email regarding a user's room notifications"""
|
2019-06-20 05:32:02 -04:00
|
|
|
rooms_in_order = deduped_ordered_list([pa["room_id"] for pa in push_actions])
|
2016-04-21 14:19:07 -04:00
|
|
|
|
2020-05-22 08:41:11 -04:00
|
|
|
notif_events = await self.store.get_events(
|
2019-06-20 05:32:02 -04:00
|
|
|
[pa["event_id"] for pa in push_actions]
|
2016-04-27 10:09:55 -04:00
|
|
|
)
|
|
|
|
|
2016-04-21 14:19:07 -04:00
|
|
|
notifs_by_room = {}
|
|
|
|
for pa in push_actions:
|
|
|
|
notifs_by_room.setdefault(pa["room_id"], []).append(pa)
|
|
|
|
|
|
|
|
# collect the current state for all the rooms in which we have
|
|
|
|
# notifications
|
|
|
|
state_by_room = {}
|
|
|
|
|
2016-04-25 13:27:04 -04:00
|
|
|
try:
|
2020-05-22 08:41:11 -04:00
|
|
|
user_display_name = await self.store.get_profile_displayname(
|
2016-04-25 13:27:04 -04:00
|
|
|
UserID.from_string(user_id).localpart
|
|
|
|
)
|
2016-06-02 04:41:13 -04:00
|
|
|
if user_display_name is None:
|
|
|
|
user_display_name = user_id
|
2016-04-25 13:27:04 -04:00
|
|
|
except StoreError:
|
|
|
|
user_display_name = user_id
|
|
|
|
|
2020-05-22 08:41:11 -04:00
|
|
|
async def _fetch_room_state(room_id):
|
|
|
|
room_state = await self.store.get_current_state_ids(room_id)
|
2016-04-21 14:19:07 -04:00
|
|
|
state_by_room[room_id] = room_state
|
|
|
|
|
|
|
|
# Run at most 3 of these at once: sync does 10 at a time but email
|
2016-05-23 14:24:11 -04:00
|
|
|
# notifs are much less realtime than sync so we can afford to wait a bit.
|
2020-05-22 08:41:11 -04:00
|
|
|
await concurrently_execute(_fetch_room_state, rooms_in_order, 3)
|
2016-04-20 08:02:01 -04:00
|
|
|
|
2016-05-23 14:24:11 -04:00
|
|
|
# actually sort our so-called rooms_in_order list, most recent room first
|
2019-06-20 05:32:02 -04:00
|
|
|
rooms_in_order.sort(key=lambda r: -(notifs_by_room[r][-1]["received_ts"] or 0))
|
2016-05-23 14:24:11 -04:00
|
|
|
|
2016-04-27 10:09:55 -04:00
|
|
|
rooms = []
|
2016-04-21 14:19:07 -04:00
|
|
|
|
2016-04-27 10:09:55 -04:00
|
|
|
for r in rooms_in_order:
|
2020-05-22 08:41:11 -04:00
|
|
|
roomvars = await self.get_room_vars(
|
2016-04-27 10:09:55 -04:00
|
|
|
r, user_id, notifs_by_room[r], notif_events, state_by_room[r]
|
|
|
|
)
|
2016-04-29 14:09:28 -04:00
|
|
|
rooms.append(roomvars)
|
2016-04-27 10:09:55 -04:00
|
|
|
|
2020-05-22 08:41:11 -04:00
|
|
|
reason["room_name"] = await calculate_room_name(
|
2019-06-20 05:32:02 -04:00
|
|
|
self.store,
|
|
|
|
state_by_room[reason["room_id"]],
|
|
|
|
user_id,
|
|
|
|
fallback_to_members=True,
|
2016-04-25 13:27:04 -04:00
|
|
|
)
|
|
|
|
|
2020-05-22 08:41:11 -04:00
|
|
|
summary_text = await self.make_summary_text(
|
2016-05-23 14:24:11 -04:00
|
|
|
notifs_by_room, state_by_room, notif_events, user_id, reason
|
2016-05-16 13:58:38 -04:00
|
|
|
)
|
|
|
|
|
2016-04-21 14:19:07 -04:00
|
|
|
template_vars = {
|
2016-04-25 13:27:04 -04:00
|
|
|
"user_display_name": user_display_name,
|
2016-06-02 12:38:41 -04:00
|
|
|
"unsubscribe_link": self.make_unsubscribe_link(
|
|
|
|
user_id, app_id, email_address
|
|
|
|
),
|
2016-04-25 13:27:04 -04:00
|
|
|
"summary_text": summary_text,
|
2016-04-21 14:19:07 -04:00
|
|
|
"rooms": rooms,
|
2016-05-16 13:58:38 -04:00
|
|
|
"reason": reason,
|
2016-04-21 14:19:07 -04:00
|
|
|
}
|
|
|
|
|
2020-07-14 14:10:42 -04:00
|
|
|
await self.send_email(email_address, summary_text, template_vars)
|
2019-06-06 12:34:07 -04:00
|
|
|
|
2020-07-14 05:00:53 -04:00
|
|
|
async def send_email(self, email_address, subject, extra_template_vars):
|
2019-06-06 12:34:07 -04:00
|
|
|
"""Send an email with the given information and template text"""
|
|
|
|
try:
|
2019-06-20 05:32:02 -04:00
|
|
|
from_string = self.hs.config.email_notif_from % {"app": self.app_name}
|
2019-06-06 12:34:07 -04:00
|
|
|
except TypeError:
|
|
|
|
from_string = self.hs.config.email_notif_from
|
|
|
|
|
|
|
|
raw_from = email.utils.parseaddr(from_string)[1]
|
|
|
|
raw_to = email.utils.parseaddr(email_address)[1]
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
if raw_to == "":
|
2019-06-06 12:34:07 -04:00
|
|
|
raise RuntimeError("Invalid 'to' address")
|
|
|
|
|
2020-07-14 05:00:53 -04:00
|
|
|
template_vars = {
|
|
|
|
"app_name": self.app_name,
|
|
|
|
"server_name": self.hs.config.server.server_name,
|
|
|
|
}
|
|
|
|
|
|
|
|
template_vars.update(extra_template_vars)
|
|
|
|
|
2019-06-06 12:34:07 -04:00
|
|
|
html_text = self.template_html.render(**template_vars)
|
2016-04-29 08:56:21 -04:00
|
|
|
html_part = MIMEText(html_text, "html", "utf8")
|
|
|
|
|
2019-06-06 12:34:07 -04:00
|
|
|
plain_text = self.template_text.render(**template_vars)
|
2016-04-29 08:56:21 -04:00
|
|
|
text_part = MIMEText(plain_text, "plain", "utf8")
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
multipart_msg = MIMEMultipart("alternative")
|
|
|
|
multipart_msg["Subject"] = subject
|
|
|
|
multipart_msg["From"] = from_string
|
|
|
|
multipart_msg["To"] = email_address
|
|
|
|
multipart_msg["Date"] = email.utils.formatdate()
|
|
|
|
multipart_msg["Message-ID"] = email.utils.make_msgid()
|
2016-04-29 08:56:21 -04:00
|
|
|
multipart_msg.attach(text_part)
|
|
|
|
multipart_msg.attach(html_part)
|
2016-04-21 14:19:07 -04:00
|
|
|
|
2019-09-23 09:38:19 -04:00
|
|
|
logger.info("Sending email to %s" % email_address)
|
2016-05-09 18:14:48 -04:00
|
|
|
|
2020-05-22 08:41:11 -04:00
|
|
|
await make_deferred_yieldable(
|
2019-06-20 05:32:02 -04:00
|
|
|
self.sendmail(
|
|
|
|
self.hs.config.email_smtp_host,
|
|
|
|
raw_from,
|
|
|
|
raw_to,
|
|
|
|
multipart_msg.as_string().encode("utf8"),
|
|
|
|
reactor=self.hs.get_reactor(),
|
|
|
|
port=self.hs.config.email_smtp_port,
|
|
|
|
requireAuthentication=self.hs.config.email_smtp_user is not None,
|
|
|
|
username=self.hs.config.email_smtp_user,
|
|
|
|
password=self.hs.config.email_smtp_pass,
|
|
|
|
requireTransportSecurity=self.hs.config.require_transport_security,
|
|
|
|
)
|
|
|
|
)
|
2016-04-21 14:19:07 -04:00
|
|
|
|
2020-05-22 08:41:11 -04:00
|
|
|
async def get_room_vars(
|
|
|
|
self, room_id, user_id, notifs, notif_events, room_state_ids
|
|
|
|
):
|
2016-08-25 13:32:15 -04:00
|
|
|
my_member_event_id = room_state_ids[("m.room.member", user_id)]
|
2020-05-22 08:41:11 -04:00
|
|
|
my_member_event = await self.store.get_event(my_member_event_id)
|
2016-04-28 06:49:36 -04:00
|
|
|
is_invite = my_member_event.content["membership"] == "invite"
|
|
|
|
|
2020-05-22 08:41:11 -04:00
|
|
|
room_name = await calculate_room_name(self.store, room_state_ids, user_id)
|
2016-08-25 13:32:15 -04:00
|
|
|
|
2016-04-27 10:09:55 -04:00
|
|
|
room_vars = {
|
2016-08-25 13:32:15 -04:00
|
|
|
"title": room_name,
|
2016-04-27 10:09:55 -04:00
|
|
|
"hash": string_ordinal_total(room_id), # See sender avatar hash
|
|
|
|
"notifs": [],
|
2016-04-28 12:28:27 -04:00
|
|
|
"invite": is_invite,
|
|
|
|
"link": self.make_room_link(room_id),
|
2016-04-27 10:09:55 -04:00
|
|
|
}
|
|
|
|
|
2016-04-28 12:28:27 -04:00
|
|
|
if not is_invite:
|
2016-04-28 06:49:36 -04:00
|
|
|
for n in notifs:
|
2020-05-22 08:41:11 -04:00
|
|
|
notifvars = await self.get_notif_vars(
|
2019-06-20 05:32:02 -04:00
|
|
|
n, user_id, notif_events[n["event_id"]], room_state_ids
|
2016-04-28 06:49:36 -04:00
|
|
|
)
|
2016-05-04 20:56:43 -04:00
|
|
|
|
|
|
|
# merge overlapping notifs together.
|
|
|
|
# relies on the notifs being in chronological order.
|
|
|
|
merge = False
|
2019-06-20 05:32:02 -04:00
|
|
|
if room_vars["notifs"] and "messages" in room_vars["notifs"][-1]:
|
|
|
|
prev_messages = room_vars["notifs"][-1]["messages"]
|
|
|
|
for message in notifvars["messages"]:
|
|
|
|
pm = list(
|
|
|
|
filter(lambda pm: pm["id"] == message["id"], prev_messages)
|
|
|
|
)
|
2016-05-04 20:56:43 -04:00
|
|
|
if pm:
|
|
|
|
if not message["is_historical"]:
|
|
|
|
pm[0]["is_historical"] = False
|
|
|
|
merge = True
|
|
|
|
elif merge:
|
|
|
|
# we're merging, so append any remaining messages
|
|
|
|
# in this notif to the previous one
|
|
|
|
prev_messages.append(message)
|
|
|
|
|
|
|
|
if not merge:
|
2019-06-20 05:32:02 -04:00
|
|
|
room_vars["notifs"].append(notifvars)
|
2016-04-27 10:09:55 -04:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return room_vars
|
2016-04-21 14:19:07 -04:00
|
|
|
|
2020-05-22 08:41:11 -04:00
|
|
|
async def get_notif_vars(self, notif, user_id, notif_event, room_state_ids):
|
|
|
|
results = await self.store.get_events_around(
|
2019-06-20 05:32:02 -04:00
|
|
|
notif["room_id"],
|
|
|
|
notif["event_id"],
|
|
|
|
before_limit=CONTEXT_BEFORE,
|
|
|
|
after_limit=CONTEXT_AFTER,
|
2016-04-27 10:09:55 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
ret = {
|
|
|
|
"link": self.make_notif_link(notif),
|
2019-06-20 05:32:02 -04:00
|
|
|
"ts": notif["received_ts"],
|
2016-04-27 10:09:55 -04:00
|
|
|
"messages": [],
|
|
|
|
}
|
|
|
|
|
2020-05-22 08:41:11 -04:00
|
|
|
the_events = await filter_events_for_client(
|
2019-10-23 12:25:54 -04:00
|
|
|
self.storage, user_id, results["events_before"]
|
2016-04-27 12:50:49 -04:00
|
|
|
)
|
|
|
|
the_events.append(notif_event)
|
|
|
|
|
|
|
|
for event in the_events:
|
2020-05-22 08:41:11 -04:00
|
|
|
messagevars = await self.get_message_vars(notif, event, room_state_ids)
|
2016-04-29 14:09:28 -04:00
|
|
|
if messagevars is not None:
|
2019-06-20 05:32:02 -04:00
|
|
|
ret["messages"].append(messagevars)
|
2016-04-27 10:09:55 -04:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return ret
|
2016-04-27 10:09:55 -04:00
|
|
|
|
2020-05-22 08:41:11 -04:00
|
|
|
async def get_message_vars(self, notif, event, room_state_ids):
|
2016-04-29 14:10:45 -04:00
|
|
|
if event.type != EventTypes.Message:
|
2016-08-25 13:32:15 -04:00
|
|
|
return
|
2016-04-27 10:09:55 -04:00
|
|
|
|
2016-08-25 13:32:15 -04:00
|
|
|
sender_state_event_id = room_state_ids[("m.room.member", event.sender)]
|
2020-05-22 08:41:11 -04:00
|
|
|
sender_state_event = await self.store.get_event(sender_state_event_id)
|
2016-04-27 10:09:55 -04:00
|
|
|
sender_name = name_from_member_event(sender_state_event)
|
2016-06-17 08:49:16 -04:00
|
|
|
sender_avatar_url = sender_state_event.content.get("avatar_url")
|
2016-04-27 10:09:55 -04:00
|
|
|
|
|
|
|
# 'hash' for deterministically picking default images: use
|
|
|
|
# sender_hash % the number of default images to choose from
|
|
|
|
sender_hash = string_ordinal_total(event.sender)
|
|
|
|
|
2016-06-17 08:49:16 -04:00
|
|
|
msgtype = event.content.get("msgtype")
|
|
|
|
|
2016-04-27 10:09:55 -04:00
|
|
|
ret = {
|
2016-06-17 08:49:16 -04:00
|
|
|
"msgtype": msgtype,
|
2019-06-20 05:32:02 -04:00
|
|
|
"is_historical": event.event_id != notif["event_id"],
|
2016-05-04 20:56:43 -04:00
|
|
|
"id": event.event_id,
|
2016-04-27 10:09:55 -04:00
|
|
|
"ts": event.origin_server_ts,
|
|
|
|
"sender_name": sender_name,
|
|
|
|
"sender_avatar_url": sender_avatar_url,
|
|
|
|
"sender_hash": sender_hash,
|
|
|
|
}
|
|
|
|
|
2016-06-17 08:49:16 -04:00
|
|
|
if msgtype == "m.text":
|
2016-04-28 10:55:53 -04:00
|
|
|
self.add_text_message_vars(ret, event)
|
2016-06-17 08:49:16 -04:00
|
|
|
elif msgtype == "m.image":
|
2016-04-28 10:55:53 -04:00
|
|
|
self.add_image_message_vars(ret, event)
|
2016-04-28 11:59:57 -04:00
|
|
|
|
|
|
|
if "body" in event.content:
|
|
|
|
ret["body_text_plain"] = event.content["body"]
|
2016-04-27 10:09:55 -04:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return ret
|
2016-04-27 10:09:55 -04:00
|
|
|
|
2016-04-29 14:09:28 -04:00
|
|
|
def add_text_message_vars(self, messagevars, event):
|
2016-06-17 08:49:16 -04:00
|
|
|
msgformat = event.content.get("format")
|
|
|
|
|
2016-04-29 14:09:28 -04:00
|
|
|
messagevars["format"] = msgformat
|
2016-04-28 10:55:53 -04:00
|
|
|
|
2016-06-17 08:49:16 -04:00
|
|
|
formatted_body = event.content.get("formatted_body")
|
|
|
|
body = event.content.get("body")
|
|
|
|
|
|
|
|
if msgformat == "org.matrix.custom.html" and formatted_body:
|
|
|
|
messagevars["body_text_html"] = safe_markup(formatted_body)
|
|
|
|
elif body:
|
|
|
|
messagevars["body_text_html"] = safe_text(body)
|
2016-04-28 10:55:53 -04:00
|
|
|
|
2016-04-29 14:09:28 -04:00
|
|
|
return messagevars
|
2016-04-28 10:55:53 -04:00
|
|
|
|
2016-04-29 14:09:28 -04:00
|
|
|
def add_image_message_vars(self, messagevars, event):
|
|
|
|
messagevars["image_url"] = event.content["url"]
|
2016-04-28 10:55:53 -04:00
|
|
|
|
2016-04-29 14:09:28 -04:00
|
|
|
return messagevars
|
2016-04-28 10:55:53 -04:00
|
|
|
|
2020-05-22 08:41:11 -04:00
|
|
|
async def make_summary_text(
|
2019-06-20 05:32:02 -04:00
|
|
|
self, notifs_by_room, room_state_ids, notif_events, user_id, reason
|
|
|
|
):
|
2016-04-25 13:27:04 -04:00
|
|
|
if len(notifs_by_room) == 1:
|
2016-04-27 10:30:41 -04:00
|
|
|
# Only one room has new stuff
|
2018-10-30 08:55:43 -04:00
|
|
|
room_id = list(notifs_by_room.keys())[0]
|
2016-04-27 10:30:41 -04:00
|
|
|
|
|
|
|
# If the room has some kind of name, use it, but we don't
|
|
|
|
# want the generated-from-names one here otherwise we'll
|
|
|
|
# end up with, "new message from Bob in the Bob room"
|
2020-05-22 08:41:11 -04:00
|
|
|
room_name = await calculate_room_name(
|
2016-10-13 08:40:38 -04:00
|
|
|
self.store, room_state_ids[room_id], user_id, fallback_to_members=False
|
2016-04-27 10:30:41 -04:00
|
|
|
)
|
|
|
|
|
2016-10-13 08:40:38 -04:00
|
|
|
my_member_event_id = room_state_ids[room_id][("m.room.member", user_id)]
|
2020-05-22 08:41:11 -04:00
|
|
|
my_member_event = await self.store.get_event(my_member_event_id)
|
2016-04-28 06:49:36 -04:00
|
|
|
if my_member_event.content["membership"] == "invite":
|
2016-10-13 08:40:38 -04:00
|
|
|
inviter_member_event_id = room_state_ids[room_id][
|
2016-04-28 06:49:36 -04:00
|
|
|
("m.room.member", my_member_event.sender)
|
|
|
|
]
|
2020-05-22 08:41:11 -04:00
|
|
|
inviter_member_event = await self.store.get_event(
|
2016-10-13 08:40:38 -04:00
|
|
|
inviter_member_event_id
|
|
|
|
)
|
2016-04-28 06:49:36 -04:00
|
|
|
inviter_name = name_from_member_event(inviter_member_event)
|
|
|
|
|
|
|
|
if room_name is None:
|
2020-07-14 14:10:42 -04:00
|
|
|
return self.email_subjects.invite_from_person % {
|
2019-07-23 09:00:55 -04:00
|
|
|
"person": inviter_name,
|
|
|
|
"app": self.app_name,
|
|
|
|
}
|
2016-04-28 06:49:36 -04:00
|
|
|
else:
|
2020-07-14 14:10:42 -04:00
|
|
|
return self.email_subjects.invite_from_person_to_room % {
|
2019-07-23 09:00:55 -04:00
|
|
|
"person": inviter_name,
|
|
|
|
"room": room_name,
|
|
|
|
"app": self.app_name,
|
|
|
|
}
|
2016-04-28 06:49:36 -04:00
|
|
|
|
2016-04-25 13:27:04 -04:00
|
|
|
sender_name = None
|
|
|
|
if len(notifs_by_room[room_id]) == 1:
|
2016-04-27 10:30:41 -04:00
|
|
|
# There is just the one notification, so give some detail
|
2016-04-27 10:09:55 -04:00
|
|
|
event = notif_events[notifs_by_room[room_id][0]["event_id"]]
|
2016-10-13 08:40:38 -04:00
|
|
|
if ("m.room.member", event.sender) in room_state_ids[room_id]:
|
|
|
|
state_event_id = room_state_ids[room_id][
|
|
|
|
("m.room.member", event.sender)
|
|
|
|
]
|
2020-05-22 08:41:11 -04:00
|
|
|
state_event = await self.store.get_event(state_event_id)
|
2016-04-25 13:27:04 -04:00
|
|
|
sender_name = name_from_member_event(state_event)
|
2016-04-28 06:49:36 -04:00
|
|
|
|
2016-04-25 13:27:04 -04:00
|
|
|
if sender_name is not None and room_name is not None:
|
2020-07-14 14:10:42 -04:00
|
|
|
return self.email_subjects.message_from_person_in_room % {
|
2019-07-23 09:00:55 -04:00
|
|
|
"person": sender_name,
|
|
|
|
"room": room_name,
|
|
|
|
"app": self.app_name,
|
|
|
|
}
|
2016-04-25 13:27:04 -04:00
|
|
|
elif sender_name is not None:
|
2020-07-14 14:10:42 -04:00
|
|
|
return self.email_subjects.message_from_person % {
|
2019-07-23 09:00:55 -04:00
|
|
|
"person": sender_name,
|
|
|
|
"app": self.app_name,
|
|
|
|
}
|
2016-04-25 13:27:04 -04:00
|
|
|
else:
|
2016-04-27 10:30:41 -04:00
|
|
|
# There's more than one notification for this room, so just
|
|
|
|
# say there are several
|
|
|
|
if room_name is not None:
|
2020-07-14 14:10:42 -04:00
|
|
|
return self.email_subjects.messages_in_room % {
|
|
|
|
"room": room_name,
|
|
|
|
"app": self.app_name,
|
|
|
|
}
|
2016-04-27 10:30:41 -04:00
|
|
|
else:
|
|
|
|
# If the room doesn't have a name, say who the messages
|
|
|
|
# are from explicitly to avoid, "messages in the Bob room"
|
2019-06-20 05:32:02 -04:00
|
|
|
sender_ids = list(
|
2020-02-21 07:15:07 -05:00
|
|
|
{
|
|
|
|
notif_events[n["event_id"]].sender
|
|
|
|
for n in notifs_by_room[room_id]
|
|
|
|
}
|
2019-06-20 05:32:02 -04:00
|
|
|
)
|
|
|
|
|
2020-05-22 08:41:11 -04:00
|
|
|
member_events = await self.store.get_events(
|
2019-06-20 05:32:02 -04:00
|
|
|
[
|
|
|
|
room_state_ids[room_id][("m.room.member", s)]
|
|
|
|
for s in sender_ids
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
2020-07-14 14:10:42 -04:00
|
|
|
return self.email_subjects.messages_from_person % {
|
2019-07-23 09:00:55 -04:00
|
|
|
"person": descriptor_from_member_events(member_events.values()),
|
|
|
|
"app": self.app_name,
|
|
|
|
}
|
2016-04-25 13:27:04 -04:00
|
|
|
else:
|
2016-04-27 10:30:41 -04:00
|
|
|
# Stuff's happened in multiple different rooms
|
2016-05-23 14:24:11 -04:00
|
|
|
|
|
|
|
# ...but we still refer to the 'reason' room which triggered the mail
|
2019-06-20 05:32:02 -04:00
|
|
|
if reason["room_name"] is not None:
|
2020-07-14 14:10:42 -04:00
|
|
|
return self.email_subjects.messages_in_room_and_others % {
|
2019-07-23 09:00:55 -04:00
|
|
|
"room": reason["room_name"],
|
|
|
|
"app": self.app_name,
|
|
|
|
}
|
2016-05-23 14:24:11 -04:00
|
|
|
else:
|
|
|
|
# If the reason room doesn't have a name, say who the messages
|
|
|
|
# are from explicitly to avoid, "messages in the Bob room"
|
2020-03-09 10:10:19 -04:00
|
|
|
room_id = reason["room_id"]
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
sender_ids = list(
|
2020-02-21 07:15:07 -05:00
|
|
|
{
|
|
|
|
notif_events[n["event_id"]].sender
|
2020-03-09 10:10:19 -04:00
|
|
|
for n in notifs_by_room[room_id]
|
2020-02-21 07:15:07 -05:00
|
|
|
}
|
2019-06-20 05:32:02 -04:00
|
|
|
)
|
2016-05-23 14:24:11 -04:00
|
|
|
|
2020-05-22 08:41:11 -04:00
|
|
|
member_events = await self.store.get_events(
|
2019-06-20 05:32:02 -04:00
|
|
|
[room_state_ids[room_id][("m.room.member", s)] for s in sender_ids]
|
|
|
|
)
|
2016-10-13 08:40:38 -04:00
|
|
|
|
2020-07-14 14:10:42 -04:00
|
|
|
return self.email_subjects.messages_from_person_and_others % {
|
2019-07-23 09:00:55 -04:00
|
|
|
"person": descriptor_from_member_events(member_events.values()),
|
|
|
|
"app": self.app_name,
|
|
|
|
}
|
2016-04-25 13:27:04 -04:00
|
|
|
|
2016-04-28 06:49:36 -04:00
|
|
|
def make_room_link(self, room_id):
|
2017-01-13 10:12:04 -05:00
|
|
|
if self.hs.config.email_riot_base_url:
|
2018-09-13 17:43:50 -04:00
|
|
|
base_url = "%s/#/room" % (self.hs.config.email_riot_base_url)
|
2017-01-13 10:12:04 -05:00
|
|
|
elif self.app_name == "Vector":
|
|
|
|
# need /beta for Universal Links to work on iOS
|
|
|
|
base_url = "https://vector.im/beta/#/room"
|
2016-05-09 18:14:48 -04:00
|
|
|
else:
|
2017-01-13 10:12:04 -05:00
|
|
|
base_url = "https://matrix.to/#"
|
|
|
|
return "%s/%s" % (base_url, room_id)
|
2016-04-28 06:49:36 -04:00
|
|
|
|
2016-04-27 10:09:55 -04:00
|
|
|
def make_notif_link(self, notif):
|
2017-01-13 10:12:04 -05:00
|
|
|
if self.hs.config.email_riot_base_url:
|
|
|
|
return "%s/#/room/%s/%s" % (
|
|
|
|
self.hs.config.email_riot_base_url,
|
2019-06-20 05:32:02 -04:00
|
|
|
notif["room_id"],
|
|
|
|
notif["event_id"],
|
2017-01-13 10:12:04 -05:00
|
|
|
)
|
|
|
|
elif self.app_name == "Vector":
|
|
|
|
# need /beta for Universal Links to work on iOS
|
2016-05-09 18:14:48 -04:00
|
|
|
return "https://vector.im/beta/#/room/%s/%s" % (
|
2019-06-20 05:32:02 -04:00
|
|
|
notif["room_id"],
|
|
|
|
notif["event_id"],
|
2016-05-09 18:14:48 -04:00
|
|
|
)
|
|
|
|
else:
|
2019-06-20 05:32:02 -04:00
|
|
|
return "https://matrix.to/#/%s/%s" % (notif["room_id"], notif["event_id"])
|
2016-04-25 13:27:04 -04:00
|
|
|
|
2016-06-02 12:21:31 -04:00
|
|
|
def make_unsubscribe_link(self, user_id, app_id, email_address):
|
2016-06-02 06:44:15 -04:00
|
|
|
params = {
|
2017-02-02 05:53:36 -05:00
|
|
|
"access_token": self.macaroon_gen.generate_delete_pusher_token(user_id),
|
2016-06-02 06:44:15 -04:00
|
|
|
"app_id": app_id,
|
|
|
|
"pushkey": email_address,
|
|
|
|
}
|
|
|
|
|
|
|
|
# XXX: make r0 once API is stable
|
|
|
|
return "%s_matrix/client/unstable/pushers/remove?%s" % (
|
|
|
|
self.hs.config.public_baseurl,
|
2018-09-13 13:11:11 -04:00
|
|
|
urllib.parse.urlencode(params),
|
2016-06-02 06:44:15 -04:00
|
|
|
)
|
2016-04-21 14:19:07 -04:00
|
|
|
|
2016-04-27 10:09:55 -04:00
|
|
|
|
2016-04-27 12:18:51 -04:00
|
|
|
def safe_markup(raw_html):
|
2019-06-20 05:32:02 -04:00
|
|
|
return jinja2.Markup(
|
|
|
|
bleach.linkify(
|
|
|
|
bleach.clean(
|
|
|
|
raw_html,
|
|
|
|
tags=ALLOWED_TAGS,
|
|
|
|
attributes=ALLOWED_ATTRS,
|
|
|
|
# bleach master has this, but it isn't released yet
|
|
|
|
# protocols=ALLOWED_SCHEMES,
|
|
|
|
strip=True,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2016-04-27 10:09:55 -04:00
|
|
|
|
2016-04-21 14:19:07 -04:00
|
|
|
|
2016-04-28 05:55:08 -04:00
|
|
|
def safe_text(raw_text):
|
|
|
|
"""
|
|
|
|
Process text: treat it as HTML but escape any tags (ie. just escape the
|
|
|
|
HTML) then linkify it.
|
|
|
|
"""
|
2019-06-20 05:32:02 -04:00
|
|
|
return jinja2.Markup(
|
|
|
|
bleach.linkify(bleach.clean(raw_text, tags=[], attributes={}, strip=False))
|
|
|
|
)
|
2016-04-28 05:55:08 -04:00
|
|
|
|
|
|
|
|
2020-05-12 06:20:48 -04:00
|
|
|
def deduped_ordered_list(it: Iterable[T]) -> List[T]:
|
2016-04-21 14:19:07 -04:00
|
|
|
seen = set()
|
|
|
|
ret = []
|
2020-05-12 06:20:48 -04:00
|
|
|
for item in it:
|
2016-04-21 14:19:07 -04:00
|
|
|
if item not in seen:
|
|
|
|
seen.add(item)
|
|
|
|
ret.append(item)
|
2016-04-25 13:27:04 -04:00
|
|
|
return ret
|
2016-04-27 10:09:55 -04:00
|
|
|
|
2016-04-28 10:16:30 -04:00
|
|
|
|
2016-04-27 10:09:55 -04:00
|
|
|
def string_ordinal_total(s):
|
|
|
|
tot = 0
|
|
|
|
for c in s:
|
|
|
|
tot += ord(c)
|
|
|
|
return tot
|