mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Weight differently
This commit is contained in:
parent
535c99f157
commit
293ef29655
@ -19,6 +19,7 @@ from ._base import SQLBaseStore
|
|||||||
from synapse.util.caches.descriptors import cached, cachedInlineCallbacks
|
from synapse.util.caches.descriptors import cached, cachedInlineCallbacks
|
||||||
from synapse.api.constants import EventTypes, JoinRules
|
from synapse.api.constants import EventTypes, JoinRules
|
||||||
from synapse.storage.engines import PostgresEngine, Sqlite3Engine
|
from synapse.storage.engines import PostgresEngine, Sqlite3Engine
|
||||||
|
from synapse.types import get_domain_from_id, get_localpart_from_id
|
||||||
|
|
||||||
|
|
||||||
class UserDirectoryStore(SQLBaseStore):
|
class UserDirectoryStore(SQLBaseStore):
|
||||||
@ -50,26 +51,39 @@ class UserDirectoryStore(SQLBaseStore):
|
|||||||
sql = """
|
sql = """
|
||||||
INSERT INTO user_directory
|
INSERT INTO user_directory
|
||||||
(user_id, room_id, display_name, avatar_url, vector)
|
(user_id, room_id, display_name, avatar_url, vector)
|
||||||
VALUES (?,?,?,?,to_tsvector('english', ?))
|
VALUES (?,?,?,?,
|
||||||
|
setweight(to_tsvector('english', ?), 'A')
|
||||||
|
|| to_tsvector('english', ?)
|
||||||
|
|| to_tsvector('english', COALESCE(?, ''))
|
||||||
|
)
|
||||||
"""
|
"""
|
||||||
|
args = (
|
||||||
|
(
|
||||||
|
user_id, room_id, p.display_name, p.avatar_url,
|
||||||
|
get_localpart_from_id(user_id), get_domain_from_id(user_id),
|
||||||
|
p.display_name,
|
||||||
|
)
|
||||||
|
for user_id, p in users_with_profile.iteritems()
|
||||||
|
)
|
||||||
elif isinstance(self.database_engine, Sqlite3Engine):
|
elif isinstance(self.database_engine, Sqlite3Engine):
|
||||||
sql = """
|
sql = """
|
||||||
INSERT INTO user_directory
|
INSERT INTO user_directory
|
||||||
(user_id, room_id, display_name, avatar_url, value)
|
(user_id, room_id, display_name, avatar_url, value)
|
||||||
VALUES (?,?,?,?,?)
|
VALUES (?,?,?,?,?)
|
||||||
"""
|
"""
|
||||||
else:
|
args = (
|
||||||
# This should be unreachable.
|
|
||||||
raise Exception("Unrecognized database engine")
|
|
||||||
|
|
||||||
def _add_profiles_to_user_dir_txn(txn):
|
|
||||||
txn.executemany(sql, (
|
|
||||||
(
|
(
|
||||||
user_id, room_id, p.display_name, p.avatar_url,
|
user_id, room_id, p.display_name, p.avatar_url,
|
||||||
"%s %s" % (user_id, p.display_name,) if p.display_name else user_id
|
"%s %s" % (user_id, p.display_name,) if p.display_name else user_id
|
||||||
)
|
)
|
||||||
for user_id, p in users_with_profile.iteritems()
|
for user_id, p in users_with_profile.iteritems()
|
||||||
))
|
)
|
||||||
|
else:
|
||||||
|
# This should be unreachable.
|
||||||
|
raise Exception("Unrecognized database engine")
|
||||||
|
|
||||||
|
def _add_profiles_to_user_dir_txn(txn):
|
||||||
|
txn.executemany(sql, args)
|
||||||
for user_id in users_with_profile:
|
for user_id in users_with_profile:
|
||||||
txn.call_after(
|
txn.call_after(
|
||||||
self.get_user_in_directory.invalidate, (user_id,)
|
self.get_user_in_directory.invalidate, (user_id,)
|
||||||
@ -160,8 +174,8 @@ class UserDirectoryStore(SQLBaseStore):
|
|||||||
sql = """
|
sql = """
|
||||||
SELECT user_id, display_name, avatar_url
|
SELECT user_id, display_name, avatar_url
|
||||||
FROM user_directory
|
FROM user_directory
|
||||||
WHERE vector @@ to_tsquery('english', ?)
|
WHERE vector @@ plainto_tsquery('english', ?)
|
||||||
ORDER BY ts_rank_cd(vector, to_tsquery('english', ?)) DESC
|
ORDER BY ts_rank_cd(vector, plainto_tsquery('english', ?)) DESC
|
||||||
LIMIT ?
|
LIMIT ?
|
||||||
"""
|
"""
|
||||||
args = (search_term, search_term, limit + 1,)
|
args = (search_term, search_term, limit + 1,)
|
||||||
|
@ -62,6 +62,13 @@ def get_domain_from_id(string):
|
|||||||
return string[idx + 1:]
|
return string[idx + 1:]
|
||||||
|
|
||||||
|
|
||||||
|
def get_localpart_from_id(string):
|
||||||
|
idx = string.find(":")
|
||||||
|
if idx == -1:
|
||||||
|
raise SynapseError(400, "Invalid ID: %r" % (string,))
|
||||||
|
return string[1:idx]
|
||||||
|
|
||||||
|
|
||||||
class DomainSpecificString(
|
class DomainSpecificString(
|
||||||
namedtuple("DomainSpecificString", ("localpart", "domain"))
|
namedtuple("DomainSpecificString", ("localpart", "domain"))
|
||||||
):
|
):
|
||||||
|
Loading…
Reference in New Issue
Block a user