2016-03-03 11:11:59 -05: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.
|
|
|
|
|
|
|
|
import copy
|
2020-12-11 11:43:53 -05:00
|
|
|
from typing import Any, Dict, List, Optional
|
2016-06-01 09:27:07 -04:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.push.rulekinds import PRIORITY_CLASS_INVERSE_MAP, PRIORITY_CLASS_MAP
|
2022-09-20 07:10:31 -04:00
|
|
|
from synapse.synapse_rust.push import FilteredPushRules, PushRule
|
2020-12-11 11:43:53 -05:00
|
|
|
from synapse.types import UserID
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2016-06-01 09:27:07 -04:00
|
|
|
|
2021-10-11 12:42:10 -04:00
|
|
|
def format_push_rules_for_user(
|
2022-08-16 07:22:17 -04:00
|
|
|
user: UserID, ruleslist: FilteredPushRules
|
2021-10-11 12:42:10 -04:00
|
|
|
) -> Dict[str, Dict[str, list]]:
|
2016-06-01 09:27:07 -04:00
|
|
|
"""Converts a list of rawrules and a enabled map into nested dictionaries
|
|
|
|
to match the Matrix client-server format for push rules"""
|
|
|
|
|
2021-07-15 06:02:43 -04:00
|
|
|
rules: Dict[str, Dict[str, List[Dict[str, Any]]]] = {
|
2020-12-11 11:43:53 -05:00
|
|
|
"global": {},
|
|
|
|
"device": {},
|
2021-07-15 06:02:43 -04:00
|
|
|
}
|
2016-03-03 11:11:59 -05:00
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
rules["global"] = _add_empty_priority_class_arrays(rules["global"])
|
2016-03-03 11:11:59 -05:00
|
|
|
|
2022-09-20 07:10:31 -04:00
|
|
|
for r, enabled in ruleslist.rules():
|
2022-08-16 07:22:17 -04:00
|
|
|
template_name = _priority_class_to_template_name(r.priority_class)
|
|
|
|
|
|
|
|
rulearray = rules["global"][template_name]
|
|
|
|
|
|
|
|
template_rule = _rule_to_template(r)
|
|
|
|
if not template_rule:
|
|
|
|
continue
|
|
|
|
|
|
|
|
rulearray.append(template_rule)
|
|
|
|
|
|
|
|
template_rule["enabled"] = enabled
|
|
|
|
|
|
|
|
if "conditions" not in template_rule:
|
|
|
|
# Not all formatted rules have explicit conditions, e.g. "room"
|
|
|
|
# rules omit them as they can be derived from the kind and rule ID.
|
|
|
|
#
|
|
|
|
# If the formatted rule has no conditions then we can skip the
|
|
|
|
# formatting of conditions.
|
|
|
|
continue
|
2016-03-03 11:11:59 -05:00
|
|
|
|
|
|
|
# Remove internal stuff.
|
2022-08-16 07:22:17 -04:00
|
|
|
template_rule["conditions"] = copy.deepcopy(template_rule["conditions"])
|
|
|
|
for c in template_rule["conditions"]:
|
2022-03-11 08:45:26 -05:00
|
|
|
c.pop("_cache_key", None)
|
2016-03-03 11:11:59 -05:00
|
|
|
|
|
|
|
pattern_type = c.pop("pattern_type", None)
|
|
|
|
if pattern_type == "user_id":
|
|
|
|
c["pattern"] = user.to_string()
|
|
|
|
elif pattern_type == "user_localpart":
|
|
|
|
c["pattern"] = user.localpart
|
|
|
|
|
2022-05-24 09:23:23 -04:00
|
|
|
sender_type = c.pop("sender_type", None)
|
|
|
|
if sender_type == "user_id":
|
|
|
|
c["sender"] = user.to_string()
|
|
|
|
|
2016-03-03 11:11:59 -05:00
|
|
|
return rules
|
|
|
|
|
|
|
|
|
2020-12-11 11:43:53 -05:00
|
|
|
def _add_empty_priority_class_arrays(d: Dict[str, list]) -> Dict[str, list]:
|
2016-03-03 11:11:59 -05:00
|
|
|
for pc in PRIORITY_CLASS_MAP.keys():
|
|
|
|
d[pc] = []
|
|
|
|
return d
|
|
|
|
|
|
|
|
|
2022-08-16 07:22:17 -04:00
|
|
|
def _rule_to_template(rule: PushRule) -> Optional[Dict[str, Any]]:
|
|
|
|
templaterule: Dict[str, Any]
|
|
|
|
|
|
|
|
unscoped_rule_id = _rule_id_from_namespaced(rule.rule_id)
|
2016-03-03 11:11:59 -05:00
|
|
|
|
2022-08-16 07:22:17 -04:00
|
|
|
template_name = _priority_class_to_template_name(rule.priority_class)
|
2019-06-20 05:32:02 -04:00
|
|
|
if template_name in ["override", "underride"]:
|
2022-08-16 07:22:17 -04:00
|
|
|
templaterule = {"conditions": rule.conditions, "actions": rule.actions}
|
2016-03-03 11:11:59 -05:00
|
|
|
elif template_name in ["sender", "room"]:
|
2022-08-16 07:22:17 -04:00
|
|
|
templaterule = {"actions": rule.actions}
|
|
|
|
unscoped_rule_id = rule.conditions[0]["pattern"]
|
2019-06-20 05:32:02 -04:00
|
|
|
elif template_name == "content":
|
2022-08-16 07:22:17 -04:00
|
|
|
if len(rule.conditions) != 1:
|
2016-03-03 11:11:59 -05:00
|
|
|
return None
|
2022-08-16 07:22:17 -04:00
|
|
|
thecond = rule.conditions[0]
|
2016-03-03 11:11:59 -05:00
|
|
|
if "pattern" not in thecond:
|
|
|
|
return None
|
2022-08-16 07:22:17 -04:00
|
|
|
templaterule = {"actions": rule.actions}
|
2016-03-03 11:11:59 -05:00
|
|
|
templaterule["pattern"] = thecond["pattern"]
|
2020-12-11 11:43:53 -05:00
|
|
|
else:
|
|
|
|
# This should not be reached unless this function is not kept in sync
|
|
|
|
# with PRIORITY_CLASS_INVERSE_MAP.
|
|
|
|
raise ValueError("Unexpected template_name: %s" % (template_name,))
|
2016-03-03 11:11:59 -05:00
|
|
|
|
2022-09-29 06:57:00 -04:00
|
|
|
templaterule["rule_id"] = unscoped_rule_id
|
|
|
|
templaterule["default"] = rule.default
|
2016-03-03 11:11:59 -05:00
|
|
|
return templaterule
|
|
|
|
|
|
|
|
|
2020-12-11 11:43:53 -05:00
|
|
|
def _rule_id_from_namespaced(in_rule_id: str) -> str:
|
2019-06-20 05:32:02 -04:00
|
|
|
return in_rule_id.split("/")[-1]
|
2016-03-03 11:11:59 -05:00
|
|
|
|
|
|
|
|
2020-12-11 11:43:53 -05:00
|
|
|
def _priority_class_to_template_name(pc: int) -> str:
|
2016-03-03 11:11:59 -05:00
|
|
|
return PRIORITY_CLASS_INVERSE_MAP[pc]
|