Dennis
57499db3f5
This commit includes the matrix bot API (https://github.com/shawnanastasio/python-matrix-bot-api/) and the first proof of concept that the plugin API works. Furthermore, it includes the first version of a plugin that acquires event from an Admidio setup (https://admidio.org).
26 lines
796 B
Python
26 lines
796 B
Python
"""
|
|
Defines a matrix bot handler that uses regex to determine if message should be handled
|
|
"""
|
|
import re
|
|
|
|
from matrix_bot_api.mhandler import MHandler
|
|
|
|
|
|
class MRegexHandler(MHandler):
|
|
|
|
# regex_str - Regular expression to test message against
|
|
#
|
|
# handle_callback - Function to call if messages matches regex
|
|
def __init__(self, regex_str, handle_callback):
|
|
MHandler.__init__(self, self.test_regex, handle_callback)
|
|
self.regex_str = regex_str
|
|
|
|
def test_regex(self, room, event):
|
|
# Test the message and see if it matches the regex
|
|
if event['type'] == "m.room.message":
|
|
if re.search(self.regex_str, event['content']['body']):
|
|
# The message matches the regex, return true
|
|
return True
|
|
|
|
return False
|