2016-05-04 06:37:42 -04:00
|
|
|
# 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-12-16 11:25:30 -05:00
|
|
|
from typing import TYPE_CHECKING, Callable, Dict, Optional
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2020-12-16 11:25:30 -05:00
|
|
|
from synapse.push import Pusher, PusherConfig
|
2020-08-17 12:05:00 -04:00
|
|
|
from synapse.push.emailpusher import EmailPusher
|
2020-12-07 09:59:38 -05:00
|
|
|
from synapse.push.httppusher import HttpPusher
|
2020-08-17 12:05:00 -04:00
|
|
|
from synapse.push.mailer import Mailer
|
|
|
|
|
2020-12-07 09:59:38 -05:00
|
|
|
if TYPE_CHECKING:
|
2021-03-23 07:12:48 -04:00
|
|
|
from synapse.server import HomeServer
|
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:
|
2020-12-07 09:59:38 -05:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2017-05-22 12:48:53 -04:00
|
|
|
self.hs = hs
|
2019-09-06 06:35:28 -04:00
|
|
|
self.config = hs.config
|
2016-05-04 06:37:42 -04:00
|
|
|
|
2021-07-15 06:02:43 -04:00
|
|
|
self.pusher_types: Dict[str, Callable[[HomeServer, PusherConfig], Pusher]] = {
|
2020-12-07 09:59:38 -05:00
|
|
|
"http": HttpPusher
|
2021-07-15 06:02:43 -04:00
|
|
|
}
|
2016-04-28 10:12:14 -04:00
|
|
|
|
2021-09-15 08:34:52 -04:00
|
|
|
logger.info("email enable notifs: %r", hs.config.email.email_enable_notifs)
|
|
|
|
if hs.config.email.email_enable_notifs:
|
2021-07-15 06:02:43 -04:00
|
|
|
self.mailers: Dict[str, Mailer] = {}
|
2016-04-28 10:12:14 -04:00
|
|
|
|
2021-09-15 08:34:52 -04:00
|
|
|
self._notif_template_html = hs.config.email.email_notif_template_html
|
|
|
|
self._notif_template_text = hs.config.email.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")
|
|
|
|
|
2020-12-16 11:25:30 -05:00
|
|
|
def create_pusher(self, pusher_config: PusherConfig) -> Optional[Pusher]:
|
|
|
|
kind = pusher_config.kind
|
2019-02-20 06:36:50 -05:00
|
|
|
f = self.pusher_types.get(kind, None)
|
|
|
|
if not f:
|
|
|
|
return None
|
2020-12-16 11:25:30 -05:00
|
|
|
logger.debug("creating %s pusher for %r", kind, pusher_config)
|
|
|
|
return f(self.hs, pusher_config)
|
2017-05-22 12:48:53 -04:00
|
|
|
|
2020-12-07 09:59:38 -05:00
|
|
|
def _create_email_pusher(
|
2020-12-16 11:25:30 -05:00
|
|
|
self, _hs: "HomeServer", pusher_config: PusherConfig
|
2020-12-07 09:59:38 -05:00
|
|
|
) -> EmailPusher:
|
2020-12-16 11:25:30 -05:00
|
|
|
app_name = self._app_name_from_pusherdict(pusher_config)
|
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
|
2020-12-16 11:25:30 -05:00
|
|
|
return EmailPusher(self.hs, pusher_config, mailer)
|
2017-05-22 12:48:53 -04:00
|
|
|
|
2020-12-16 11:25:30 -05:00
|
|
|
def _app_name_from_pusherdict(self, pusher_config: PusherConfig) -> str:
|
|
|
|
data = pusher_config.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
|
|
|
|
|
2021-09-23 07:13:34 -04:00
|
|
|
return self.config.email.email_app_name
|