blob: 01758db0a17982a2352951b6823fe93d34e45bbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
"""
This plugin broadcasts a message to all your joined rooms.
.. note:: With great power comes great responsability.
Use with moderation.
Command
-------
.. glossary::
/amsg
**Usage:** ``/amsg <message>``
Broadcast a message.
"""
from plugin import BasePlugin
from tabs import MucTab
class Plugin(BasePlugin):
def init(self):
self.api.add_command('amsg', self.command_amsg,
usage='<message>',
short='Broadcast a message',
help='Broadcast the message to all the joined rooms.')
def command_amsg(self, args):
for room in self.core.tabs:
if isinstance(room, MucTab) and room.joined:
room.command_say(args)
|