]> kaliko git repositories - sid.git/blob - sid/sid.py
Use __url__ in help message
[sid.git] / sid / sid.py
1 # -*- coding: utf-8 -*-
2
3 # Copyright (C) 2007-2012 Thomas Perl <thp.io/about>
4 # Copyright (C) 2010, 2011 AnaĆ«l Verrier <elghinn@free.fr>
5 # Copyright (C) 2014, 2015, 2020 kaliko <kaliko@azylum.org>
6
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, version 3 only.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
19
20 import inspect
21 import logging
22 import traceback
23
24 import slixmpp
25
26 from sid import __url__
27
28
29 def botcmd(*args, **kwargs):
30     """Decorator for bot command functions
31
32     :param bool hidden: is the command hidden in global help
33     :param str name: command name, default to decorated function name
34     """
35
36     def decorate(func, hidden=False, name=None):
37         setattr(func, '_bot_command', True)
38         setattr(func, '_bot_command_hidden', hidden)
39         setattr(func, '_bot_command_name', name or func.__name__)
40         if func.__doc__ is None:
41             func.__doc__ = ''
42         return func
43
44     if len(args):
45         return decorate(args[0], **kwargs)
46     else:
47         return lambda func: decorate(func, **kwargs)
48
49
50 class MUCBot(slixmpp.ClientXMPP):
51     """
52     :param str jid: jid to log with
53     :param str password: jid password
54     :param str room: conference room to join
55     :param str nick: Nickname to use in the room
56     """
57
58     #: Class attribute to define bot's command prefix
59     #:
60     #: Defaults to "!"
61     prefix = '!'
62
63     def __init__(self, jid, password, room, nick, log_file=None,
64                  log_level=logging.INFO):
65         super(MUCBot, self).__init__(jid, password)
66
67         # Clean sphinx autodoc for self documentation
68         # (cf. MUCBot.help)
69         self.__doc__ = None
70         self.log = logging.getLogger(__package__)
71         self.plugins = list()
72         self.commands = dict()
73         self.room = room
74         self.nick = nick
75         self.__set_logger(log_file, log_level)
76         self.__seen = dict()
77         self.register_plugin('xep_0030')  # Service Discovery
78         self.register_plugin('xep_0045')  # Multi-User Chat
79         self.register_plugin('xep_0071')  # xhtml-im
80         self.register_plugin('xep_0199')  # self Ping
81
82         # The session_start event will be triggered when
83         # the bot establishes its connection with the server
84         # and the XML streams are ready for use. We want to
85         # listen for this event so that we we can initialize
86         # our roster.
87         self.add_event_handler('session_start', self.start)
88
89         # Handles MUC message and dispatch
90         self.add_event_handler('message', self.message)
91         self.add_event_handler('got_online', self._view)
92
93         # Discover bot internal command (ie. help)
94         for name, value in inspect.getmembers(self):
95             if inspect.ismethod(value) and getattr(value, '_bot_command', False):
96                 name = getattr(value, '_bot_command_name')
97                 self.log.debug('Registered command: %s', name)
98                 self.commands[name] = value
99
100     def __set_logger(self, log_file=None, log_level=logging.INFO):
101         """Create console/file handler"""
102         log_fd = open(log_file, 'w') if log_file else None
103         chandler = logging.StreamHandler(log_fd)
104         formatter = logging.Formatter(
105             '%(asctime)s - %(name)s - %(levelname)s - %(message)s'
106             )
107         chandler.setFormatter(formatter)
108         self.log.addHandler(chandler)
109         self.log.setLevel(log_level)
110         self.log.debug('set logger, log level : %s', log_level)
111
112     def message(self, msg):
113         """Messages handler
114
115         Parses message received to detect :py:obj:`prefix`
116         """
117         if msg['type'] not in ('groupchat', 'chat'):
118             self.log.warning('Unhandled message')
119             return
120         if msg['mucnick'] == self.nick:
121             return
122         body = msg['body'].strip()
123         if not body.startswith(MUCBot.prefix):
124             return
125         if msg['from'] not in self.__seen:
126             self.log.warning('Will not handle message from unseen jid: %s', msg['from'])
127             #return
128         args = body[1:].split()
129         cmd = args.pop(0)
130         if cmd not in self.commands:
131             return
132         self.log.debug('cmd: %s', cmd)
133         if args:
134             self.log.debug('arg: %s', args)
135         try:
136             self.commands[cmd](msg, args)
137         except Exception as err:
138             reply = ''.join(traceback.format_exc())
139             self.log.exception('An error occurred processing: %s: %s', body, reply)
140             if self.log.level < 10 and reply:
141                 self.send_message(mto=msg['from'].bare, mbody=reply, mtype='groupchat')
142
143     def _view(self, pres):
144         """Track known nick"""
145         nick = pres['from']
146         status = (pres['type'], pres['status'])
147         self.__seen.update({nick: status})
148
149     def start(self, event):
150         """
151         Process the session_start event.
152
153         Typical actions for the session_start event are
154         requesting the roster and broadcasting an initial
155         presence stanza.
156
157         :param dict event: An empty dictionary. The session_start
158                      event does not provide any additional data.
159         """
160         self.get_roster()
161         self.send_presence()
162         self.plugin['xep_0045'].join_muc(self.room,
163                                         self.nick,
164                                         # If a room password is needed, use:
165                                         # password=the_room_password,
166                                         wait=True)
167
168         :param `sid.plugin.Plugin` plugin_cls: A :py:obj:`sid.plugin.Plugin` class
169         """
170         self.plugins.append(plugin_cls(self))
171         for name, value in inspect.getmembers(self.plugins[-1]):
172             if inspect.ismethod(value) and getattr(value, '_bot_command',
173                                                    False):
174                 name = getattr(value, '_bot_command_name')
175                 self.log.debug('Registered command: %s', name)
176                 self.commands[name] = value
177
178     def foreach_plugin(self, method, *args, **kwds):
179         for plugin in self.plugins:
180             self.log.debug('shuting down %s', plugin.__str__)
181             getattr(plugin, method)(*args, **kwds)
182
183     def shutdown_plugins(self):
184         # TODO: why can't use event session_end|disconnected?
185         self.log.info('shuting down')
186         for plugin in self.plugins:
187             self.log.debug('shuting down %s', plugin)
188             getattr(plugin, 'shutdown')()
189
190     @botcmd
191     def help(self, message, args):
192         """Returns a help string listing available options.
193
194         Automatically assigned to the "help" command."""
195         help_cmd = ('Type {}help <command name>'.format(self.prefix) +
196                     ' to get more info about that specific command.\n\n' +
197                     f'SRC: {__url__}')
198         if not args:
199             if self.__doc__:
200                 description = self.__doc__.strip()
201             else:
202                 description = 'Available commands:'
203
204             cmd_list = list()
205             for name, cmd in self.commands.items():
206                 if name == 'help' or cmd._bot_command_hidden:
207                     continue
208                 doc = (cmd.__doc__.strip() or 'undocumented').split('\n', 1)[0]
209                 cmd_list.append('{0}: {1}'.format(name, doc))
210
211             usage = '\n'.join(cmd_list)
212             usage = usage + '\n\n' + help_cmd
213             text = '{}\n\n{}'.format(description, usage)
214         else:
215             if args[0] in self.commands.keys():
216                 text = self.commands[args[0]].__doc__ or 'undocumented'
217                 text = inspect.cleandoc(text)
218             else:
219                 text = 'That command is not defined.'
220         if message['type'] == 'groupchat':
221             to = message['from'].bare
222         else:
223             to = message['from']
224         self.send_message(mto=to, mbody=text, mtype=message['type'])