Skip to content
Snippets Groups Projects
Unverified Commit 4cbcd4a9 authored by Patrick Cloke's avatar Patrick Cloke Committed by GitHub
Browse files

Misc clean-up of push rules datastore (#12856)

parent 6aeee9a1
No related branches found
No related tags found
No related merge requests found
Clean-up the push rules datastore.
...@@ -174,7 +174,7 @@ class PushRulesWorkerStore( ...@@ -174,7 +174,7 @@ class PushRulesWorkerStore(
"conditions", "conditions",
"actions", "actions",
), ),
desc="get_push_rules_enabled_for_user", desc="get_push_rules_for_user",
) )
rows.sort(key=lambda row: (-int(row["priority_class"]), -int(row["priority"]))) rows.sort(key=lambda row: (-int(row["priority_class"]), -int(row["priority"])))
...@@ -188,10 +188,10 @@ class PushRulesWorkerStore( ...@@ -188,10 +188,10 @@ class PushRulesWorkerStore(
results = await self.db_pool.simple_select_list( results = await self.db_pool.simple_select_list(
table="push_rules_enable", table="push_rules_enable",
keyvalues={"user_name": user_id}, keyvalues={"user_name": user_id},
retcols=("user_name", "rule_id", "enabled"), retcols=("rule_id", "enabled"),
desc="get_push_rules_enabled_for_user", desc="get_push_rules_enabled_for_user",
) )
return {r["rule_id"]: False if r["enabled"] == 0 else True for r in results} return {r["rule_id"]: bool(r["enabled"]) for r in results}
async def have_push_rules_changed_for_user( async def have_push_rules_changed_for_user(
self, user_id: str, last_id: int self, user_id: str, last_id: int
...@@ -213,11 +213,7 @@ class PushRulesWorkerStore( ...@@ -213,11 +213,7 @@ class PushRulesWorkerStore(
"have_push_rules_changed", have_push_rules_changed_txn "have_push_rules_changed", have_push_rules_changed_txn
) )
@cachedList( @cachedList(cached_method_name="get_push_rules_for_user", list_name="user_ids")
cached_method_name="get_push_rules_for_user",
list_name="user_ids",
num_args=1,
)
async def bulk_get_push_rules( async def bulk_get_push_rules(
self, user_ids: Collection[str] self, user_ids: Collection[str]
) -> Dict[str, List[JsonDict]]: ) -> Dict[str, List[JsonDict]]:
...@@ -249,9 +245,7 @@ class PushRulesWorkerStore( ...@@ -249,9 +245,7 @@ class PushRulesWorkerStore(
return results return results
@cachedList( @cachedList(
cached_method_name="get_push_rules_enabled_for_user", cached_method_name="get_push_rules_enabled_for_user", list_name="user_ids"
list_name="user_ids",
num_args=1,
) )
async def bulk_get_push_rules_enabled( async def bulk_get_push_rules_enabled(
self, user_ids: Collection[str] self, user_ids: Collection[str]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment