2014-08-16 20:37:29 +00:00
|
|
|
#!/usr/bin/env python3
|
2011-02-10 21:45:35 +00:00
|
|
|
|
2021-02-05 19:51:15 +00:00
|
|
|
# Slixmpp: The Slick XMPP Library
|
|
|
|
# Copyright (C) 2010 Nathanael C. Fritz
|
|
|
|
# This file is part of Slixmpp.
|
|
|
|
# See the file LICENSE for copying permission.
|
2011-02-10 21:45:35 +00:00
|
|
|
|
|
|
|
import logging
|
2014-08-16 20:37:29 +00:00
|
|
|
from getpass import getpass
|
2014-08-16 20:37:29 +00:00
|
|
|
from argparse import ArgumentParser
|
2015-02-24 17:58:40 +00:00
|
|
|
from slixmpp.exceptions import IqError, IqTimeout
|
2011-02-10 21:45:35 +00:00
|
|
|
|
2014-07-17 12:19:04 +00:00
|
|
|
import slixmpp
|
2011-02-10 21:45:35 +00:00
|
|
|
|
|
|
|
|
2014-07-17 12:19:04 +00:00
|
|
|
class PingTest(slixmpp.ClientXMPP):
|
2011-02-10 21:45:35 +00:00
|
|
|
|
|
|
|
"""
|
2014-07-17 12:19:04 +00:00
|
|
|
A simple Slixmpp bot that will send a ping request
|
2011-02-11 05:30:45 +00:00
|
|
|
to a given JID.
|
2011-02-10 21:45:35 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, jid, password, pingjid):
|
2014-07-17 12:19:04 +00:00
|
|
|
slixmpp.ClientXMPP.__init__(self, jid, password)
|
2011-02-10 21:45:35 +00:00
|
|
|
if pingjid is None:
|
2014-01-21 12:19:27 +00:00
|
|
|
pingjid = self.boundjid.bare
|
2011-02-11 05:30:45 +00:00
|
|
|
self.pingjid = pingjid
|
2011-02-10 21:45:35 +00:00
|
|
|
|
|
|
|
# The session_start event will be triggered when
|
|
|
|
# the bot establishes its connection with the server
|
|
|
|
# and the XML streams are ready for use. We want to
|
2012-01-02 20:59:39 +00:00
|
|
|
# listen for this event so that we we can initialize
|
2011-02-10 21:45:35 +00:00
|
|
|
# our roster.
|
2014-08-16 20:37:29 +00:00
|
|
|
self.add_event_handler("session_start", self.start)
|
2011-02-10 21:45:35 +00:00
|
|
|
|
2018-08-19 16:47:26 +00:00
|
|
|
async def start(self, event):
|
2011-02-10 21:45:35 +00:00
|
|
|
"""
|
|
|
|
Process the session_start event.
|
|
|
|
|
|
|
|
Typical actions for the session_start event are
|
2012-01-02 20:59:39 +00:00
|
|
|
requesting the roster and broadcasting an initial
|
2011-02-10 21:45:35 +00:00
|
|
|
presence stanza.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
event -- An empty dictionary. The session_start
|
|
|
|
event does not provide any additional
|
|
|
|
data.
|
|
|
|
"""
|
2011-03-24 02:59:21 +00:00
|
|
|
self.send_presence()
|
2020-05-02 14:47:04 +00:00
|
|
|
await self.get_roster()
|
2013-01-21 04:14:16 +00:00
|
|
|
|
|
|
|
try:
|
2018-08-19 16:47:26 +00:00
|
|
|
rtt = await self['xep_0199'].ping(self.pingjid,
|
2015-02-24 17:58:40 +00:00
|
|
|
timeout=10)
|
2013-01-21 04:14:16 +00:00
|
|
|
logging.info("Success! RTT: %s", rtt)
|
|
|
|
except IqError as e:
|
|
|
|
logging.info("Error pinging %s: %s",
|
|
|
|
self.pingjid,
|
|
|
|
e.iq['error']['condition'])
|
|
|
|
except IqTimeout:
|
|
|
|
logging.info("No response from %s", self.pingjid)
|
|
|
|
finally:
|
2011-02-10 21:45:35 +00:00
|
|
|
self.disconnect()
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
# Setup the command line arguments.
|
2014-08-16 20:37:29 +00:00
|
|
|
parser = ArgumentParser()
|
2011-02-10 21:45:35 +00:00
|
|
|
|
|
|
|
# Output verbosity options.
|
2014-08-16 20:37:29 +00:00
|
|
|
parser.add_argument("-q", "--quiet", help="set logging to ERROR",
|
|
|
|
action="store_const", dest="loglevel",
|
|
|
|
const=logging.ERROR, default=logging.INFO)
|
|
|
|
parser.add_argument("-d", "--debug", help="set logging to DEBUG",
|
|
|
|
action="store_const", dest="loglevel",
|
|
|
|
const=logging.DEBUG, default=logging.INFO)
|
|
|
|
parser.add_argument("-t", "--pingto", help="set jid to ping",
|
2015-02-24 17:58:40 +00:00
|
|
|
dest="pingjid", default=None)
|
2011-02-10 21:45:35 +00:00
|
|
|
|
|
|
|
# JID and password options.
|
2014-08-16 20:37:29 +00:00
|
|
|
parser.add_argument("-j", "--jid", dest="jid",
|
|
|
|
help="JID to use")
|
|
|
|
parser.add_argument("-p", "--password", dest="password",
|
|
|
|
help="password to use")
|
2011-02-10 21:45:35 +00:00
|
|
|
|
2014-08-16 20:37:29 +00:00
|
|
|
args = parser.parse_args()
|
2011-02-10 21:45:35 +00:00
|
|
|
|
|
|
|
# Setup logging.
|
2014-08-16 20:37:29 +00:00
|
|
|
logging.basicConfig(level=args.loglevel,
|
2011-02-10 21:45:35 +00:00
|
|
|
format='%(levelname)-8s %(message)s')
|
|
|
|
|
2014-08-16 20:37:29 +00:00
|
|
|
if args.jid is None:
|
|
|
|
args.jid = input("Username: ")
|
|
|
|
if args.password is None:
|
|
|
|
args.password = getpass("Password: ")
|
2011-02-10 21:45:35 +00:00
|
|
|
|
|
|
|
# Setup the PingTest and register plugins. Note that while plugins may
|
|
|
|
# have interdependencies, the order in which you register them does
|
|
|
|
# not matter.
|
2014-08-16 20:37:29 +00:00
|
|
|
xmpp = PingTest(args.jid, args.password, args.pingjid)
|
2011-02-11 05:30:45 +00:00
|
|
|
xmpp.register_plugin('xep_0030') # Service Discovery
|
|
|
|
xmpp.register_plugin('xep_0004') # Data Forms
|
|
|
|
xmpp.register_plugin('xep_0060') # PubSub
|
|
|
|
xmpp.register_plugin('xep_0199') # XMPP Ping
|
2011-02-10 21:45:35 +00:00
|
|
|
|
|
|
|
# Connect to the XMPP server and start processing XMPP stanzas.
|
2014-08-16 20:37:29 +00:00
|
|
|
xmpp.connect()
|
2020-05-02 15:34:11 +00:00
|
|
|
xmpp.process(forever=False)
|