2014-08-16 20:37:29 +00:00
|
|
|
#!/usr/bin/env python3
|
2010-12-17 02:58:53 +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.
|
2010-12-17 02:58:53 +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
|
2010-12-17 02:58:53 +00:00
|
|
|
|
2014-07-17 12:19:04 +00:00
|
|
|
import slixmpp
|
|
|
|
from slixmpp.exceptions import IqError, IqTimeout
|
2010-12-17 02:58:53 +00:00
|
|
|
|
|
|
|
|
2014-07-17 12:19:04 +00:00
|
|
|
class Disco(slixmpp.ClientXMPP):
|
2010-12-17 02:58:53 +00:00
|
|
|
|
|
|
|
"""
|
|
|
|
A demonstration for using basic service discovery.
|
|
|
|
|
|
|
|
Send a disco#info and disco#items request to a JID/node combination,
|
|
|
|
and print out the results.
|
|
|
|
|
|
|
|
May also request only particular info categories such as just features,
|
|
|
|
or just items.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, jid, password, target_jid, target_node='', get=''):
|
2014-07-17 12:19:04 +00:00
|
|
|
slixmpp.ClientXMPP.__init__(self, jid, password)
|
2010-12-17 02:58:53 +00:00
|
|
|
|
|
|
|
# Using service discovery requires the XEP-0030 plugin.
|
|
|
|
self.register_plugin('xep_0030')
|
|
|
|
|
|
|
|
self.get = get
|
|
|
|
self.target_jid = target_jid
|
|
|
|
self.target_node = target_node
|
|
|
|
|
|
|
|
# Values to control which disco entities are reported
|
|
|
|
self.info_types = ['', 'all', 'info', 'identities', 'features']
|
|
|
|
self.identity_types = ['', 'all', 'info', 'identities']
|
|
|
|
self.feature_types = ['', 'all', 'info', 'features']
|
|
|
|
self.items_types = ['', 'all', 'items']
|
|
|
|
|
|
|
|
|
|
|
|
# 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
|
2010-12-17 02:58:53 +00:00
|
|
|
# our roster.
|
2014-08-16 20:37:29 +00:00
|
|
|
self.add_event_handler("session_start", self.start)
|
2010-12-17 02:58:53 +00:00
|
|
|
|
2018-08-19 16:47:26 +00:00
|
|
|
async def start(self, event):
|
2010-12-17 02:58:53 +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
|
2010-12-17 02:58:53 +00:00
|
|
|
presence stanza.
|
|
|
|
|
|
|
|
In this case, we send disco#info and disco#items
|
|
|
|
stanzas to the requested JID and print the results.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
event -- An empty dictionary. The session_start
|
|
|
|
event does not provide any additional
|
|
|
|
data.
|
|
|
|
"""
|
2020-05-02 14:47:04 +00:00
|
|
|
await self.get_roster()
|
2010-12-17 02:58:53 +00:00
|
|
|
self.send_presence()
|
|
|
|
|
2012-08-07 23:44:52 +00:00
|
|
|
try:
|
|
|
|
if self.get in self.info_types:
|
|
|
|
# function using the callback parameter.
|
2018-08-19 16:47:26 +00:00
|
|
|
info = await self['xep_0030'].get_info(jid=self.target_jid,
|
2015-02-28 12:29:08 +00:00
|
|
|
node=self.target_node)
|
2015-02-24 17:58:40 +00:00
|
|
|
if self.get in self.items_types:
|
2012-08-07 23:44:52 +00:00
|
|
|
# The same applies from above. Listen for the
|
|
|
|
# disco_items event or pass a callback function
|
|
|
|
# if you need to process a non-blocking request.
|
2018-08-19 16:47:26 +00:00
|
|
|
items = await self['xep_0030'].get_items(jid=self.target_jid,
|
2015-02-28 12:29:08 +00:00
|
|
|
node=self.target_node)
|
2015-02-24 17:58:40 +00:00
|
|
|
if self.get not in self.info_types and self.get not in self.items_types:
|
2012-08-07 23:44:52 +00:00
|
|
|
logging.error("Invalid disco request type.")
|
|
|
|
return
|
|
|
|
except IqError as e:
|
|
|
|
logging.error("Entity returned an error: %s" % e.iq['error']['condition'])
|
|
|
|
except IqTimeout:
|
|
|
|
logging.error("No response received.")
|
2010-12-17 02:58:53 +00:00
|
|
|
else:
|
2012-08-07 23:44:52 +00:00
|
|
|
header = 'XMPP Service Discovery: %s' % self.target_jid
|
|
|
|
print(header)
|
2010-12-17 02:58:53 +00:00
|
|
|
print('-' * len(header))
|
2012-08-07 23:44:52 +00:00
|
|
|
if self.target_node != '':
|
|
|
|
print('Node: %s' % self.target_node)
|
|
|
|
print('-' * len(header))
|
|
|
|
|
|
|
|
if self.get in self.identity_types:
|
|
|
|
print('Identities:')
|
|
|
|
for identity in info['disco_info']['identities']:
|
|
|
|
print(' - %s' % str(identity))
|
|
|
|
|
|
|
|
if self.get in self.feature_types:
|
|
|
|
print('Features:')
|
|
|
|
for feature in info['disco_info']['features']:
|
|
|
|
print(' - %s' % feature)
|
|
|
|
|
|
|
|
if self.get in self.items_types:
|
|
|
|
print('Items:')
|
|
|
|
for item in items['disco_items']['items']:
|
|
|
|
print(' - %s' % str(item))
|
|
|
|
finally:
|
|
|
|
self.disconnect()
|
2010-12-17 02:58:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
# Setup the command line arguments.
|
2014-08-16 20:37:29 +00:00
|
|
|
parser = ArgumentParser(description=Disco.__doc__)
|
|
|
|
|
|
|
|
parser.add_argument("-q","--quiet", help="set logging to ERROR",
|
|
|
|
action="store_const",
|
|
|
|
dest="loglevel",
|
|
|
|
const=logging.ERROR,
|
|
|
|
default=logging.ERROR)
|
|
|
|
parser.add_argument("-d","--debug", help="set logging to DEBUG",
|
|
|
|
action="store_const",
|
|
|
|
dest="loglevel",
|
|
|
|
const=logging.DEBUG,
|
|
|
|
default=logging.ERROR)
|
2010-12-17 02:58:53 +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")
|
|
|
|
parser.add_argument("query", choices=["all", "info", "items", "identities", "features"])
|
2015-02-24 17:58:40 +00:00
|
|
|
parser.add_argument("target_jid")
|
2014-08-16 20:37:29 +00:00
|
|
|
parser.add_argument("node", nargs='?')
|
|
|
|
|
|
|
|
args = parser.parse_args()
|
2010-12-17 02:58:53 +00:00
|
|
|
|
|
|
|
# Setup logging.
|
2014-08-16 20:37:29 +00:00
|
|
|
logging.basicConfig(level=args.loglevel,
|
2010-12-17 02:58:53 +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: ")
|
2010-12-17 02:58:53 +00:00
|
|
|
|
|
|
|
# Setup the Disco browser.
|
2014-08-16 20:37:29 +00:00
|
|
|
xmpp = Disco(args.jid, args.password, args.target_jid, args.node, args.query)
|
2010-12-17 02:58:53 +00:00
|
|
|
|
|
|
|
# Connect to the XMPP server and start processing XMPP stanzas.
|
2014-08-16 20:37:29 +00:00
|
|
|
xmpp.connect()
|
2015-08-08 14:41:26 +00:00
|
|
|
xmpp.process(forever=False)
|