2015-02-05 09:46:06 -05:00
|
|
|
from synapse.push.rulekinds import PRIORITY_CLASS_MAP, PRIORITY_CLASS_INVERSE_MAP
|
|
|
|
|
2015-02-10 11:30:48 -05:00
|
|
|
|
2015-02-05 09:46:06 -05:00
|
|
|
def list_with_base_rules(rawrules, user_name):
|
|
|
|
ruleslist = []
|
|
|
|
|
|
|
|
# shove the server default rules for each kind onto the end of each
|
2015-02-09 09:17:52 -05:00
|
|
|
current_prio_class = PRIORITY_CLASS_INVERSE_MAP.keys()[-1]
|
2015-02-05 09:46:06 -05:00
|
|
|
for r in rawrules:
|
2015-02-09 09:17:52 -05:00
|
|
|
if r['priority_class'] < current_prio_class:
|
|
|
|
while r['priority_class'] < current_prio_class:
|
2015-02-05 09:46:06 -05:00
|
|
|
ruleslist.extend(make_base_rules(
|
2015-02-10 11:30:48 -05:00
|
|
|
user_name,
|
|
|
|
PRIORITY_CLASS_INVERSE_MAP[current_prio_class]
|
|
|
|
))
|
2015-02-09 09:17:52 -05:00
|
|
|
current_prio_class -= 1
|
2015-02-05 09:46:06 -05:00
|
|
|
|
|
|
|
ruleslist.append(r)
|
|
|
|
|
2015-02-09 09:17:52 -05:00
|
|
|
while current_prio_class > 0:
|
2015-02-05 09:46:06 -05:00
|
|
|
ruleslist.extend(make_base_rules(
|
|
|
|
user_name,
|
2015-02-10 11:30:48 -05:00
|
|
|
PRIORITY_CLASS_INVERSE_MAP[current_prio_class]
|
|
|
|
))
|
2015-02-09 09:17:52 -05:00
|
|
|
current_prio_class -= 1
|
2015-02-05 09:46:06 -05:00
|
|
|
|
|
|
|
return ruleslist
|
|
|
|
|
|
|
|
|
|
|
|
def make_base_rules(user, kind):
|
|
|
|
rules = []
|
|
|
|
|
|
|
|
if kind == 'override':
|
|
|
|
rules = make_base_override_rules()
|
|
|
|
elif kind == 'content':
|
|
|
|
rules = make_base_content_rules(user)
|
|
|
|
|
|
|
|
for r in rules:
|
|
|
|
r['priority_class'] = PRIORITY_CLASS_MAP[kind]
|
2015-02-05 10:11:38 -05:00
|
|
|
r['default'] = True
|
2015-02-05 09:46:06 -05:00
|
|
|
|
|
|
|
return rules
|
|
|
|
|
|
|
|
|
|
|
|
def make_base_content_rules(user):
|
|
|
|
return [
|
2015-01-29 13:38:22 -05:00
|
|
|
{
|
|
|
|
'conditions': [
|
|
|
|
{
|
|
|
|
'kind': 'event_match',
|
|
|
|
'key': 'content.body',
|
2015-02-05 09:46:06 -05:00
|
|
|
'pattern': user.localpart, # Matrix ID match
|
2015-01-29 13:38:22 -05:00
|
|
|
}
|
|
|
|
],
|
|
|
|
'actions': [
|
|
|
|
'notify',
|
|
|
|
{
|
2015-02-05 09:46:06 -05:00
|
|
|
'set_tweak': 'sound',
|
|
|
|
'value': 'default',
|
2015-01-29 13:38:22 -05:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2015-02-05 09:46:06 -05:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
def make_base_override_rules():
|
|
|
|
return [
|
2015-01-29 13:38:22 -05:00
|
|
|
{
|
|
|
|
'conditions': [
|
|
|
|
{
|
|
|
|
'kind': 'contains_display_name'
|
|
|
|
}
|
|
|
|
],
|
|
|
|
'actions': [
|
|
|
|
'notify',
|
|
|
|
{
|
2015-02-05 09:46:06 -05:00
|
|
|
'set_tweak': 'sound',
|
|
|
|
'value': 'default'
|
2015-01-29 13:38:22 -05:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2015-01-30 09:46:03 -05:00
|
|
|
{
|
|
|
|
'conditions': [
|
|
|
|
{
|
|
|
|
'kind': 'room_member_count',
|
|
|
|
'is': '2'
|
|
|
|
}
|
|
|
|
],
|
|
|
|
'actions': [
|
|
|
|
'notify',
|
|
|
|
{
|
2015-02-03 11:06:31 -05:00
|
|
|
'set_tweak': 'sound',
|
|
|
|
'value': 'default'
|
2015-01-30 09:46:03 -05:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2015-01-30 10:54:29 -05:00
|
|
|
]
|