poezio/plugins/amsg.py

36 lines
783 B
Python
Raw Normal View History

"""
This plugin broadcasts a message to all your joined rooms.
2012-02-07 00:12:21 +00:00
.. note:: With great power comes great responsibility.
Use with moderation.
Command
-------
.. glossary::
/amsg
**Usage:** ``/amsg <message>``
Broadcast a message.
"""
from poezio.plugin import BasePlugin
from poezio.tabs import MucTab
2012-02-07 00:12:21 +00:00
2018-08-15 11:13:17 +00:00
2012-02-07 00:12:21 +00:00
class Plugin(BasePlugin):
def init(self):
2018-08-15 11:13:17 +00:00
self.api.add_command(
'amsg',
self.command_amsg,
usage='<message>',
short='Broadcast a message',
help='Broadcast the message to all the joined rooms.')
2012-02-07 00:12:21 +00:00
2022-02-15 21:43:10 +00:00
async def command_amsg(self, args):
2012-02-07 00:12:21 +00:00
for room in self.core.tabs:
if isinstance(room, MucTab) and room.joined:
2022-02-15 21:43:10 +00:00
await room.command_say(args)