2011-09-06 00:45:53 +00:00
|
|
|
# Copyright 2010-2011 Florent Le Coz <louiz@louiz.org>
|
2010-01-10 20:14:17 +00:00
|
|
|
#
|
|
|
|
# This file is part of Poezio.
|
|
|
|
#
|
|
|
|
# Poezio is free software: you can redistribute it and/or modify
|
2011-09-11 15:10:05 +00:00
|
|
|
# it under the terms of the zlib license. See the COPYING file.
|
2010-01-10 20:14:17 +00:00
|
|
|
|
2010-05-18 13:29:02 +00:00
|
|
|
"""
|
|
|
|
Defines the Connection class
|
|
|
|
"""
|
|
|
|
|
2010-11-29 18:36:54 +00:00
|
|
|
import logging
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
2010-03-24 16:44:55 +00:00
|
|
|
from gettext import (bindtextdomain, textdomain, bind_textdomain_codeset,
|
|
|
|
gettext as _)
|
|
|
|
|
2011-01-13 22:20:17 +00:00
|
|
|
import getpass
|
2013-01-17 16:37:06 +00:00
|
|
|
import sys
|
2010-08-31 23:11:02 +00:00
|
|
|
import sleekxmpp
|
2010-01-10 20:14:17 +00:00
|
|
|
|
2012-08-05 00:04:52 +00:00
|
|
|
from config import config, options
|
2010-08-31 23:11:02 +00:00
|
|
|
from logger import logger
|
2011-01-09 00:09:51 +00:00
|
|
|
import common
|
2012-08-08 21:59:00 +00:00
|
|
|
from common import safeJID
|
2010-01-10 20:14:17 +00:00
|
|
|
|
2010-08-31 23:11:02 +00:00
|
|
|
class Connection(sleekxmpp.ClientXMPP):
|
2010-01-10 20:14:17 +00:00
|
|
|
"""
|
2010-01-21 01:54:50 +00:00
|
|
|
Receives everything from Jabber and emits the
|
|
|
|
appropriate signals
|
2010-01-10 20:14:17 +00:00
|
|
|
"""
|
2011-03-05 20:42:56 +00:00
|
|
|
__init = False
|
2010-08-31 23:11:02 +00:00
|
|
|
def __init__(self):
|
2010-10-16 18:47:39 +00:00
|
|
|
resource = config.get('resource', '')
|
2010-09-08 23:00:55 +00:00
|
|
|
if config.get('jid', ''):
|
2011-03-05 20:42:56 +00:00
|
|
|
self.anon = False # Field used to know if we are anonymous or not.
|
2010-09-08 23:00:55 +00:00
|
|
|
# many features will be handled diferently
|
|
|
|
# depending on this setting
|
2012-08-01 18:10:00 +00:00
|
|
|
jid = '%s' % config.get('jid', '')
|
|
|
|
if resource:
|
2012-08-02 14:32:59 +00:00
|
|
|
jid = '%s/%s'% (jid, resource)
|
2011-01-13 22:20:17 +00:00
|
|
|
password = config.get('password', '') or getpass.getpass()
|
2010-10-16 18:47:39 +00:00
|
|
|
else: # anonymous auth
|
2010-09-08 23:00:55 +00:00
|
|
|
self.anon = True
|
2012-08-08 21:59:00 +00:00
|
|
|
jid = config.get('server', 'anon.louiz.org')
|
|
|
|
if resource:
|
|
|
|
jid = '%s/%s' % (jid, resource)
|
2010-09-08 23:00:55 +00:00
|
|
|
password = None
|
2012-08-08 21:59:00 +00:00
|
|
|
jid = safeJID(jid)
|
2012-12-31 13:00:09 +00:00
|
|
|
# TODO: use the system language
|
|
|
|
sleekxmpp.ClientXMPP.__init__(self, jid, password, lang=config.get('lang', 'en'))
|
2011-11-28 23:00:47 +00:00
|
|
|
self.core = None
|
2012-01-26 16:21:13 +00:00
|
|
|
self.auto_reconnect = True if config.get('auto_reconnect', 'false').lower() in ('true', '1') else False
|
2012-07-13 00:20:55 +00:00
|
|
|
self.reconnect_max_attempts = 0
|
2011-01-11 05:43:31 +00:00
|
|
|
self.auto_authorize = None
|
2012-03-08 23:48:49 +00:00
|
|
|
self.ca_certs = config.get('ca_cert_path', '') or None
|
2012-03-13 17:46:02 +00:00
|
|
|
interval = config.get('whitespace_interval', '300')
|
|
|
|
if interval.isnumeric():
|
|
|
|
self.whitespace_keepalive_interval = int(interval)
|
|
|
|
else:
|
|
|
|
self.whitespace_keepalive_interval = 300
|
2013-01-17 16:37:06 +00:00
|
|
|
# Hack to check the sleekxmpp version
|
|
|
|
# TODO: Remove that when a sufficient time has passed since the move
|
|
|
|
try:
|
|
|
|
self.register_plugin('xep_0071')
|
|
|
|
wrong_version = True
|
|
|
|
except:
|
|
|
|
wrong_version = False
|
|
|
|
finally:
|
|
|
|
if wrong_version:
|
|
|
|
print("You are using the wrong sleekxmpp version. Please run "
|
|
|
|
"update.sh again or install the corresponding "
|
|
|
|
"sleekxmpp package.")
|
|
|
|
sys.exit()
|
|
|
|
|
2012-08-02 14:24:10 +00:00
|
|
|
self.register_plugin('xep_0012')
|
2011-01-09 00:09:51 +00:00
|
|
|
self.register_plugin('xep_0030')
|
2011-01-21 03:46:21 +00:00
|
|
|
self.register_plugin('xep_0004')
|
2011-03-29 18:36:02 +00:00
|
|
|
self.register_plugin('xep_0045')
|
2011-06-20 01:19:37 +00:00
|
|
|
self.register_plugin('xep_0060')
|
2012-03-13 20:39:06 +00:00
|
|
|
self.register_plugin('xep_0048')
|
2011-02-24 19:02:18 +00:00
|
|
|
self.register_plugin('xep_0085')
|
2012-08-01 23:09:10 +00:00
|
|
|
self.register_plugin('xep_0191')
|
2011-01-09 00:09:51 +00:00
|
|
|
if config.get('send_poezio_info', 'true') == 'true':
|
|
|
|
info = {'name':'poezio',
|
2012-08-05 00:04:52 +00:00
|
|
|
'version': options.version}
|
2011-01-09 00:09:51 +00:00
|
|
|
if config.get('send_os_info', 'true') == 'true':
|
|
|
|
info['os'] = common.get_os_info()
|
2012-05-04 16:52:36 +00:00
|
|
|
self.plugin['xep_0030'].set_identities(identities=set([('client', 'pc', None,'Poezio')]))
|
2012-04-18 21:07:28 +00:00
|
|
|
else:
|
|
|
|
info = {'name': '', 'version': ''}
|
2012-05-04 16:52:36 +00:00
|
|
|
self.plugin['xep_0030'].set_identities(identities=set([('client', 'pc', None,'')]))
|
2012-04-18 21:07:28 +00:00
|
|
|
self.register_plugin('xep_0092', pconfig=info)
|
2011-01-09 00:09:51 +00:00
|
|
|
if config.get('send_time', 'true') == 'true':
|
|
|
|
self.register_plugin('xep_0202')
|
2012-01-27 18:13:04 +00:00
|
|
|
self.register_plugin('xep_0224')
|
2012-10-12 15:28:41 +00:00
|
|
|
self.register_plugin('xep_0308')
|
2011-01-08 23:20:27 +00:00
|
|
|
|
2010-08-31 23:11:02 +00:00
|
|
|
def start(self):
|
|
|
|
# TODO, try multiple servers
|
2010-11-29 18:36:54 +00:00
|
|
|
# With anon auth.
|
2010-11-08 01:33:36 +00:00
|
|
|
# (domain, config.get('port', 5222))
|
|
|
|
custom_host = config.get('custom_host', '')
|
2011-11-10 16:20:25 +00:00
|
|
|
custom_port = config.get('custom_port', 5222)
|
2012-06-01 20:46:21 +00:00
|
|
|
if custom_port == -1:
|
|
|
|
custom_port = 5222
|
2011-11-10 16:20:25 +00:00
|
|
|
if custom_host:
|
2012-07-13 00:20:55 +00:00
|
|
|
res = self.connect((custom_host, custom_port), reattempt=True)
|
2011-11-15 18:39:12 +00:00
|
|
|
elif custom_port != 5222 and custom_port != -1:
|
2012-07-13 00:20:55 +00:00
|
|
|
res = self.connect((self.boundjid.host, custom_port), reattempt=True)
|
2010-10-16 18:53:13 +00:00
|
|
|
else:
|
2012-07-13 00:20:55 +00:00
|
|
|
res = self.connect(reattempt=True)
|
2011-01-08 23:20:27 +00:00
|
|
|
if not res:
|
|
|
|
return False
|
2010-11-08 01:33:36 +00:00
|
|
|
self.process(threaded=True)
|
2011-01-08 23:20:27 +00:00
|
|
|
return True
|
2011-11-28 23:00:47 +00:00
|
|
|
|
|
|
|
def send_raw(self, data, now=False, reconnect=None):
|
|
|
|
"""
|
|
|
|
Overrides XMLStream.send_raw, with an event added
|
|
|
|
"""
|
|
|
|
if self.core:
|
|
|
|
self.core.outgoing_stanza(data)
|
|
|
|
sleekxmpp.ClientXMPP.send_raw(self, data, now, reconnect)
|
|
|
|
|
|
|
|
class MatchAll(sleekxmpp.xmlstream.matcher.base.MatcherBase):
|
2012-05-21 00:14:25 +00:00
|
|
|
"""
|
|
|
|
Callback to retrieve all the stanzas for the XML tab
|
|
|
|
"""
|
2011-11-28 23:00:47 +00:00
|
|
|
def match(self, xml):
|
|
|
|
return True
|