Add !alias commnd to user-alias modules

This commit is contained in:
gammafn 2021-03-30 11:50:04 -05:00
parent 874b24e081
commit 6ce7e36b18
2 changed files with 63 additions and 0 deletions

View File

@ -46,6 +46,14 @@ Bot management commands.
Prints help on existing modules. Prints help on existing modules.
### Alias
Add or remove aliases for a module.
* !alias add osm loc
* !alias list
* !alias remove osm
### Echo ### Echo
Simple example module that just echoes what user said. Simple example module that just echoes what user said.

55
modules/alias.py Normal file
View File

@ -0,0 +1,55 @@
from modules.common.module import BotModule
import random
class MatrixModule(BotModule):
def __init__(self, name):
super().__init__(name)
self.aliases = dict()
def set_settings(self, data):
super().set_settings(data)
if data.get('aliases'):
self.aliases = data['aliases']
def get_settings(self):
data = super().get_settings()
data['aliases'] = self.aliases
return data
def matrix_start(self, bot):
super().matrix_start(bot)
bot.module_aliases.update(self.aliases)
async def matrix_message(self, bot, room, event):
args = event.body.split()
args.pop(0)
if len(args) == 3:
if args.pop(0) == 'add':
bot.must_be_owner(event)
self.logger.debug(f"room: {room.name} sender: {event.sender} wants to add an alias")
bot.module_aliases.update({args[0]: args[1]})
self.aliases.update({args[0]: args[1]})
bot.save_settings()
await bot.send_text(room, f'Aliased !{args[0]} to !{args[1]}')
elif len(args) == 2:
if args.pop(0) in ['rm', 'remove']:
bot.must_be_owner(event)
self.logger.debug(f"room: {room.name} sender: {event.sender} wants to remove an alias")
old = bot.module_aliases.pop(args[0])
self.aliases.pop(args[0])
bot.save_settings()
await bot.send_text(room, f'Removed alias !{args[0]}')
elif len(args) == 1:
if args.pop(0) in ['ls', 'list']:
self.logger.debug(f"room: {room.name} sender: {event.sender} wants to list aliases")
msg = '\n'.join([ f'- {key} => {val}' for key, val in bot.module_aliases.items() ])
await bot.send_text(room, 'Aliases:\n' + msg)
def help(self):
return 'Alias a command'