2016-05-23 13:33:51 -04:00
|
|
|
# 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.
|
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
import logging
|
2021-08-26 07:53:52 -04:00
|
|
|
from typing import TYPE_CHECKING, Tuple
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2021-12-08 12:26:29 -05:00
|
|
|
from synapse.api.constants import ReceiptTypes
|
2019-05-09 08:21:57 -04:00
|
|
|
from synapse.events.utils import format_event_for_client_v2_without_room_id
|
2021-08-26 07:53:52 -04:00
|
|
|
from synapse.http.server import HttpServer
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.http.servlet import RestServlet, parse_integer, parse_string
|
2021-08-26 07:53:52 -04:00
|
|
|
from synapse.http.site import SynapseRequest
|
|
|
|
from synapse.types import JsonDict
|
2016-05-23 13:33:51 -04:00
|
|
|
|
2019-06-03 07:28:59 -04:00
|
|
|
from ._base import client_patterns
|
2016-05-23 13:33:51 -04:00
|
|
|
|
2021-08-26 07:53:52 -04:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.server import HomeServer
|
|
|
|
|
2016-05-23 13:33:51 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class NotificationsServlet(RestServlet):
|
2019-06-03 07:28:59 -04:00
|
|
|
PATTERNS = client_patterns("/notifications$")
|
2016-05-23 13:33:51 -04:00
|
|
|
|
2021-08-26 07:53:52 -04:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__()
|
2016-05-23 13:33:51 -04:00
|
|
|
self.store = hs.get_datastore()
|
|
|
|
self.auth = hs.get_auth()
|
|
|
|
self.clock = hs.get_clock()
|
2019-05-09 08:21:57 -04:00
|
|
|
self._event_serializer = hs.get_event_client_serializer()
|
2016-05-23 13:33:51 -04:00
|
|
|
|
2021-08-26 07:53:52 -04:00
|
|
|
async def on_GET(self, request: SynapseRequest) -> Tuple[int, JsonDict]:
|
2019-12-05 11:46:37 -05:00
|
|
|
requester = await self.auth.get_user_by_req(request)
|
2016-05-23 13:33:51 -04:00
|
|
|
user_id = requester.user.to_string()
|
|
|
|
|
|
|
|
from_token = parse_string(request, "from", required=False)
|
|
|
|
limit = parse_integer(request, "limit", default=50)
|
2016-09-08 08:43:35 -04:00
|
|
|
only = parse_string(request, "only", required=False)
|
2016-05-23 13:33:51 -04:00
|
|
|
|
|
|
|
limit = min(limit, 500)
|
|
|
|
|
2019-12-05 11:46:37 -05:00
|
|
|
push_actions = await self.store.get_push_actions_for_user(
|
2016-09-08 08:43:35 -04:00
|
|
|
user_id, from_token, limit, only_highlight=(only == "highlight")
|
2016-05-23 13:33:51 -04:00
|
|
|
)
|
|
|
|
|
2019-12-05 11:46:37 -05:00
|
|
|
receipts_by_room = await self.store.get_receipts_for_user_with_orderings(
|
2021-12-08 12:26:29 -05:00
|
|
|
user_id, ReceiptTypes.READ
|
2016-05-23 13:33:51 -04:00
|
|
|
)
|
|
|
|
|
2021-12-21 08:25:34 -05:00
|
|
|
notif_event_ids = [pa.event_id for pa in push_actions]
|
2019-12-05 11:46:37 -05:00
|
|
|
notif_events = await self.store.get_events(notif_event_ids)
|
2016-05-23 13:33:51 -04:00
|
|
|
|
|
|
|
returned_push_actions = []
|
|
|
|
|
|
|
|
next_token = None
|
|
|
|
|
|
|
|
for pa in push_actions:
|
|
|
|
returned_pa = {
|
2021-12-21 08:25:34 -05:00
|
|
|
"room_id": pa.room_id,
|
|
|
|
"profile_tag": pa.profile_tag,
|
|
|
|
"actions": pa.actions,
|
|
|
|
"ts": pa.received_ts,
|
2019-06-20 05:32:02 -04:00
|
|
|
"event": (
|
2022-01-07 09:10:46 -05:00
|
|
|
self._event_serializer.serialize_event(
|
2021-12-21 08:25:34 -05:00
|
|
|
notif_events[pa.event_id],
|
2019-06-20 05:32:02 -04:00
|
|
|
self.clock.time_msec(),
|
|
|
|
event_format=format_event_for_client_v2_without_room_id,
|
|
|
|
)
|
|
|
|
),
|
2016-05-23 13:33:51 -04:00
|
|
|
}
|
|
|
|
|
2021-12-21 08:25:34 -05:00
|
|
|
if pa.room_id not in receipts_by_room:
|
2016-05-23 13:33:51 -04:00
|
|
|
returned_pa["read"] = False
|
|
|
|
else:
|
2021-12-21 08:25:34 -05:00
|
|
|
receipt = receipts_by_room[pa.room_id]
|
2016-05-23 13:33:51 -04:00
|
|
|
|
|
|
|
returned_pa["read"] = (
|
2019-06-20 05:32:02 -04:00
|
|
|
receipt["topological_ordering"],
|
|
|
|
receipt["stream_ordering"],
|
2021-12-21 08:25:34 -05:00
|
|
|
) >= (pa.topological_ordering, pa.stream_ordering)
|
2016-05-23 13:33:51 -04:00
|
|
|
returned_push_actions.append(returned_pa)
|
2021-12-21 08:25:34 -05:00
|
|
|
next_token = str(pa.stream_ordering)
|
2016-05-23 13:33:51 -04:00
|
|
|
|
2019-08-30 11:28:26 -04:00
|
|
|
return 200, {"notifications": returned_push_actions, "next_token": next_token}
|
2016-05-23 13:33:51 -04:00
|
|
|
|
|
|
|
|
2021-08-26 07:53:52 -04:00
|
|
|
def register_servlets(hs: "HomeServer", http_server: HttpServer) -> None:
|
2016-05-23 13:33:51 -04:00
|
|
|
NotificationsServlet(hs).register(http_server)
|