2013-04-13 20:33:06 +00:00
|
|
|
"""
|
|
|
|
This plugin allows you to ping an entity.
|
|
|
|
|
|
|
|
Command
|
|
|
|
-------
|
|
|
|
|
|
|
|
.. glossary::
|
|
|
|
|
|
|
|
/ping
|
|
|
|
**Usage (globally):** ``/ping <jid>``
|
|
|
|
|
|
|
|
**Usage (in a MUC tab):** ``/ping <jid or nick>``
|
|
|
|
|
|
|
|
**Usage (in a conversation tab):** ``/ping [jid]``
|
|
|
|
|
|
|
|
Globally, you can do ``/ping jid@example.com`` to get a ping.
|
|
|
|
|
|
|
|
In a MUC, you can either do it to a JID or a nick (``/ping nick`` or ``/ping
|
|
|
|
jid@example.com``).
|
|
|
|
|
|
|
|
In a private or a direct conversation, you can do ``/ping`` to ping
|
|
|
|
the current interlocutor.
|
|
|
|
"""
|
|
|
|
|
2016-06-27 23:10:52 +00:00
|
|
|
from poezio.decorators import command_args_parser
|
|
|
|
from poezio.plugin import BasePlugin
|
|
|
|
from poezio.roster import roster
|
|
|
|
from poezio.common import safeJID
|
|
|
|
from poezio.contact import Contact, Resource
|
2016-08-21 13:27:53 +00:00
|
|
|
from poezio.core.structs import Completion
|
2016-06-27 23:10:52 +00:00
|
|
|
from poezio import tabs
|
2013-10-06 16:03:24 +00:00
|
|
|
import time
|
2011-11-15 00:15:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Plugin(BasePlugin):
|
|
|
|
def init(self):
|
2013-03-08 21:53:35 +00:00
|
|
|
self.api.add_command('ping', self.command_ping,
|
2013-03-01 18:25:31 +00:00
|
|
|
usage='<jid>',
|
2013-10-06 16:03:24 +00:00
|
|
|
help='Send an XMPP ping to jid (see XEP-0199).',
|
2013-03-01 18:25:31 +00:00
|
|
|
short='Send a ping',
|
|
|
|
completion=self.completion_ping)
|
2013-03-08 21:53:35 +00:00
|
|
|
self.api.add_tab_command(tabs.MucTab, 'ping', self.command_muc_ping,
|
2013-03-01 18:25:31 +00:00
|
|
|
usage='<jid|nick>',
|
2013-10-06 16:03:24 +00:00
|
|
|
help='Send an XMPP ping to jid or nick (see XEP-0199).',
|
2013-03-01 18:25:31 +00:00
|
|
|
short='Send a ping.',
|
|
|
|
completion=self.completion_muc_ping)
|
2015-07-30 19:13:20 +00:00
|
|
|
self.api.add_tab_command(tabs.RosterInfoTab, 'ping', self.command_roster_ping,
|
|
|
|
usage='<jid>',
|
|
|
|
help='Send an XMPP ping to jid (see XEP-0199).',
|
|
|
|
short='Send a ping.',
|
|
|
|
completion=self.completion_ping)
|
2013-03-01 18:25:31 +00:00
|
|
|
for _class in (tabs.PrivateTab, tabs.ConversationTab):
|
2013-03-08 21:53:35 +00:00
|
|
|
self.api.add_tab_command(_class, 'ping', self.command_private_ping,
|
2013-03-01 18:25:31 +00:00
|
|
|
usage='[jid]',
|
2013-10-06 16:03:24 +00:00
|
|
|
help='Send an XMPP ping to the current interlocutor or the given JID.',
|
2013-03-01 18:25:31 +00:00
|
|
|
short='Send a ping',
|
|
|
|
completion=self.completion_ping)
|
2011-11-15 00:15:08 +00:00
|
|
|
|
2015-07-30 19:13:20 +00:00
|
|
|
@command_args_parser.raw
|
2011-11-15 00:15:08 +00:00
|
|
|
def command_ping(self, arg):
|
|
|
|
if not arg:
|
2016-03-31 22:24:58 +00:00
|
|
|
return self.core.command.help('ping')
|
2013-02-01 16:14:13 +00:00
|
|
|
jid = safeJID(arg)
|
2013-10-06 16:03:24 +00:00
|
|
|
start = time.time()
|
|
|
|
def callback(iq):
|
|
|
|
delay = time.time() - start
|
2017-05-15 21:22:56 +00:00
|
|
|
error = False
|
|
|
|
reply = ''
|
|
|
|
if iq['type'] == 'error':
|
|
|
|
error_condition = iq['error']['condition']
|
|
|
|
reply = error_condition
|
2017-07-20 09:24:48 +00:00
|
|
|
# These IQ errors are not ping errors:
|
|
|
|
# 'service-unavailable': official "not supported" response as of RFC6120 (§8.4) and XEP-0199 (§4.1)
|
|
|
|
# 'feature-not-implemented': inoffcial not-supported response from many clients
|
|
|
|
if error_condition not in ('service-unavailable', 'feature-not-implemented'):
|
2017-05-15 21:22:56 +00:00
|
|
|
error = True
|
2017-07-20 09:24:48 +00:00
|
|
|
error_text = iq['error']['text']
|
|
|
|
if error_text:
|
|
|
|
reply = '%s: %s' % (error_condition, error_text)
|
2017-05-15 21:22:56 +00:00
|
|
|
if error:
|
|
|
|
message = '%s did not respond to ping: %s' % (jid, reply)
|
2013-10-06 16:03:24 +00:00
|
|
|
else:
|
2017-05-15 21:22:56 +00:00
|
|
|
reply = ' (%s)' % reply if reply else ''
|
|
|
|
message = '%s responded to ping after %ss%s' % (jid, round(delay, 4), reply)
|
|
|
|
self.api.information(message, 'Info')
|
|
|
|
def timeout(iq):
|
|
|
|
self.api.information('%s did not respond to ping after 10s: timeout' % jid, 'Info')
|
2013-10-06 16:03:24 +00:00
|
|
|
|
2017-05-15 21:22:56 +00:00
|
|
|
self.core.xmpp.plugin['xep_0199'].send_ping(jid=jid, callback=callback, timeout=10, timeout_callback=timeout)
|
2011-11-15 00:15:08 +00:00
|
|
|
|
|
|
|
def completion_muc_ping(self, the_input):
|
2013-03-08 21:53:35 +00:00
|
|
|
users = [user.nick for user in self.api.current_tab().users]
|
2015-07-30 19:13:20 +00:00
|
|
|
l = self.resources()
|
2011-11-15 00:15:08 +00:00
|
|
|
users.extend(l)
|
2016-08-21 13:27:53 +00:00
|
|
|
return Completion(the_input.auto_completion, users, '', quotify=False)
|
2011-11-15 00:15:08 +00:00
|
|
|
|
2015-07-30 19:13:20 +00:00
|
|
|
@command_args_parser.raw
|
2011-11-15 00:15:08 +00:00
|
|
|
def command_private_ping(self, arg):
|
2013-03-01 01:05:18 +00:00
|
|
|
if arg:
|
2013-03-01 11:25:21 +00:00
|
|
|
return self.command_ping(arg)
|
2014-04-30 19:34:09 +00:00
|
|
|
self.command_ping(self.api.current_tab().name)
|
2011-11-15 00:15:08 +00:00
|
|
|
|
2015-07-30 19:13:20 +00:00
|
|
|
@command_args_parser.raw
|
2011-11-15 00:15:08 +00:00
|
|
|
def command_muc_ping(self, arg):
|
2015-07-30 19:13:20 +00:00
|
|
|
if not arg:
|
2011-11-15 00:15:08 +00:00
|
|
|
return
|
2013-03-08 21:53:35 +00:00
|
|
|
user = self.api.current_tab().get_user_by_name(arg)
|
2011-11-15 00:15:08 +00:00
|
|
|
if user:
|
2014-04-30 19:34:09 +00:00
|
|
|
jid = safeJID(self.api.current_tab().name)
|
2011-11-15 00:15:08 +00:00
|
|
|
jid.resource = user.nick
|
|
|
|
else:
|
2013-03-01 01:05:18 +00:00
|
|
|
jid = safeJID(arg)
|
2011-11-15 00:15:08 +00:00
|
|
|
self.command_ping(jid.full)
|
|
|
|
|
2015-07-30 19:13:20 +00:00
|
|
|
@command_args_parser.raw
|
|
|
|
def command_roster_ping(self, arg):
|
|
|
|
if arg:
|
|
|
|
self.command_ping(arg)
|
|
|
|
else:
|
|
|
|
current = self.api.current_tab().selected_row
|
|
|
|
if isinstance(current, Resource):
|
|
|
|
self.command_ping(current.jid)
|
|
|
|
elif isinstance(current, Contact):
|
|
|
|
res = current.get_highest_priority_resource()
|
|
|
|
if res is not None:
|
|
|
|
self.command_ping(res.jid)
|
|
|
|
|
|
|
|
def resources(self):
|
|
|
|
l = []
|
|
|
|
for contact in roster.get_contacts():
|
|
|
|
for resource in contact.resources:
|
|
|
|
l.append(resource.jid)
|
|
|
|
return l
|
|
|
|
|
2011-11-15 00:15:08 +00:00
|
|
|
def completion_ping(self, the_input):
|
2016-08-21 13:27:53 +00:00
|
|
|
return Completion(the_input.auto_completion, self.resources(), '', quotify=False)
|
2011-11-15 00:15:08 +00:00
|
|
|
|