2018-05-17 12:35:31 -04:00
|
|
|
# Copyright 2018 New Vector 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.
|
2021-03-24 06:48:46 -04:00
|
|
|
from typing import TYPE_CHECKING, Iterable, Union
|
2020-07-31 16:22:06 -04:00
|
|
|
|
2018-05-17 12:35:31 -04:00
|
|
|
from synapse.server_notices.consent_server_notices import ConsentServerNotices
|
2018-08-10 10:12:59 -04:00
|
|
|
from synapse.server_notices.resource_limits_server_notices import (
|
|
|
|
ResourceLimitsServerNotices,
|
|
|
|
)
|
2021-03-24 06:48:46 -04:00
|
|
|
from synapse.server_notices.worker_server_notices_sender import (
|
|
|
|
WorkerServerNoticesSender,
|
|
|
|
)
|
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.server import HomeServer
|
2018-05-17 12:35:31 -04:00
|
|
|
|
|
|
|
|
2021-03-24 06:48:46 -04:00
|
|
|
class ServerNoticesSender(WorkerServerNoticesSender):
|
2018-05-17 12:35:31 -04:00
|
|
|
"""A centralised place which sends server notices automatically when
|
|
|
|
Certain Events take place
|
|
|
|
"""
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2021-03-24 06:48:46 -04:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
|
|
|
super().__init__(hs)
|
2021-07-15 06:02:43 -04:00
|
|
|
self._server_notices: Iterable[
|
|
|
|
Union[ConsentServerNotices, ResourceLimitsServerNotices]
|
|
|
|
] = (
|
2018-08-10 10:12:59 -04:00
|
|
|
ConsentServerNotices(hs),
|
|
|
|
ResourceLimitsServerNotices(hs),
|
2021-07-15 06:02:43 -04:00
|
|
|
)
|
2018-05-17 12:35:31 -04:00
|
|
|
|
2020-07-31 16:22:06 -04:00
|
|
|
async def on_user_syncing(self, user_id: str) -> None:
|
2018-05-17 12:35:31 -04:00
|
|
|
"""Called when the user performs a sync operation.
|
|
|
|
|
|
|
|
Args:
|
2020-07-31 16:22:06 -04:00
|
|
|
user_id: mxid of user who synced
|
2018-05-17 12:35:31 -04:00
|
|
|
"""
|
2018-08-10 10:12:59 -04:00
|
|
|
for sn in self._server_notices:
|
2020-05-01 10:15:36 -04:00
|
|
|
await sn.maybe_send_server_notice_to_user(user_id)
|
2018-05-17 12:35:31 -04:00
|
|
|
|
2020-07-31 16:22:06 -04:00
|
|
|
async def on_user_ip(self, user_id: str) -> None:
|
2018-05-22 05:57:56 -04:00
|
|
|
"""Called on the master when a worker process saw a client request.
|
2018-05-17 12:35:31 -04:00
|
|
|
|
|
|
|
Args:
|
2020-07-31 16:22:06 -04:00
|
|
|
user_id: mxid
|
2018-05-17 12:35:31 -04:00
|
|
|
"""
|
2018-05-22 05:57:56 -04:00
|
|
|
# The synchrotrons use a stubbed version of ServerNoticesSender, so
|
|
|
|
# we check for notices to send to the user in on_user_ip as well as
|
|
|
|
# in on_user_syncing
|
2018-08-10 10:12:59 -04:00
|
|
|
for sn in self._server_notices:
|
2020-05-01 10:15:36 -04:00
|
|
|
await sn.maybe_send_server_notice_to_user(user_id)
|