2014-08-16 20:37:29 +00:00
|
|
|
#!/usr/bin/env python3
|
2013-09-20 18:50:51 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2013-06-22 21:35:00 +00:00
|
|
|
import sys
|
|
|
|
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
|
2013-06-22 21:35:00 +00:00
|
|
|
|
2014-07-17 12:19:04 +00:00
|
|
|
import slixmpp
|
2013-06-22 21:35:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Setup the command line arguments.
|
2014-08-16 20:37:29 +00:00
|
|
|
parser = ArgumentParser()
|
2013-06-22 21:35:00 +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)
|
2013-06-22 21:35:00 +00:00
|
|
|
|
|
|
|
# JID and password options.
|
2014-08-16 20:37:29 +00:00
|
|
|
parser.add_argument("--oldjid", dest="old_jid",
|
|
|
|
help="JID of the old account")
|
|
|
|
parser.add_argument("--oldpassword", dest="old_password",
|
|
|
|
help="password of the old account")
|
2013-06-22 21:35:00 +00:00
|
|
|
|
2014-08-16 20:37:29 +00:00
|
|
|
parser.add_argument("--newjid", dest="new_jid",
|
|
|
|
help="JID of the old account")
|
|
|
|
parser.add_argument("--newpassword", dest="new_password",
|
|
|
|
help="password of the old account")
|
2013-06-22 21:35:00 +00:00
|
|
|
|
|
|
|
|
2014-08-16 20:37:29 +00:00
|
|
|
args = parser.parse_args()
|
2013-06-22 21:35:00 +00:00
|
|
|
|
|
|
|
# Setup logging.
|
2014-08-16 20:37:29 +00:00
|
|
|
logging.basicConfig(level=args.loglevel,
|
2013-06-22 21:35:00 +00:00
|
|
|
format='%(levelname)-8s %(message)s')
|
|
|
|
|
2014-08-16 20:37:29 +00:00
|
|
|
if args.old_jid is None:
|
|
|
|
args.old_jid = input("Old JID: ")
|
|
|
|
if args.old_password is None:
|
|
|
|
args.old_password = getpass("Old Password: ")
|
2013-06-22 21:35:00 +00:00
|
|
|
|
2014-08-16 20:37:29 +00:00
|
|
|
if args.new_jid is None:
|
|
|
|
args.new_jid = input("New JID: ")
|
|
|
|
if args.new_password is None:
|
|
|
|
args.new_password = getpass("New Password: ")
|
2013-06-22 21:35:00 +00:00
|
|
|
|
|
|
|
|
2014-08-16 20:37:29 +00:00
|
|
|
old_xmpp = slixmpp.ClientXMPP(args.old_jid, args.old_password)
|
2013-06-22 21:35:00 +00:00
|
|
|
|
|
|
|
# If you are connecting to Facebook and wish to use the
|
|
|
|
# X-FACEBOOK-PLATFORM authentication mechanism, you will need
|
|
|
|
# your API key and an access token. Then you'll set:
|
|
|
|
# xmpp.credentials['api_key'] = 'THE_API_KEY'
|
|
|
|
# xmpp.credentials['access_token'] = 'THE_ACCESS_TOKEN'
|
|
|
|
|
|
|
|
# If you are connecting to MSN, then you will need an
|
|
|
|
# access token, and it does not matter what JID you
|
|
|
|
# specify other than that the domain is 'messenger.live.com',
|
|
|
|
# so '_@messenger.live.com' will work. You can specify
|
|
|
|
# the access token as so:
|
|
|
|
# xmpp.credentials['access_token'] = 'THE_ACCESS_TOKEN'
|
|
|
|
|
|
|
|
# If you are working with an OpenFire server, you may need
|
|
|
|
# to adjust the SSL version used:
|
|
|
|
# xmpp.ssl_version = ssl.PROTOCOL_SSLv3
|
|
|
|
|
|
|
|
# If you want to verify the SSL certificates offered by a server:
|
|
|
|
# xmpp.ca_certs = "path/to/ca/cert"
|
|
|
|
|
|
|
|
roster = []
|
|
|
|
|
|
|
|
def on_session(event):
|
|
|
|
roster.append(old_xmpp.get_roster())
|
|
|
|
old_xmpp.disconnect()
|
|
|
|
old_xmpp.add_event_handler('session_start', on_session)
|
|
|
|
|
|
|
|
if old_xmpp.connect():
|
|
|
|
old_xmpp.process(block=True)
|
|
|
|
|
|
|
|
if not roster:
|
|
|
|
print('No roster to migrate')
|
|
|
|
sys.exit()
|
|
|
|
|
2014-08-16 20:37:29 +00:00
|
|
|
new_xmpp = slixmpp.ClientXMPP(args.new_jid, args.new_password)
|
2013-06-22 21:35:00 +00:00
|
|
|
def on_session2(event):
|
|
|
|
new_xmpp.get_roster()
|
|
|
|
new_xmpp.send_presence()
|
|
|
|
|
|
|
|
logging.info(roster[0])
|
|
|
|
data = roster[0]['roster']['items']
|
|
|
|
logging.info(data)
|
|
|
|
|
|
|
|
for jid, item in data.items():
|
|
|
|
if item['subscription'] != 'none':
|
|
|
|
new_xmpp.send_presence(ptype='subscribe', pto=jid)
|
|
|
|
new_xmpp.update_roster(jid,
|
|
|
|
name = item['name'],
|
|
|
|
groups = item['groups'])
|
|
|
|
new_xmpp.disconnect()
|
|
|
|
new_xmpp.add_event_handler('session_start', on_session2)
|
|
|
|
|
|
|
|
if new_xmpp.connect():
|
|
|
|
new_xmpp.process(block=True)
|