2016-05-04 06:37:42 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2014-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.
|
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
import logging
|
|
|
|
|
2020-08-17 12:05:00 -04:00
|
|
|
from synapse.push.emailpusher import EmailPusher
|
|
|
|
from synapse.push.mailer import Mailer
|
|
|
|
|
2018-04-28 06:17:56 -04:00
|
|
|
from .httppusher import HttpPusher
|
2016-04-06 10:42:15 -04:00
|
|
|
|
2016-05-04 06:37:42 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
2016-04-06 10:42:15 -04:00
|
|
|
|
2016-05-04 06:41:35 -04:00
|
|
|
|
2020-09-04 06:54:56 -04:00
|
|
|
class PusherFactory:
|
2017-05-22 12:48:53 -04:00
|
|
|
def __init__(self, hs):
|
|
|
|
self.hs = hs
|
2019-09-06 06:35:28 -04:00
|
|
|
self.config = hs.config
|
2016-05-04 06:37:42 -04:00
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
self.pusher_types = {"http": HttpPusher}
|
2016-04-28 10:12:14 -04:00
|
|
|
|
2017-05-22 12:48:53 -04:00
|
|
|
logger.info("email enable notifs: %r", hs.config.email_enable_notifs)
|
|
|
|
if hs.config.email_enable_notifs:
|
|
|
|
self.mailers = {} # app_name -> Mailer
|
2016-04-28 10:12:14 -04:00
|
|
|
|
2020-08-17 12:05:00 -04:00
|
|
|
self._notif_template_html = hs.config.email_notif_template_html
|
|
|
|
self._notif_template_text = hs.config.email_notif_template_text
|
2017-05-22 12:48:53 -04:00
|
|
|
|
|
|
|
self.pusher_types["email"] = self._create_email_pusher
|
|
|
|
|
|
|
|
logger.info("defined email pusher type")
|
|
|
|
|
|
|
|
def create_pusher(self, pusherdict):
|
2019-06-20 05:32:02 -04:00
|
|
|
kind = pusherdict["kind"]
|
2019-02-20 06:36:50 -05:00
|
|
|
f = self.pusher_types.get(kind, None)
|
|
|
|
if not f:
|
|
|
|
return None
|
2019-02-22 09:48:06 -05:00
|
|
|
logger.debug("creating %s pusher for %r", kind, pusherdict)
|
2019-02-20 06:36:50 -05:00
|
|
|
return f(self.hs, pusherdict)
|
2017-05-22 12:48:53 -04:00
|
|
|
|
2017-06-06 06:46:38 -04:00
|
|
|
def _create_email_pusher(self, _hs, pusherdict):
|
2017-06-06 06:50:07 -04:00
|
|
|
app_name = self._app_name_from_pusherdict(pusherdict)
|
2017-05-22 12:48:53 -04:00
|
|
|
mailer = self.mailers.get(app_name)
|
|
|
|
if not mailer:
|
|
|
|
mailer = Mailer(
|
|
|
|
hs=self.hs,
|
|
|
|
app_name=app_name,
|
2020-08-17 12:05:00 -04:00
|
|
|
template_html=self._notif_template_html,
|
|
|
|
template_text=self._notif_template_text,
|
2017-05-22 12:48:53 -04:00
|
|
|
)
|
|
|
|
self.mailers[app_name] = mailer
|
|
|
|
return EmailPusher(self.hs, pusherdict, mailer)
|
|
|
|
|
|
|
|
def _app_name_from_pusherdict(self, pusherdict):
|
2019-12-18 09:26:58 -05:00
|
|
|
data = pusherdict["data"]
|
2017-05-22 12:48:53 -04:00
|
|
|
|
2019-12-18 09:26:58 -05:00
|
|
|
if isinstance(data, dict):
|
|
|
|
brand = data.get("brand")
|
|
|
|
if isinstance(brand, str):
|
|
|
|
return brand
|
|
|
|
|
|
|
|
return self.config.email_app_name
|