2018-05-17 12:35:31 -04:00
|
|
|
#
|
2023-11-21 15:29:58 -05:00
|
|
|
# This file is licensed under the Affero General Public License (AGPL) version 3.
|
|
|
|
#
|
|
|
|
# Copyright (C) 2023 New Vector, Ltd
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as
|
|
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
|
|
# License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# See the GNU Affero General Public License for more details:
|
|
|
|
# <https://www.gnu.org/licenses/agpl-3.0.html>.
|
|
|
|
#
|
|
|
|
# Originally licensed under the Apache License, Version 2.0:
|
|
|
|
# <http://www.apache.org/licenses/LICENSE-2.0>.
|
|
|
|
#
|
|
|
|
# [This file includes modifications made by New Vector Limited]
|
2018-05-17 12:35:31 -04:00
|
|
|
#
|
|
|
|
#
|
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)
|