2019-06-21 11:49:50 +00:00
|
|
|
# reminder - A maubot plugin that reacts to messages that match predefined rules.
|
|
|
|
# Copyright (C) 2019 Tulir Asokan
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Affero General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2019-06-23 00:08:03 +00:00
|
|
|
from typing import (NewType, Optional, Callable, Pattern, Match, Union, Dict, List, Tuple, Set,
|
|
|
|
Type, Any)
|
2019-06-22 22:49:05 +00:00
|
|
|
from itertools import chain
|
2019-06-23 10:10:53 +00:00
|
|
|
import json
|
2019-06-22 22:49:05 +00:00
|
|
|
import copy
|
2019-06-21 11:49:50 +00:00
|
|
|
import re
|
|
|
|
|
2019-06-22 22:49:05 +00:00
|
|
|
from attr import dataclass
|
|
|
|
from jinja2 import Template as JinjaTemplate
|
|
|
|
|
|
|
|
from mautrix.types import RoomID, EventType, Event
|
2019-06-21 11:49:50 +00:00
|
|
|
from mautrix.util.config import BaseProxyConfig, ConfigUpdateHelper
|
|
|
|
|
2019-06-22 23:08:30 +00:00
|
|
|
from maubot import Plugin, MessageEvent
|
2019-06-21 11:49:50 +00:00
|
|
|
from maubot.handlers import event
|
|
|
|
|
|
|
|
|
|
|
|
class Config(BaseProxyConfig):
|
|
|
|
def do_update(self, helper: ConfigUpdateHelper) -> None:
|
|
|
|
helper.copy("rules")
|
2019-06-22 22:49:05 +00:00
|
|
|
helper.copy("templates")
|
2019-06-23 00:45:00 +00:00
|
|
|
helper.copy("default_flags")
|
2019-06-22 22:49:05 +00:00
|
|
|
|
|
|
|
|
2019-06-23 00:08:03 +00:00
|
|
|
class ConfigError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2019-06-22 22:49:05 +00:00
|
|
|
class Key(str):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2019-06-23 00:08:03 +00:00
|
|
|
class BlankMatch:
|
|
|
|
@staticmethod
|
|
|
|
def groups() -> List[str]:
|
|
|
|
return []
|
|
|
|
|
|
|
|
|
|
|
|
class SimplePattern:
|
|
|
|
_ptm = BlankMatch()
|
|
|
|
|
|
|
|
matcher: Callable[[str], bool]
|
2019-06-23 00:45:00 +00:00
|
|
|
ignorecase: bool
|
2019-06-23 00:08:03 +00:00
|
|
|
|
2019-06-23 00:45:00 +00:00
|
|
|
def __init__(self, matcher: Callable[[str], bool], ignorecase: bool) -> None:
|
2019-06-23 00:08:03 +00:00
|
|
|
self.matcher = matcher
|
2019-06-23 00:45:00 +00:00
|
|
|
self.ignorecase = ignorecase
|
2019-06-23 00:08:03 +00:00
|
|
|
|
2019-06-23 00:45:00 +00:00
|
|
|
def search(self, val: str) -> BlankMatch:
|
|
|
|
if self.ignorecase:
|
|
|
|
val = val.lower()
|
2019-06-23 00:08:03 +00:00
|
|
|
if self.matcher(val):
|
|
|
|
return self._ptm
|
|
|
|
|
|
|
|
|
|
|
|
RMatch = Union[Match, BlankMatch]
|
|
|
|
RPattern = Union[Pattern, SimplePattern]
|
2019-06-23 10:10:53 +00:00
|
|
|
InputPattern = Union[str, Dict[str, str]]
|
2019-06-23 00:08:03 +00:00
|
|
|
|
2019-06-22 22:49:05 +00:00
|
|
|
Index = NewType("Index", Union[str, int, Key])
|
|
|
|
|
2019-06-22 23:08:30 +00:00
|
|
|
variable_regex = re.compile(r"\$\${([0-9A-Za-z-_]+)}")
|
|
|
|
|
2019-06-22 22:49:05 +00:00
|
|
|
|
|
|
|
@dataclass
|
|
|
|
class Template:
|
|
|
|
type: EventType
|
|
|
|
variables: Dict[str, JinjaTemplate]
|
2019-06-23 10:10:53 +00:00
|
|
|
content: Union[Dict[str, Any], JinjaTemplate]
|
2019-06-22 22:49:05 +00:00
|
|
|
|
|
|
|
_variable_locations: List[Tuple[Index, ...]] = None
|
|
|
|
|
|
|
|
def init(self) -> 'Template':
|
|
|
|
self._variable_locations = []
|
|
|
|
self._map_variable_locations((), self.content)
|
|
|
|
return self
|
|
|
|
|
|
|
|
def _map_variable_locations(self, path: Tuple[Index, ...], data: Any) -> None:
|
|
|
|
if isinstance(data, list):
|
|
|
|
for i, v in enumerate(data):
|
|
|
|
self._map_variable_locations((*path, i), v)
|
|
|
|
elif isinstance(data, dict):
|
|
|
|
for k, v in data.items():
|
|
|
|
if variable_regex.match(k):
|
|
|
|
self._variable_locations.append((*path, Key(k)))
|
|
|
|
self._map_variable_locations((*path, k), v)
|
|
|
|
elif isinstance(data, str):
|
|
|
|
if variable_regex.match(data):
|
|
|
|
self._variable_locations.append(path)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def _recurse(cls, content: Any, path: Tuple[Index, ...]) -> Any:
|
|
|
|
if len(path) == 0:
|
|
|
|
return content
|
|
|
|
return cls._recurse(content[path[0]], path[1:])
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def _replace_variables(tpl: str, variables: Dict[str, Any]) -> str:
|
|
|
|
for match in variable_regex.finditer(tpl):
|
|
|
|
val = variables[match.group(1)]
|
2019-06-23 09:14:15 +00:00
|
|
|
if match.start() == 0 and match.end() == len(tpl):
|
|
|
|
# Whole field is a single variable, just return the value to allow non-string types.
|
|
|
|
return val
|
2019-06-22 22:49:05 +00:00
|
|
|
tpl = tpl[:match.start()] + val + tpl[match.end():]
|
|
|
|
return tpl
|
|
|
|
|
|
|
|
def execute(self, evt: Event, rule_vars: Dict[str, JinjaTemplate], extra_vars: Dict[str, str]
|
|
|
|
) -> Dict[str, Any]:
|
|
|
|
variables = {**{name: template.render(event=evt)
|
|
|
|
for name, template in chain(self.variables.items(), rule_vars.items())},
|
|
|
|
**extra_vars}
|
2019-06-23 10:10:53 +00:00
|
|
|
if isinstance(self.content, JinjaTemplate):
|
|
|
|
raw_json = self.content.render(event=evt, **variables)
|
|
|
|
return json.loads(raw_json)
|
2019-06-22 22:49:05 +00:00
|
|
|
content = copy.deepcopy(self.content)
|
|
|
|
for path in self._variable_locations:
|
2019-06-22 23:56:44 +00:00
|
|
|
data: Dict[str, Any] = self._recurse(content, path[:-1])
|
2019-06-22 22:49:05 +00:00
|
|
|
key = path[-1]
|
|
|
|
if isinstance(key, Key):
|
|
|
|
key = str(key)
|
|
|
|
data[self._replace_variables(key, variables)] = data.pop(key)
|
|
|
|
else:
|
|
|
|
data[key] = self._replace_variables(data[key], variables)
|
|
|
|
return content
|
2019-06-21 11:49:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
@dataclass
|
|
|
|
class Rule:
|
|
|
|
rooms: Set[RoomID]
|
2019-06-23 00:08:03 +00:00
|
|
|
matches: List[RPattern]
|
|
|
|
not_matches: List[RPattern]
|
2019-06-22 22:49:05 +00:00
|
|
|
template: Template
|
|
|
|
type: Optional[EventType]
|
|
|
|
variables: Dict[str, JinjaTemplate]
|
|
|
|
|
2019-06-23 00:45:00 +00:00
|
|
|
def _check_not_match(self, body: str) -> bool:
|
|
|
|
for pattern in self.not_matches:
|
|
|
|
if pattern.search(body):
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
2019-06-22 22:49:05 +00:00
|
|
|
def match(self, evt: MessageEvent) -> Optional[Match]:
|
|
|
|
if len(self.rooms) > 0 and evt.room_id not in self.rooms:
|
|
|
|
return None
|
|
|
|
for pattern in self.matches:
|
2019-06-22 23:02:02 +00:00
|
|
|
match = pattern.search(evt.content.body)
|
2019-06-22 22:49:05 +00:00
|
|
|
if match:
|
2019-06-23 00:45:00 +00:00
|
|
|
if self._check_not_match(evt.content.body):
|
|
|
|
return None
|
2019-06-22 22:49:05 +00:00
|
|
|
return match
|
|
|
|
return None
|
2019-06-21 11:49:50 +00:00
|
|
|
|
2019-06-22 22:49:05 +00:00
|
|
|
async def execute(self, evt: MessageEvent, match: Match) -> None:
|
|
|
|
content = self.template.execute(evt=evt, rule_vars=self.variables,
|
|
|
|
extra_vars={str(i): val for i, val in
|
|
|
|
enumerate(match.groups())})
|
|
|
|
await evt.client.send_message_event(evt.room_id, self.type or self.template.type, content)
|
2019-06-21 11:49:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ReactBot(Plugin):
|
2019-06-22 22:49:05 +00:00
|
|
|
rules: Dict[str, Rule]
|
|
|
|
templates: Dict[str, Template]
|
2019-06-23 00:45:00 +00:00
|
|
|
default_flags: re.RegexFlag
|
2019-06-21 11:49:50 +00:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def get_config_class(cls) -> Type[BaseProxyConfig]:
|
|
|
|
return Config
|
|
|
|
|
|
|
|
async def start(self) -> None:
|
|
|
|
await super().start()
|
2019-06-22 22:49:05 +00:00
|
|
|
self.rules = {}
|
|
|
|
self.templates = {}
|
2019-06-21 11:49:50 +00:00
|
|
|
self.on_external_config_update()
|
|
|
|
|
2019-06-22 23:12:09 +00:00
|
|
|
@staticmethod
|
|
|
|
def _parse_variables(data: Dict[str, Any]) -> Dict[str, JinjaTemplate]:
|
|
|
|
return {name: JinjaTemplate(var_tpl) for name, var_tpl
|
|
|
|
in data.get("variables", {}).items()}
|
|
|
|
|
2019-06-23 10:10:53 +00:00
|
|
|
def _parse_content(self, content: Union[Dict[str, Any], str]
|
|
|
|
) -> Union[Dict[str, Any], JinjaTemplate]:
|
|
|
|
if not content:
|
|
|
|
return {}
|
|
|
|
elif isinstance(content, str):
|
|
|
|
return JinjaTemplate(content)
|
|
|
|
return content
|
|
|
|
|
2019-06-22 23:56:44 +00:00
|
|
|
def _make_template(self, name: str, tpl: Dict[str, Any]) -> Template:
|
|
|
|
try:
|
|
|
|
return Template(type=EventType.find(tpl.get("type", "m.room.message")),
|
|
|
|
variables=self._parse_variables(tpl),
|
2019-06-23 10:10:53 +00:00
|
|
|
content=self._parse_content(tpl.get("content", None))).init()
|
2019-06-22 23:56:44 +00:00
|
|
|
except Exception as e:
|
|
|
|
raise ConfigError(f"Failed to load {name}") from e
|
|
|
|
|
2019-06-23 10:10:53 +00:00
|
|
|
def _get_flags(self, flags: Union[str, List[str]]) -> re.RegexFlag:
|
|
|
|
if not flags:
|
|
|
|
return self.default_flags
|
|
|
|
output = re.RegexFlag(0)
|
2019-06-23 00:45:00 +00:00
|
|
|
for flag in flags:
|
|
|
|
flag = flag.lower()
|
|
|
|
if flag == "i" or flag == "ignorecase":
|
|
|
|
output |= re.IGNORECASE
|
|
|
|
elif flag == "s" or flag == "dotall":
|
|
|
|
output |= re.DOTALL
|
|
|
|
elif flag == "x" or flag == "verbose":
|
|
|
|
output |= re.VERBOSE
|
|
|
|
elif flag == "m" or flag == "multiline":
|
|
|
|
output |= re.MULTILINE
|
|
|
|
elif flag == "l" or flag == "locale":
|
|
|
|
output |= re.LOCALE
|
|
|
|
elif flag == "u" or flag == "unicode":
|
|
|
|
output |= re.UNICODE
|
|
|
|
elif flag == "a" or flag == "ascii":
|
|
|
|
output |= re.ASCII
|
|
|
|
return output
|
|
|
|
|
2019-06-23 10:10:53 +00:00
|
|
|
def _compile(self, pattern: InputPattern) -> RPattern:
|
2019-06-23 00:45:00 +00:00
|
|
|
flags = self.default_flags
|
2019-06-23 10:10:53 +00:00
|
|
|
raw = None
|
2019-06-23 00:45:00 +00:00
|
|
|
if isinstance(pattern, dict):
|
|
|
|
flags = self._get_flags(pattern.get("flags", ""))
|
|
|
|
raw = pattern.get("raw", False)
|
2019-06-23 09:03:56 +00:00
|
|
|
pattern = pattern["pattern"]
|
2019-06-23 10:10:53 +00:00
|
|
|
if raw is not False and (not flags & re.MULTILINE or raw is True):
|
2019-06-23 00:45:00 +00:00
|
|
|
ignorecase = flags == re.IGNORECASE
|
|
|
|
s_pattern = pattern.lower() if ignorecase else pattern
|
|
|
|
esc = ""
|
|
|
|
if not raw:
|
|
|
|
esc = re.escape(pattern)
|
|
|
|
first, last = pattern[0], pattern[-1]
|
|
|
|
if first == '^' and last == '$' and (raw or esc == f"\\^{pattern[1:-1]}\\$"):
|
|
|
|
s_pattern = s_pattern[1:-1]
|
|
|
|
return SimplePattern(lambda val: val == s_pattern, ignorecase=ignorecase)
|
|
|
|
elif first == '^' and (raw or esc == f"\\^{pattern[1:]}"):
|
|
|
|
s_pattern = s_pattern[1:]
|
|
|
|
return SimplePattern(lambda val: val.startswith(s_pattern), ignorecase=ignorecase)
|
|
|
|
elif last == '$' and (raw or esc == f"{pattern[:-1]}\\$"):
|
|
|
|
s_pattern = s_pattern[:-1]
|
|
|
|
return SimplePattern(lambda val: val.endswith(s_pattern), ignorecase=ignorecase)
|
|
|
|
elif raw or esc == pattern:
|
|
|
|
return SimplePattern(lambda val: s_pattern in val, ignorecase=ignorecase)
|
|
|
|
return re.compile(pattern, flags=flags)
|
2019-06-23 00:08:03 +00:00
|
|
|
|
2019-06-23 10:10:53 +00:00
|
|
|
def _compile_all(self, patterns: Union[InputPattern, List[InputPattern]]) -> List[RPattern]:
|
|
|
|
if isinstance(patterns, list):
|
|
|
|
return [self._compile(pattern) for pattern in patterns]
|
|
|
|
else:
|
|
|
|
return [self._compile(patterns)]
|
2019-06-23 00:08:03 +00:00
|
|
|
|
2019-06-22 23:56:44 +00:00
|
|
|
def _make_rule(self, name: str, rule: Dict[str, Any]) -> Rule:
|
|
|
|
try:
|
|
|
|
return Rule(rooms=set(rule.get("rooms", [])),
|
2019-06-23 00:08:03 +00:00
|
|
|
matches=self._compile_all(rule["matches"]),
|
|
|
|
not_matches=self._compile_all(rule.get("not_matches", [])),
|
2019-06-22 23:56:44 +00:00
|
|
|
type=EventType.find(rule["type"]) if "type" in rule else None,
|
|
|
|
template=self.templates[rule["template"]],
|
|
|
|
variables=self._parse_variables(rule))
|
|
|
|
except Exception as e:
|
|
|
|
raise ConfigError(f"Failed to load {name}") from e
|
2019-06-22 23:12:09 +00:00
|
|
|
|
2019-06-21 11:49:50 +00:00
|
|
|
def on_external_config_update(self) -> None:
|
|
|
|
self.config.load_and_update()
|
2019-06-22 23:56:44 +00:00
|
|
|
try:
|
2019-06-23 00:45:00 +00:00
|
|
|
self.default_flags = re.RegexFlag(0)
|
|
|
|
self.default_flags = self._get_flags(self.config["default_flags"])
|
2019-06-22 23:56:44 +00:00
|
|
|
self.templates = {name: self._make_template(name, tpl)
|
|
|
|
for name, tpl in self.config["templates"].items()}
|
|
|
|
self.rules = {name: self._make_rule(name, rule)
|
|
|
|
for name, rule in self.config["rules"].items()}
|
|
|
|
except ConfigError:
|
|
|
|
self.log.exception("Failed to load config")
|
2019-06-21 11:49:50 +00:00
|
|
|
|
|
|
|
@event.on(EventType.ROOM_MESSAGE)
|
2019-06-22 23:02:02 +00:00
|
|
|
async def event_handler(self, evt: MessageEvent) -> None:
|
|
|
|
if evt.sender == self.client.mxid:
|
|
|
|
return
|
2019-06-22 22:49:05 +00:00
|
|
|
for name, rule in self.rules.items():
|
|
|
|
match = rule.match(evt)
|
|
|
|
if match is not None:
|
|
|
|
try:
|
|
|
|
await rule.execute(evt, match)
|
|
|
|
except Exception:
|
|
|
|
self.log.exception(f"Failed to execute {name}")
|
|
|
|
return
|