2015-04-24 05:35:29 -04:00
|
|
|
# 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.
|
|
|
|
|
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-03-10 13:26:25 -04:00
|
|
|
|
|
|
|
ruleslist.extend(make_base_prepend_rules(
|
|
|
|
user_name, PRIORITY_CLASS_INVERSE_MAP[current_prio_class]
|
|
|
|
))
|
|
|
|
|
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-03-10 13:26:25 -04:00
|
|
|
ruleslist.extend(make_base_append_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-03-10 13:26:25 -04:00
|
|
|
if current_prio_class > 0:
|
|
|
|
ruleslist.extend(make_base_prepend_rules(
|
|
|
|
user_name,
|
|
|
|
PRIORITY_CLASS_INVERSE_MAP[current_prio_class]
|
|
|
|
))
|
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-03-10 13:26:25 -04:00
|
|
|
ruleslist.extend(make_base_append_rules(
|
2015-02-05 09:46:06 -05:00
|
|
|
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-03-10 13:26:25 -04:00
|
|
|
if current_prio_class > 0:
|
|
|
|
ruleslist.extend(make_base_prepend_rules(
|
|
|
|
user_name,
|
|
|
|
PRIORITY_CLASS_INVERSE_MAP[current_prio_class]
|
|
|
|
))
|
2015-02-05 09:46:06 -05:00
|
|
|
|
|
|
|
return ruleslist
|
|
|
|
|
|
|
|
|
2015-03-10 13:26:25 -04:00
|
|
|
def make_base_append_rules(user, kind):
|
2015-02-05 09:46:06 -05:00
|
|
|
rules = []
|
|
|
|
|
|
|
|
if kind == 'override':
|
2015-03-10 13:26:25 -04:00
|
|
|
rules = make_base_append_override_rules()
|
2015-02-26 13:58:14 -05:00
|
|
|
elif kind == 'underride':
|
2015-03-10 13:26:25 -04:00
|
|
|
rules = make_base_append_underride_rules(user)
|
2015-02-05 09:46:06 -05:00
|
|
|
elif kind == 'content':
|
2015-03-10 13:26:25 -04:00
|
|
|
rules = make_base_append_content_rules(user)
|
|
|
|
|
|
|
|
for r in rules:
|
|
|
|
r['priority_class'] = PRIORITY_CLASS_MAP[kind]
|
|
|
|
r['default'] = True # Deprecated, left for backwards compat
|
|
|
|
|
|
|
|
return rules
|
|
|
|
|
2015-03-11 06:01:17 -04:00
|
|
|
|
2015-03-10 13:26:25 -04:00
|
|
|
def make_base_prepend_rules(user, kind):
|
|
|
|
rules = []
|
|
|
|
|
|
|
|
if kind == 'override':
|
|
|
|
rules = make_base_prepend_override_rules()
|
2015-02-05 09:46:06 -05:00
|
|
|
|
|
|
|
for r in rules:
|
|
|
|
r['priority_class'] = PRIORITY_CLASS_MAP[kind]
|
2015-02-26 13:07:44 -05:00
|
|
|
r['default'] = True # Deprecated, left for backwards compat
|
2015-02-05 09:46:06 -05:00
|
|
|
|
|
|
|
return rules
|
|
|
|
|
|
|
|
|
2015-03-10 13:26:25 -04:00
|
|
|
def make_base_append_content_rules(user):
|
2015-02-05 09:46:06 -05:00
|
|
|
return [
|
2015-01-29 13:38:22 -05:00
|
|
|
{
|
2015-02-26 13:07:44 -05:00
|
|
|
'rule_id': 'global/content/.m.rule.contains_user_name',
|
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-03-06 05:26:08 -05:00
|
|
|
}, {
|
|
|
|
'set_tweak': 'highlight'
|
2015-01-29 13:38:22 -05:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2015-02-05 09:46:06 -05:00
|
|
|
]
|
|
|
|
|
|
|
|
|
2015-03-10 13:26:25 -04:00
|
|
|
def make_base_prepend_override_rules():
|
|
|
|
return [
|
|
|
|
{
|
|
|
|
'rule_id': 'global/override/.m.rule.master',
|
|
|
|
'enabled': False,
|
|
|
|
'conditions': [],
|
|
|
|
'actions': [
|
|
|
|
"dont_notify"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
def make_base_append_override_rules():
|
2015-02-05 09:46:06 -05:00
|
|
|
return [
|
2015-03-06 05:27:32 -05:00
|
|
|
{
|
2015-04-24 09:26:33 -04:00
|
|
|
'rule_id': 'global/override/.m.rule.suppress_notices',
|
|
|
|
'conditions': [
|
|
|
|
{
|
|
|
|
'kind': 'event_match',
|
|
|
|
'key': 'content.msgtype',
|
|
|
|
'pattern': 'm.notice',
|
|
|
|
}
|
|
|
|
],
|
|
|
|
'actions': [
|
|
|
|
'dont_notify',
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
def make_base_append_underride_rules(user):
|
|
|
|
return [
|
|
|
|
{
|
|
|
|
'rule_id': 'global/underride/.m.rule.call',
|
2015-03-06 14:36:12 -05:00
|
|
|
'conditions': [
|
|
|
|
{
|
|
|
|
'kind': 'event_match',
|
|
|
|
'key': 'type',
|
|
|
|
'pattern': 'm.call.invite',
|
|
|
|
}
|
|
|
|
],
|
|
|
|
'actions': [
|
|
|
|
'notify',
|
|
|
|
{
|
|
|
|
'set_tweak': 'sound',
|
|
|
|
'value': 'ring'
|
|
|
|
}, {
|
|
|
|
'set_tweak': 'highlight',
|
2015-03-11 07:24:50 -04:00
|
|
|
'value': False
|
2015-03-06 14:36:12 -05:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2015-01-29 13:38:22 -05:00
|
|
|
{
|
2015-06-23 09:26:14 -04:00
|
|
|
'rule_id': 'global/underride/.m.rule.contains_display_name',
|
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-03-06 05:26:08 -05:00
|
|
|
}, {
|
|
|
|
'set_tweak': 'highlight'
|
2015-01-29 13:38:22 -05:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2015-01-30 09:46:03 -05:00
|
|
|
{
|
2015-04-24 09:26:33 -04:00
|
|
|
'rule_id': 'global/underride/.m.rule.room_one_to_one',
|
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-03-06 10:12:37 -05:00
|
|
|
}, {
|
|
|
|
'set_tweak': 'highlight',
|
2015-03-11 07:24:50 -04:00
|
|
|
'value': False
|
2015-01-30 09:46:03 -05:00
|
|
|
}
|
|
|
|
]
|
2015-04-24 09:26:33 -04:00
|
|
|
},
|
2015-03-06 06:50:51 -05:00
|
|
|
{
|
|
|
|
'rule_id': 'global/underride/.m.rule.invite_for_me',
|
|
|
|
'conditions': [
|
|
|
|
{
|
|
|
|
'kind': 'event_match',
|
|
|
|
'key': 'type',
|
|
|
|
'pattern': 'm.room.member',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'kind': 'event_match',
|
|
|
|
'key': 'content.membership',
|
|
|
|
'pattern': 'invite',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'kind': 'event_match',
|
|
|
|
'key': 'state_key',
|
|
|
|
'pattern': user.to_string(),
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'actions': [
|
|
|
|
'notify',
|
|
|
|
{
|
|
|
|
'set_tweak': 'sound',
|
|
|
|
'value': 'default'
|
2015-03-06 10:12:37 -05:00
|
|
|
}, {
|
|
|
|
'set_tweak': 'highlight',
|
2015-03-11 07:24:50 -04:00
|
|
|
'value': False
|
2015-03-06 06:50:51 -05:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'rule_id': 'global/underride/.m.rule.member_event',
|
|
|
|
'conditions': [
|
|
|
|
{
|
|
|
|
'kind': 'event_match',
|
|
|
|
'key': 'type',
|
|
|
|
'pattern': 'm.room.member',
|
|
|
|
}
|
|
|
|
],
|
|
|
|
'actions': [
|
2015-03-06 10:12:37 -05:00
|
|
|
'notify', {
|
|
|
|
'set_tweak': 'highlight',
|
2015-03-11 07:24:50 -04:00
|
|
|
'value': False
|
2015-03-06 10:12:37 -05:00
|
|
|
}
|
2015-03-06 06:50:51 -05:00
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'rule_id': 'global/underride/.m.rule.message',
|
|
|
|
'conditions': [
|
|
|
|
{
|
|
|
|
'kind': 'event_match',
|
|
|
|
'key': 'type',
|
|
|
|
'pattern': 'm.room.message',
|
|
|
|
}
|
|
|
|
],
|
|
|
|
'actions': [
|
2015-03-06 10:12:37 -05:00
|
|
|
'notify', {
|
|
|
|
'set_tweak': 'highlight',
|
2015-03-11 07:24:50 -04:00
|
|
|
'value': False
|
2015-03-06 10:12:37 -05:00
|
|
|
}
|
2015-03-06 06:50:51 -05:00
|
|
|
]
|
2015-03-06 10:03:34 -05:00
|
|
|
}
|
2015-02-26 13:58:14 -05:00
|
|
|
]
|