2014-08-16 20:37:29 +00:00
|
|
|
#!/usr/bin/env python3
|
2011-08-18 07:08:52 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
2014-07-17 12:19:04 +00:00
|
|
|
Slixmpp: The Slick XMPP Library
|
2011-08-18 07:08:52 +00:00
|
|
|
Copyright (C) 2011 Nathanael C. Fritz
|
2014-07-17 12:19:04 +00:00
|
|
|
This file is part of Slixmpp.
|
2011-08-18 07:08:52 +00:00
|
|
|
|
|
|
|
See the file LICENSE for copying permission.
|
|
|
|
"""
|
|
|
|
|
|
|
|
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
|
2011-08-18 07:08:52 +00:00
|
|
|
|
2014-07-17 12:19:04 +00:00
|
|
|
import slixmpp
|
|
|
|
from slixmpp.exceptions import IqError, IqTimeout
|
2015-02-24 17:58:40 +00:00
|
|
|
from slixmpp.xmlstream.asyncio import asyncio
|
2011-08-18 07:08:52 +00:00
|
|
|
|
|
|
|
|
2014-07-17 12:19:04 +00:00
|
|
|
class RosterBrowser(slixmpp.ClientXMPP):
|
2011-08-18 07:08:52 +00:00
|
|
|
|
|
|
|
"""
|
|
|
|
A basic script for dumping a client's roster to
|
|
|
|
the command line.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, jid, password):
|
2014-07-17 12:19:04 +00:00
|
|
|
slixmpp.ClientXMPP.__init__(self, jid, password)
|
2011-08-18 07:08:52 +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
|
2014-08-16 20:37:29 +00:00
|
|
|
# our roster.
|
|
|
|
self.add_event_handler("session_start", self.start)
|
2011-08-18 07:08:52 +00:00
|
|
|
self.add_event_handler("changed_status", self.wait_for_presences)
|
|
|
|
|
|
|
|
self.received = set()
|
2015-02-24 17:58:40 +00:00
|
|
|
self.presences_received = asyncio.Event()
|
2011-08-18 07:08:52 +00:00
|
|
|
|
2018-08-19 16:47:26 +00:00
|
|
|
async def start(self, event):
|
2011-08-18 07:08:52 +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-08-18 07:08:52 +00:00
|
|
|
presence stanza.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
event -- An empty dictionary. The session_start
|
|
|
|
event does not provide any additional
|
|
|
|
data.
|
|
|
|
"""
|
2015-02-24 17:58:40 +00:00
|
|
|
future = asyncio.Future()
|
|
|
|
def callback(result):
|
|
|
|
future.set_result(None)
|
2011-08-18 07:08:52 +00:00
|
|
|
try:
|
2015-02-24 17:58:40 +00:00
|
|
|
self.get_roster(callback=callback)
|
2018-08-19 16:47:26 +00:00
|
|
|
await future
|
2011-08-18 07:08:52 +00:00
|
|
|
except IqError as err:
|
2014-08-17 22:52:24 +00:00
|
|
|
print('Error: %s' % err.iq['error']['condition'])
|
2011-08-18 07:08:52 +00:00
|
|
|
except IqTimeout:
|
|
|
|
print('Error: Request timed out')
|
|
|
|
self.send_presence()
|
|
|
|
|
|
|
|
|
|
|
|
print('Waiting for presence updates...\n')
|
2018-08-19 16:47:26 +00:00
|
|
|
await asyncio.sleep(10)
|
2011-08-18 07:08:52 +00:00
|
|
|
|
|
|
|
print('Roster for %s' % self.boundjid.bare)
|
|
|
|
groups = self.client_roster.groups()
|
|
|
|
for group in groups:
|
|
|
|
print('\n%s' % group)
|
|
|
|
print('-' * 72)
|
|
|
|
for jid in groups[group]:
|
|
|
|
sub = self.client_roster[jid]['subscription']
|
|
|
|
name = self.client_roster[jid]['name']
|
|
|
|
if self.client_roster[jid]['name']:
|
|
|
|
print(' %s (%s) [%s]' % (name, jid, sub))
|
|
|
|
else:
|
|
|
|
print(' %s [%s]' % (jid, sub))
|
|
|
|
|
|
|
|
connections = self.client_roster.presence(jid)
|
|
|
|
for res, pres in connections.items():
|
|
|
|
show = 'available'
|
|
|
|
if pres['show']:
|
|
|
|
show = pres['show']
|
|
|
|
print(' - %s (%s)' % (res, show))
|
|
|
|
if pres['status']:
|
|
|
|
print(' %s' % pres['status'])
|
|
|
|
|
|
|
|
self.disconnect()
|
|
|
|
|
|
|
|
def wait_for_presences(self, pres):
|
|
|
|
"""
|
|
|
|
Track how many roster entries have received presence updates.
|
|
|
|
"""
|
|
|
|
self.received.add(pres['from'].bare)
|
|
|
|
if len(self.received) >= len(self.client_roster.keys()):
|
|
|
|
self.presences_received.set()
|
|
|
|
else:
|
|
|
|
self.presences_received.clear()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
# Setup the command line arguments.
|
2014-08-16 20:37:29 +00:00
|
|
|
parser = ArgumentParser()
|
|
|
|
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)
|
2011-08-18 07:08:52 +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")
|
|
|
|
|
|
|
|
args = parser.parse_args()
|
2011-08-18 07:08:52 +00:00
|
|
|
|
|
|
|
# Setup logging.
|
2014-08-16 20:37:29 +00:00
|
|
|
logging.basicConfig(level=args.loglevel,
|
2011-08-18 07:08:52 +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-08-18 07:08:52 +00:00
|
|
|
|
2014-08-16 20:37:29 +00:00
|
|
|
xmpp = RosterBrowser(args.jid, args.password)
|
2011-08-18 07:08:52 +00:00
|
|
|
|
|
|
|
# Connect to the XMPP server and start processing XMPP stanzas.
|
2014-08-16 20:37:29 +00:00
|
|
|
xmpp.connect()
|
|
|
|
xmpp.process()
|