forked-synapse/synapse/handlers/search.py

101 lines
3.0 KiB
Python
Raw Normal View History

2015-10-09 14:48:31 +00:00
# -*- coding: utf-8 -*-
# Copyright 2015 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.
from twisted.internet import defer
from ._base import BaseHandler
2015-10-16 14:32:51 +00:00
from synapse.api.constants import Membership
2015-10-20 16:09:53 +00:00
from synapse.api.filtering import Filter
2015-10-09 14:48:31 +00:00
from synapse.api.errors import SynapseError
from synapse.events.utils import serialize_event
import logging
logger = logging.getLogger(__name__)
class SearchHandler(BaseHandler):
def __init__(self, hs):
super(SearchHandler, self).__init__(hs)
@defer.inlineCallbacks
def search(self, user, content):
2015-10-16 10:52:16 +00:00
"""Performs a full text search for a user.
Args:
user (UserID)
content (dict): Search parameters
Returns:
dict to be returned to the client with results of search
"""
try:
search_term = content["search_categories"]["room_events"]["search_term"]
2015-10-14 09:35:50 +00:00
keys = content["search_categories"]["room_events"].get("keys", [
"content.body", "content.name", "content.topic",
])
2015-10-20 16:09:53 +00:00
filter_dict = content["search_categories"]["room_events"].get("filter", {})
except KeyError:
raise SynapseError(400, "Invalid search query")
2015-10-09 14:48:31 +00:00
2015-10-20 16:09:53 +00:00
filtr = Filter(filter_dict)
2015-10-14 08:46:31 +00:00
# TODO: Search through left rooms too
2015-10-13 09:36:36 +00:00
rooms = yield self.store.get_rooms_for_user_where_membership_is(
user.to_string(),
membership_list=[Membership.JOIN],
# membership_list=[Membership.JOIN, Membership.LEAVE, Membership.Ban],
)
room_ids = set(r.room_id for r in rooms)
2015-10-09 14:48:31 +00:00
room_ids = filtr.filter_rooms(room_ids)
2015-10-14 08:46:31 +00:00
2015-10-22 14:02:35 +00:00
rank_map, event_map, _ = yield self.store.search_msgs(
room_ids, search_term, keys
)
2015-10-20 16:09:53 +00:00
filtered_events = filtr.filter(event_map.values())
allowed_events = yield self._filter_events_for_client(
2015-10-20 16:09:53 +00:00
user.to_string(), filtered_events
)
2015-10-14 08:49:00 +00:00
# TODO: Add a limit
time_now = self.clock.time_msec()
results = {
e.event_id: {
"rank": rank_map[e.event_id],
"result": serialize_event(e, time_now)
2015-10-09 14:48:31 +00:00
}
for e in allowed_events
}
2015-10-09 14:48:31 +00:00
2015-10-14 08:46:31 +00:00
logger.info("Found %d results", len(results))
2015-10-09 14:48:31 +00:00
defer.returnValue({
"search_categories": {
"room_events": {
"results": results,
"count": len(results)
}
}
})