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
|
2010-08-31 23:11:02 +00:00
|
|
|
import sleekxmpp
|
2010-01-10 20:14:17 +00:00
|
|
|
|
|
|
|
from config import config
|
2010-08-31 23:11:02 +00:00
|
|
|
from logger import logger
|
2011-01-09 00:09:51 +00:00
|
|
|
import common
|
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
|
2010-10-16 18:47:39 +00:00
|
|
|
jid = '%s/%s' % (config.get('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
|
2010-10-16 18:47:39 +00:00
|
|
|
jid = '%s/%s' % (config.get('server', 'anon.louiz.org'), resource)
|
2010-09-08 23:00:55 +00:00
|
|
|
password = None
|
2010-10-16 18:47:39 +00:00
|
|
|
sleekxmpp.ClientXMPP.__init__(self, jid, password, ssl=True)
|
2011-11-28 23:00:47 +00:00
|
|
|
self.core = None
|
2011-01-10 18:28:17 +00:00
|
|
|
self.auto_reconnect = False
|
2011-01-11 05:43:31 +00:00
|
|
|
self.auto_authorize = None
|
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-11-26 22:09:51 +00:00
|
|
|
self.register_plugin('xep_0048')
|
2011-06-20 01:19:37 +00:00
|
|
|
self.register_plugin('xep_0060')
|
2011-03-29 18:36:02 +00:00
|
|
|
self.register_plugin('xep_0071')
|
2011-02-24 19:02:18 +00:00
|
|
|
self.register_plugin('xep_0085')
|
2011-01-09 00:09:51 +00:00
|
|
|
if config.get('send_poezio_info', 'true') == 'true':
|
|
|
|
info = {'name':'poezio',
|
2011-11-09 00:35:27 +00:00
|
|
|
'version':'0.7.5-dev'}
|
2011-01-09 00:09:51 +00:00
|
|
|
if config.get('send_os_info', 'true') == 'true':
|
|
|
|
info['os'] = common.get_os_info()
|
|
|
|
self.register_plugin('xep_0092', pconfig=info)
|
|
|
|
if config.get('send_time', 'true') == 'true':
|
|
|
|
self.register_plugin('xep_0202')
|
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)
|
|
|
|
if custom_host:
|
2011-01-08 23:20:27 +00:00
|
|
|
res = self.connect((custom_host, custom_port), reattempt=False)
|
2011-11-15 18:39:12 +00:00
|
|
|
elif custom_port != 5222 and custom_port != -1:
|
2011-11-10 16:20:25 +00:00
|
|
|
res = self.connect((self.boundjid.host, custom_port), reattempt=False)
|
2010-10-16 18:53:13 +00:00
|
|
|
else:
|
2011-01-08 23:20:27 +00:00
|
|
|
res = self.connect(reattempt=False)
|
|
|
|
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):
|
|
|
|
def match(self, xml):
|
|
|
|
return True
|